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

:root {
  --navy:    #0a1f44;
  --navy2:   #132d5e;
  --gold:    #c9913a;
  --gold2:   #e8b05a;
  --white:   #ffffff;
  --offwhite:#f8f6f2;
  --text:    #2c2c2c;
  --muted:   #6b7280;
  --border:  #e2e0da;
  --shadow:  0 4px 24px rgba(10,31,68,.09);
  --radius:  14px;
  --max-w:   1120px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }

h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.22; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 700; color: var(--navy); }
h3 { font-size: 1.08rem; font-weight: 600; color: var(--navy); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--offwhite); }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); font-size: 1.05rem; max-width: 680px; margin: 0 auto 48px; }

/* ===== LANG SWITCHER ===== */
.lang-switch {
  display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700;
}
.lang-switch a {
  padding: 4px 10px; border-radius: 6px;
  color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.12);
  transition: all .2s;
}
.lang-switch a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.lang-switch a.active {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}

/* ===== DEST SWITCH ===== */
.dest-switch {
  display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700;
}
.dest-switch a {
  padding: 4px 12px; border-radius: 6px;
  color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.15);
  transition: all .2s; white-space: nowrap;
}
.dest-switch a:hover { color: var(--white); border-color: rgba(255,255,255,.35); }
.dest-switch a.active {
  background: rgba(201,145,58,.2); color: var(--gold2);
  border-color: rgba(201,145,58,.4);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,31,68,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); white-space: nowrap;
}
.logo span { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700; padding: 9px 22px; border-radius: 8px;
  font-size: .93rem; transition: background .2s; white-space: nowrap;
}
.header-cta:hover { background: var(--gold2); color: var(--navy) !important; }

/* ===== STICKY PAGE NAV ===== */
.page-nav {
  display: none;
  position: sticky; top: 64px; z-index: 900;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
}
.page-nav.is-visible { display: block; }
.page-nav ul {
  display: flex; list-style: none;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  overflow-x: auto;
}
.page-nav ul li a {
  display: block; padding: 14px 18px;
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 700;
  letter-spacing: .03em; white-space: nowrap; transition: color .2s;
}
.page-nav ul li a:hover { color: var(--gold2); }
.page-nav ul li a.btn-nav {
  background: var(--gold); color: var(--navy); padding: 14px 22px;
}
.page-nav ul li a.btn-nav:hover { background: var(--gold2); }

@media(max-width:768px) {
  .page-nav ul li a { padding: 12px 10px; font-size: .78rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #020e2a 0%, #0a1f44 40%, #0d3060 65%, #1a4a7a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,145,58,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(29,90,160,.25) 0%, transparent 50%);
}
.hero-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-geo::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 520px; height: 520px;
  border: 1.5px solid rgba(201,145,58,.14); border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute; right: 60px; top: 60px;
  width: 320px; height: 320px;
  border: 1px solid rgba(201,145,58,.09); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
@media(max-width:900px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.hero-breadcrumbs { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.hero-breadcrumbs a { color: rgba(255,255,255,.5); }
.hero-breadcrumbs a:hover { color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-subclass { color: var(--gold2); font-size: clamp(.9rem, 1.6vw, 1.05rem); font-weight: 700; font-family: 'Lato', sans-serif; letter-spacing: .02em; margin-bottom: 20px; opacity: .9; }
.hero-lead { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85); padding: 6px 14px; border-radius: 20px;
  font-size: .83rem; font-weight: 700;
}
.badge-gold { background: rgba(201,145,58,.18); border-color: rgba(201,145,58,.35); color: var(--gold2); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust-line { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.5); }
.hero-trust-sep { color: rgba(255,255,255,.25); }
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: 10px;
  transition: all .2s; white-space: nowrap; border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); color: var(--navy); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: 10px;
  border: 2px solid rgba(255,255,255,.3); transition: all .2s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px); border-radius: 20px; padding: 36px 32px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-stat { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-icon { font-size: 1.5rem; flex-shrink: 0; padding-top: 2px; filter: drop-shadow(0 0 3px rgba(255,255,255,.5)); }
.hero-stat-label { font-size: .82rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.hero-stat-value { color: var(--white); font-weight: 700; font-size: .97rem; }
.disclaimer-small {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.55;
}
@media(max-width:900px) { .hero-card { display: none; } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy); padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .9rem; }
.trust-item strong { color: var(--gold2); }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,.12); }
@media(max-width:600px) { .trust-divider { display: none; } }

