:root {
    --navy: #13213c;
    --navy-2: #0b1327;
    --gold: #d8aa5d;
    --gold-2: #f2d18b;
    --cream: #f8f4ec;
    --ink: #111827;
    --muted: #687083;
    --line: rgba(17, 24, 39, .12);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(15, 23, 42, .16);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.header-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand strong { display: block; font-size: 18px; letter-spacing: -.03em; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -2px; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #263045;
    font-weight: 650;
    font-size: 14px;
}
.main-nav a:hover { background: #49556b; }
.main-nav .nav-cta {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(19, 33, 60, .2);
}

.language-dropdown {
    position: relative;
    margin: 0 4px;
}
.language-toggle {
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(19, 33, 60, .1);
    border-radius: 999px;
    background: rgba(19, 33, 60, .07);
    color: #263045;
    cursor: pointer;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 13px;
    font-family: inherit;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.language-toggle:hover,
.language-dropdown.open .language-toggle {
    background: var(--white);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
}
.language-flag {
    width: 22px;
    height: 16px;
    display: block;
    flex: 0 0 22px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .14), 0 4px 10px rgba(15, 23, 42, .12);
}
.language-label { letter-spacing: .02em; }
.language-chevron { font-size: 16px; line-height: 1; transform: translateY(-1px); }
.language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 214px;
    display: none;
    padding: 8px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 120;
}
.language-dropdown.open .language-menu { display: grid; gap: 4px; }
.language-option {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    color: #263045;
    font-size: 14px !important;
    font-weight: 800 !important;
}
.language-option:hover { background: rgba(19, 33, 60, .07); }
.language-option.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #231708;
    box-shadow: 0 8px 18px rgba(216, 170, 93, .22);
}
.language-code {
    font-size: 11px;
    font-weight: 900;
    opacity: .72;
}
.menu-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 22px;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(216,170,93,.22), transparent 34%), linear-gradient(135deg, var(--navy-2), var(--navy));
    color: var(--white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .16;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.hero-grid {
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.08fr .62fr;
    gap: 48px;
    align-items: center;
    padding: 90px 0 70px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-2);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}
.eyebrow.dark { color: #9a6a1e; }
.eyebrow.light { color: var(--gold-2); }
.hero h1 {
    font-size: clamp(42px, 6vw, 58px);
    line-height: .98;
    margin: 20px 0 24px;
    letter-spacing: -.07em;
    max-width: 850px;
}
.hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    max-width: 700px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #231708; box-shadow: 0 16px 34px rgba(216, 170, 93, .32); }
.btn.ghost { border-color: rgba(255,255,255,.24); color: var(--white); background: rgba(255,255,255,.08); }
.btn.full { width: 100%; }
.btn.light-btn { background: var(--white); color: var(--navy); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points span {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
}
.consultant-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
    border-radius: 34px;
    padding: 34px;
    backdrop-filter: blur(18px);
}
.card-shine {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    top: -90px;
    border-radius: 999px;
    background: rgba(216, 170, 93, .32);
    filter: blur(10px);
}
.avatar {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #211407;
    font-weight: 900;
    font-size: 32px;
    box-shadow: 0 18px 32px rgba(0,0,0,.2);
    margin-bottom: 26px;
}
.consultant-card h2 { font-size: 31px; margin: 0 0 8px; letter-spacing: -.04em; }
.consultant-card p { font-size: 16px; color: rgba(255,255,255,.72); }
.contact-line {
    margin: 26px 0;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
}
.contact-line span { display: block; color: rgba(255,255,255,.55); font-size: 13px; }
.contact-line a { font-size: 22px; font-weight: 900; color: var(--gold-2); }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.mini-stats div { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.08); }
.mini-stats strong { display: block; font-size: 28px; }
.mini-stats span { color: rgba(255,255,255,.68); font-size: 13px; }

.trust-strip { margin-top: -42px; position: relative; z-index: 3; }
.strip-grid {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 28px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}
.strip-grid div { padding: 12px 22px; border-right: 1px solid var(--line); }
.strip-grid div:last-child { border-right: 0; }
.strip-grid strong { display: block; font-size: 20px; letter-spacing: -.03em; }
.strip-grid span { color: var(--muted); font-size: 14px; }

