/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #b8b8b8;
}

/* ===================================
   GLOW TEXT
   =================================== */
.glow-text {
    position: relative;
    display: inline-block;
    color: var(--glow-base-color, #ffffff);
    text-shadow: 0 0 14px var(--glow-shadow-color, rgba(255, 255, 255, 0.35));
    isolation: isolate;
    z-index: 1;
}

.glow-text--block {
    display: block;
}

.glow-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--glow-bloom-color, rgba(255, 255, 255, 0.7));
    filter: blur(18px);
    opacity: 0.9;
    z-index: -1;
    text-shadow: 0 0 35px var(--glow-bloom-color, rgba(255, 255, 255, 0.7)),
        0 0 70px var(--glow-bloom-color, rgba(255, 255, 255, 0.7));
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.glow-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, var(--glow-shimmer-color, rgba(255, 255, 255, 0.65)) 45%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    background-size: 220% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: glowShimmer 8s ease-in-out infinite;
    opacity: 0.7;
    z-index: 2;
    pointer-events: none;
}

.glow-text--gold {
    --glow-base-color: #f0c850;
    --glow-bloom-color: rgba(212, 175, 55, 0.9);
    --glow-shadow-color: rgba(212, 175, 55, 0.55);
    --glow-shimmer-color: rgba(255, 233, 170, 0.9);
}

.glow-text--white {
    --glow-base-color: #f7f4ef;
    --glow-bloom-color: rgba(255, 255, 255, 0.65);
    --glow-shadow-color: rgba(255, 255, 255, 0.35);
    --glow-shimmer-color: rgba(255, 255, 255, 0.75);
}

@keyframes glowShimmer {
    0% { background-position: -220% 0; }
    50% { background-position: 0% 0; }
    100% { background-position: 220% 0; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .glow-text::before,
    .glow-text::after {
        animation: none;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    color: #0a0a0a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4af37, #f0c850);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #0a0a0a;
}

.call-cta {
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    animation: callShake 6s ease-in-out infinite;
}

.call-cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: translateX(-120%);
    animation: callShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.7;
}

.call-cta:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

@keyframes callShimmer {
    0% { transform: translateX(-120%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(120%); }
}

@keyframes callShake {
    0%, 78%, 100% { transform: translateY(0); }
    80% { transform: translateY(-1px); }
    82% { transform: translateY(1px); }
    84% { transform: translateY(-1px); }
    86% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .call-cta {
        animation: none;
    }

    .call-cta::after {
        animation: none;
    }
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   GLASS CARD
   =================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #b8b8b8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #b8941f, #d4af37);
    border-radius: 50px;
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: linear-gradient(135deg, #d4af37, #f0c850);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #d4af37;
}

.nav-call-mobile {
    display: none;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle-mobile {
    display: none;
}

.lang-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d4af37 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #b8941f 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation: float 25s ease-in-out infinite reverse;
}

.gradient-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #d4af37 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-10px, 10px); }
    75% { transform: translate(10px, 20px); }
}

.film-grain {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    z-index: 3;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 3;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 720px;
}

.hero-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #d4af37;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-main {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
}

.hero-title-sub {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #d4af37;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: #b8b8b8;
    max-width: 500px;
    margin: 0 auto;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.hero-company {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #b8b8b8;
    justify-content: center;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
}

.hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 16px;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #808080;
}

.scroll-icon {
    width: 24px;
    height: 36px;
    border: 2px solid #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-icon i {
    color: #d4af37;
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2.5rem;
    text-align: center;
}

.about-card-glow {
    position: relative;
    z-index: 0;
}

.about-card-glow::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 22px;
    background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.15) 45%, transparent 70%);
    filter: blur(18px);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

.about-portrait-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-portrait {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.2);
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-portrait-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.about-portrait-details p {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
}

.about-portrait-note {
    font-size: 0.9375rem;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 50%;
    font-size: 2rem;
    color: #d4af37;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-card p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.about-card ul {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.about-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #b8b8b8;
}

.about-card li i {
    color: #d4af37;
    font-size: 0.875rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 50%;
    font-size: 1.75rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    font-size: 0.9375rem;
    color: #b8b8b8;
    line-height: 1.7;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-card {
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-role {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f0c850;
    text-decoration: underline;
}

.contact-item span {
    color: #b8b8b8;
}

.contact-detail {
    display: block;
}

.contact-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-consent {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #b8b8b8;
}

.form-consent a {
    color: #d4af37;
    text-decoration: none;
}

.form-consent a:hover {
    color: #f0c850;
    text-decoration: underline;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #808080;
}

.form-privacy i {
    color: #d4af37;
}

/* ===================================
   PRIVACY POLICY
   =================================== */
.policy-page .nav {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.policy-section {
    padding-top: 8rem;
}

.policy-card {
    padding: 2.5rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #b8b8b8;
}

.policy-content ul {
    margin: 0 0 1rem 1.25rem;
    color: #b8b8b8;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #141414;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer p {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #d4af37;
}

.footer-credentials {
    font-size: 0.875rem;
    color: #808080;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808080;
    font-size: 0.875rem;
}

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4af37;
    color: #0a0a0a;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .nav-phone {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.show {
        right: 0;
    }
    
    .nav-call-mobile {
        display: block;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.875rem 1rem;
        background: linear-gradient(135deg, #b8941f, #d4af37);
        border-radius: 50px;
        color: #0a0a0a;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    
    .nav-lang-toggle {
        display: none;
    }
    
    .lang-toggle-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .lang-toggle-mobile {
        display: inline-flex;
        width: auto;
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
        margin-left: 0.5rem;
    }
    
    .hero {
        padding: 6rem 0 2rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .hero-badge-group {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-company {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 350px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 4rem 0;
    }
}