/* ===== FEATURE CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,31,68,.13); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* ===== VISA TYPE ===== */
.visa-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media(max-width:768px) { .visa-info-grid { grid-template-columns: 1fr; } }
.visa-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.visa-table th { background: var(--navy); color: var(--white); padding: 14px 18px; text-align: left; font-family: 'Playfair Display', serif; font-weight: 600; }
.visa-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: .95rem; }
.visa-table tr:last-child td { border-bottom: none; }
.visa-table tr:nth-child(even) td { background: var(--offwhite); }
.visa-table td:first-child { font-weight: 700; color: var(--navy2); width: 48%; }
.info-box { background: rgba(10,31,68,.04); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin-top: 24px; font-size: .95rem; }
.visa-text h3 { font-size: 1.45rem; margin-bottom: 16px; }
.visa-text p { color: var(--muted); margin-bottom: 16px; }
.visa-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.visa-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; }
.visa-checks li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; padding-top: 2px; }

/* ===== DOCUMENTS ===== */
.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media(max-width:768px) { .docs-grid { grid-template-columns: 1fr; } }
.doc-column { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); }
.doc-column-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.doc-column-title.optional { border-color: var(--border); }
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.doc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; line-height: 1.5; }
.doc-list li::before { content: ''; display: block; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.doc-list li.optional-item::before { background: var(--border); border: 2px solid var(--gold); }
.doc-list strong { color: var(--navy2); }
.doc-notes { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.doc-note { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); }
.doc-note-icon { font-size: 1.4rem; flex-shrink: 0; }
.doc-note p { font-size: .92rem; color: var(--muted); }
.doc-note p strong { color: var(--navy2); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.price-card {
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: var(--gold); position: relative; }
.price-card.featured::before {
  content: 'Консульский сбор';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-weight: 800; font-size: .73rem;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 14px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.price-note { font-size: .83rem; color: var(--muted); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.price-card .btn-primary { text-align: center; display: block; }

.payment-methods { margin-top: 48px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; box-shadow: var(--shadow); }
.payment-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; }
.payment-list { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-tag { background: var(--offwhite); border: 1px solid var(--border); border-radius: 8px; padding: 7px 14px; font-size: .88rem; font-weight: 700; color: var(--navy2); }
.installment-note { margin-top: 20px; display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--muted); padding-top: 18px; border-top: 1px solid var(--border); }
.installment-note strong { color: var(--navy); }

/* ===== STEPS ===== */
.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
@media(max-width:860px) { .steps-list { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .steps-list { grid-template-columns: 1fr; } }
.steps-list::before {
  content: ''; position: absolute; top: 32px; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--gold), var(--gold2)); z-index: 0;
}
@media(max-width:860px) { .steps-list::before { display: none; } }
.step-card {
  position: relative; z-index: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px 24px; box-shadow: var(--shadow); text-align: center;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white);
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; border: 3px solid var(--gold);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.02rem; }
.step-card p { font-size: .9rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; background: var(--white); border: none; cursor: pointer;
  padding: 20px 24px; text-align: left;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy2);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: background .15s;
}
.faq-question:hover { background: var(--offwhite); }
.faq-toggle { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: transform .25s; }
.faq-toggle svg { width: 12px; height: 12px; fill: none; stroke: var(--white); stroke-width: 2.5; }
.faq-question.active .faq-toggle { transform: rotate(45deg); background: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ===== CONTACT FORM ===== */
.form-section { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0; }
.form-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border: 1px solid rgba(201,145,58,.12); border-radius: 50%;
}
.form-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border: 1px solid rgba(201,145,58,.08); border-radius: 50%;
}
.form-wrapper { position: relative; z-index: 2; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media(max-width:820px) { .form-grid { grid-template-columns: 1fr; gap: 40px; } }
.form-left h2 { color: var(--white); margin-bottom: 14px; }
.form-left p { color: rgba(255,255,255,.65); margin-bottom: 28px; font-size: 1.02rem; }
.form-disclaimer {
  background: rgba(255,255,255,.06); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65;
  margin-bottom: 24px;
}
.form-disclaimer strong { color: rgba(255,255,255,.85); }
.messenger-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); padding: 10px 18px; border-radius: 10px;
  font-weight: 700; font-size: .88rem; transition: all .2s;
}
.messenger-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }

.contact-form { background: var(--white); border-radius: 20px; padding: 36px 32px; }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--navy); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .88rem; font-weight: 700; color: var(--navy2); margin-bottom: 7px; }
.form-group input:not([type="radio"]):not([type="checkbox"]), .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Lato', sans-serif; font-size: .95rem; color: var(--text);
  transition: border-color .2s; background: var(--white); -webkit-appearance: none;
}
.form-group input:not([type="radio"]):not([type="checkbox"]):focus, .form-group select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,145,58,.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: .92rem; }
.radio-label input[type="radio"] { cursor: pointer; }
.submit-btn {
  width: 100%; padding: 16px; background: var(--navy); color: var(--white);
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1.05rem;
  border: none; border-radius: 10px; cursor: pointer; transition: background .2s; margin-top: 8px;
}
.submit-btn:hover { background: var(--navy2); }
.form-privacy { font-size: .77rem; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: .95rem; }