.section { padding: 106px 0; }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin: 14px 0 16px; letter-spacing: -.055em; }
.section-head p, .split-copy p, .docs-panel p, .contact-info p { color: var(--muted); font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #fbfaf7);
    box-shadow: 0 10px 40px rgba(17, 24, 39, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--cream);
    font-size: 26px;
    margin-bottom: 20px;
}
.service-card h3 { font-size: 22px; margin: 0 0 10px; letter-spacing: -.03em; }
.service-card p { color: var(--muted); margin-bottom: 22px; }
.service-card a { color: #9a6a1e; font-weight: 900; }

.split-section { background: var(--cream); }
.split-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 56px; align-items: center; }
.split-copy { max-width: 520px; }
.timeline { display: grid; gap: 16px; }
.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(154,106,30,.12);
}
.timeline-item > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--navy);
    color: var(--gold-2);
    font-weight: 900;
}
.timeline-item h3 { margin: 0 0 6px; font-size: 21px; }
.timeline-item p { margin: 0; color: var(--muted); }

.documents {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-2), var(--navy));
}
.docs-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 28px; align-items: stretch; }
.docs-panel, .checklist {
    padding: 38px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
}
.docs-panel p { color: rgba(255,255,255,.74); }
.note { padding: 16px; border-radius: 18px; background: rgba(216,170,93,.12); border: 1px solid rgba(216,170,93,.24); }
.checklist h3 { font-size: 24px; margin-top: 0; }
.checklist ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checklist li {
    position: relative;
    padding-left: 32px;
    color: rgba(255,255,255,.82);
}
.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-2);
    font-weight: 900;
}

.why { padding-top: 86px; padding-bottom: 86px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 28px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 36px rgba(15,23,42,.06); }
.why-card span { color: #9a6a1e; font-weight: 900; }
.why-card h3 { font-size: 23px; margin: 14px 0 8px; }
.why-card p { color: var(--muted); margin: 0; }

.cta-band { background: linear-gradient(135deg, #9a6a1e, var(--gold)); color: var(--white); padding: 66px 0; }
.cta-grid { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.cta-grid h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; letter-spacing: -.05em; max-width: 780px; margin: 12px 0 0; }

.contact-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 34px; align-items: start; }
.info-box {
    margin-top: 16px;
    padding: 19px 22px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
}
.info-box span { display: block; color: var(--muted); font-size: 13px; }
.info-box strong, .info-box a { display: block; font-size: 22px; font-weight: 900; color: var(--navy); }
.official-links { margin-top: 24px; padding: 22px; border-radius: 22px; background: var(--cream); }
.official-links h3 { margin: 0 0 10px; }
.official-links a { display: block; color: #8b5d15; font-weight: 800; margin-top: 7px; }
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 34px;
}
.contact-form h3 { margin: 0 0 20px; font-size: 26px; letter-spacing: -.04em; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #263045; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(104,112,131,.28);
    border-radius: 16px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(216,170,93,.14);
}
.hidden { position: absolute; left: -9999px; opacity: 0; }
.form-note { color: var(--muted); font-size: 13px; margin-bottom: 0; }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 16px; font-weight: 700; }
.alert.success { background: #eaf7ef; color: #116035; }
.alert.error { background: #fdecec; color: #9b1c1c; }
.alert a { text-decoration: underline; }

.site-footer { background: var(--navy-2); color: rgba(255,255,255,.76); padding: 34px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid strong { color: #fff; }
.footer-grid p { margin: 4px 0 0; }
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    background: #25d366;
    color: #062b14;
    font-weight: 900;
    border-radius: 999px;
    padding: 15px 20px;
    box-shadow: 0 18px 36px rgba(37,211,102,.28);
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 86px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 14px;
        border-radius: 22px;
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
    }
    .main-nav.open { display: flex; }
    .main-nav a { text-align: center; }
    .language-dropdown { width: 100%; margin: 4px 0; }
    .language-toggle {
        width: 100%;
        justify-content: center;
    }
    .language-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(19, 33, 60, .04);
    }
    .hero-grid, .split-grid, .docs-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; padding-top: 70px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .strip-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .strip-grid div { border-right: 0; }
    .cta-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1180px); }
    .brand small { display: none; }
    .hero h1 { font-size: 42px; }
    .hero p { font-size: 17px; }
    .services-grid, .strip-grid, .why-grid { grid-template-columns: 1fr; }
    .section { padding: 76px 0; }
    .consultant-card, .contact-form, .docs-panel, .checklist { padding: 24px; border-radius: 24px; }
    .timeline-item { grid-template-columns: 1fr; }
    .footer-grid { align-items: flex-start; flex-direction: column; }
    .floating-whatsapp { left: 20px; right: 20px; text-align: center; }
}