/* ===== FOOTER ===== */
.site-footer { background: #060f22; padding: 48px 0 32px; color: rgba(255,255,255,.45); font-size: .88rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 12px; display: block; }
.footer-brand p { line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links strong { color: rgba(255,255,255,.65); display: block; margin-bottom: 6px; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 36px; padding-top: 24px; font-size: .82rem; }

/* ===== MOBILE STICKY CTA ===== */
.sticky-bottom-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--navy); border-top: 2px solid var(--gold); padding: 12px 20px;
}
.sticky-bottom-cta .inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-bottom-cta p { font-size: .85rem; font-weight: 700; color: var(--white); }
.sticky-bottom-cta .btn-primary { font-size: .9rem; padding: 10px 20px; }
@media(max-width:768px) { .sticky-bottom-cta { display: block; } }


/* ===== FOUNDER ===== */
.founder-wrapper {
  display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: start;
}
@media(max-width:900px) { .founder-wrapper { grid-template-columns: 1fr; gap: 32px; } }
.founder-left { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 88px; }
@media(max-width:900px) { .founder-left { position: static; max-width: 420px; margin: 0 auto; } }
.founder-main-photo {
  border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(10,31,68,.15);
}
.founder-main-photo img { width: 100%; display: block; object-fit: cover; }
.founder-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.founder-gallery img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  border-radius: 10px; box-shadow: var(--shadow);
}
.founder-label {
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 10px;
}
.founder-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 6px;
}
.founder-name {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800;
  color: var(--gold); margin-bottom: 20px;
}
.founder-text p { color: var(--muted); font-size: .97rem; margin-bottom: 14px; line-height: 1.7; }
.founder-text p:last-child { margin-bottom: 0; }
.founder-text strong { color: var(--navy2); }

/* ===== LIGHTBOX ===== */
.founder-main-photo img,
.founder-gallery img { cursor: zoom-in; }
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 100%; max-height: 90vh;
  border-radius: 10px; box-shadow: 0 0 60px rgba(0,0,0,.6);
  object-fit: contain;
  animation: lb-in .22s ease;
}
@keyframes lb-in { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem; transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: .83rem; color: rgba(255,255,255,.55); letter-spacing: .06em;
}

.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ===== HOMEPAGE ===== */
.home-hero {
  background: linear-gradient(135deg, #020e2a 0%, #0a1f44 40%, #0d3060 65%, #1a4a7a 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,145,58,.15) 0%, transparent 55%);
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero h1 { color: var(--white); margin-bottom: 16px; }
.home-hero h1 em { color: var(--gold); font-style: normal; }
.home-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.visa-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 900px; margin: 0 auto;
}
@media(max-width: 640px) { .visa-cards { grid-template-columns: 1fr; } }

.visa-card-link {
  display: block; text-decoration: none;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.visa-card-link:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 48px rgba(10,31,68,.14);
}
.visa-card-flag {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.visa-card-flag.au { background: linear-gradient(135deg, #00247d, #003399); }
.visa-card-flag.nz { background: linear-gradient(135deg, #00247d, #cc142b 60%); }
.visa-card-body { padding: 28px 28px 32px; }
.visa-card-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); margin-bottom: 8px;
}
.visa-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}
.visa-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.visa-card-tag {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: .8rem; font-weight: 700; color: var(--navy2);
}
.visa-card-desc { color: var(--muted); font-size: .93rem; line-height: 1.6; margin-bottom: 20px; }
.visa-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: .92rem; padding: 11px 22px;
  border-radius: 10px; transition: background .2s;
}
.visa-card-link:hover .visa-card-cta { background: var(--gold); color: var(--navy); }
.visa-card-cta svg { transition: transform .2s; }
.visa-card-link:hover .visa-card-cta svg { transform: translateX(4px); }

.home-section { padding: 72px 0; }
.home-section.alt { background: var(--offwhite); }

/* ===== DOC LIST V2 ===== */
.doc-list-v2 {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.doc-list-v2 li {
  display: flex; align-items: baseline; gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: .94rem; line-height: 1.55;
}
.doc-list-v2 li:last-child { border-bottom: none; }
.doc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  margin-top: 6px;
}
.doc-dot.opt {
  background: transparent;
  border: 2px solid var(--gold);
}
.doc-list-v2 strong { color: var(--navy2); font-weight: 700; }

/* ===== FORM VALIDATION ===== */
.req { color: var(--gold); }
.field-error {
  display: none; font-size: .8rem; color: #e05252;
  margin-top: 5px; font-weight: 700;
}
.form-error {
  background: rgba(224,82,82,.12); border: 1px solid rgba(224,82,82,.35);
  border-radius: 10px; padding: 12px 16px;
  color: #ffaaaa; font-size: .9rem; margin-bottom: 16px;
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,.15);
}
