/* ═══════════════════════════════════════════════════════════════
   JustAML Website — Shared Stylesheet
   Colour palette: Indigo (brand integrity) + Gold (precision/excellence)
   Inspired by the balance-scale logo — clarity, fairness, watchful.
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* ── Brand Indigo (logo colour) ── */
  --navy:   #2B308F;   /* primary brand indigo */
  --navy2:  #1C2068;   /* deeper indigo – footer / dark sections */

  /* ── Interactive accent ── */
  --teal:   #4B52C8;   /* medium indigo – hover, borders, tags */
  --mint:   #7C83D8;   /* light indigo – subtle accents, gradient end */

  /* ── Gold accent (CTA / awards / excellence) ── */
  --gold:   #D4860A;   /* rich amber-gold */
  --gold-lt:#F0A830;   /* lighter gold for gradients */

  --red:    #ef4444;
  --text:   #1A1D40;   /* deep indigo-tinted body text */
  --muted:  #5C5F80;   /* muted indigo secondary text */
  --bg:     #F3F4FF;   /* light indigo-tinted page background */
  --white:  #ffffff;
  --border: #D4D6F0;   /* light indigo border */
  --radius: 12px;
  --shadow: 0 4px 20px rgba(43,48,143,.12);
  /* Decorative gradient (badges, tags, logo icon) */
  --grad:   linear-gradient(135deg, var(--navy), var(--teal));
  /* CTA gradient (buttons, submit) */
  --grad-gold: linear-gradient(135deg, var(--gold), var(--gold-lt));
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.2; letter-spacing: -.4px; }
.section-tag {
  display: inline-block;
  background: rgba(75,82,200,.1);
  color: var(--teal);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px; margin-bottom: 12px;
}
.section-title { font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-sub   { font-size: 16px; color: var(--muted); max-width: 620px; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.section        { padding: 88px 24px; }
.section-alt    { background: var(--bg); }
.section-dark   { background: var(--navy); }
.inner          { max-width: 1160px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: .2s; font-family: inherit; text-decoration: none; }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-primary  { background: var(--grad-gold); color: var(--white); }
.btn-primary:hover  { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,134,10,.38); }
.btn-secondary { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-secondary:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--bg); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-scrolled { box-shadow: 0 2px 20px rgba(43,48,143,.12); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 38px; width: auto; border-radius: 6px; }
/* fallback icon if image unavailable */
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--grad); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--white);
}
.nav-logo-text { color: var(--navy); font-weight: 700; font-size: 17px; }
.nav-links { display: flex; gap: 2px; flex: 1; }
.nav-links a {
  color: rgba(43,48,143,.65); padding: 6px 13px; border-radius: 6px;
  font-size: 14px; font-weight: 500; transition: .18s; white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: rgba(43,48,143,.07); }
.nav-links a.active { color: var(--navy); background: rgba(43,48,143,.08); font-weight: 600; }
.lang-switcher { display: flex; gap: 3px; margin-left: auto; flex-shrink: 0; }
.lang-btn {
  background: none; border: 1px solid rgba(43,48,143,.25); color: rgba(43,48,143,.7);
  padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: .18s; font-family: inherit; white-space: nowrap;
}
.lang-btn:hover, .lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── PAGE HERO (sub-pages) ───────────────────────────────────── */
.page-hero {
  padding: 120px 24px 72px;
  background: linear-gradient(150deg, #0d0f3a 0%, #1C2068 55%, #2B308F 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,134,10,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero p  { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: .22s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.11); }
.card-dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: var(--white); }
.card-teal { background: linear-gradient(135deg, var(--navy), var(--navy2)); color: var(--white); border: none; }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
  background: rgba(75,82,200,.1);
}
.card-icon-teal { background: var(--grad); }
.card-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-dark .card-title, .card-teal .card-title { color: var(--white); }
.card-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.card-dark .card-desc { color: rgba(255,255,255,.6); }

/* ── STAT BOXES ─────────────────────────────────────────────── */
.stat-box { text-align: center; }
.stat-num { font-size: 38px; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }
.stat-box-dark .stat-lbl { color: rgba(255,255,255,.55); }

/* ── FEATURE SHOWCASE ───────────────────────────────────────── */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.feature-block:last-child { border-bottom: none; padding-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-meta { }
.feature-tag { display: inline-block; background: rgba(75,82,200,.1); color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.feature-title { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.feature-desc  { font-size: 15px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.feature-list  { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── MOCK UI SCREENS ────────────────────────────────────────── */
.mock-screen {
  background: var(--navy); border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.1);
}
.mock-bar {
  background: #151847; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: var(--gold); }
.mock-dots span:nth-child(3) { background: #28c76f; }
.mock-title { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 600; margin-left: 8px; }
.mock-body { padding: 20px; }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 7px; margin-bottom: 6px; background: rgba(255,255,255,.04); }
.mock-row:last-child { margin-bottom: 0; }
.mock-label { font-size: 12px; color: rgba(255,255,255,.55); flex: 1; }
.mock-value { font-size: 12px; font-weight: 700; color: var(--white); }
.mock-badge { padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.mock-badge-ok   { background: rgba(0,196,154,.2); color: var(--mint); }
.mock-badge-warn { background: rgba(245,158,11,.2); color: var(--gold); }
.mock-badge-fail { background: rgba(239,68,68,.2); color: #fca5a5; }
.mock-score-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.1); margin-top: 4px; overflow: hidden; }
.mock-score-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal), var(--mint)); }
.mock-header { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 0 10px 8px; display: flex; gap: 10px; }
.mock-header span { flex: 1; }

/* ── SOLUTION INDUSTRY CARDS ────────────────────────────────── */
.industry-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 16px; padding: 28px; transition: .22s; cursor: default;
}
.industry-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(43,48,143,.18); }
.industry-icon { font-size: 36px; margin-bottom: 12px; }
.industry-name { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.industry-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.industry-tag { background: rgba(75,82,200,.1); color: var(--teal); padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.industry-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.industry-features li { font-size: 13px; color: var(--text); display: flex; gap: 8px; }
.industry-features li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── PRICING ─────────────────────────────────────────────────── */
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 16px; padding: 28px; position: relative; transition: .22s;
}
.plan-card.featured { border-color: var(--gold); box-shadow: 0 8px 40px rgba(212,134,10,.22); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.plan-name   { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.plan-quota  {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(75,82,200,.1); color: var(--teal);
  padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.plan-features li { font-size: 13px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.plan-features li .chk { color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-features li .chk-plus { color: var(--teal); }
.plan-features .topup-hd { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--teal); padding-top: 6px; }
.plan-cta-sub { text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ── CASE STUDY CARDS ───────────────────────────────────────── */
.case-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; border-left: 4px solid var(--red);
  box-shadow: var(--shadow); transition: .2s;
}
.case-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.case-label  { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.case-title  { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.case-desc   { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.case-penalty { display: inline-flex; align-items: center; gap: 6px; background: rgba(239,68,68,.08); color: var(--red); padding: 4px 10px; border-radius: 5px; font-size: 12px; font-weight: 700; }

/* ── AMLO TIMELINE ──────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 20px; }
.timeline-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--teal); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--teal); flex-shrink: 0; }
.timeline-connector { width: 2px; background: var(--border); flex: 1; min-height: 32px; }
.timeline-content { padding-bottom: 28px; flex: 1; }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: .5px; margin-bottom: 4px; }
.timeline-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-text { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── AMLO OBLIGATION GRID ───────────────────────────────────── */
.obligation-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  border-top: 3px solid var(--teal);
}
.obligation-num { font-size: 28px; font-weight: 900; color: rgba(75,82,200,.2); line-height: 1; margin-bottom: 8px; }
.obligation-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.obligation-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-method {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; transition: .2s;
}
.contact-method:hover { border-color: var(--teal); }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(75,82,200,.1); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-method-label { font-size: 12px; color: var(--muted); margin-bottom: 3px; }
.contact-method-value { font-size: 15px; font-weight: 700; color: var(--navy); }
.contact-method-sub   { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-label .required-mark {
  color: var(--red); font-weight: 700; margin-left: 2px; cursor: help;
}
.form-label .optional-mark {
  color: var(--muted); font-weight: 400; font-size: 12px; margin-left: 4px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--text);
  outline: none; transition: .2s; background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: #b0b6c4; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(75,82,200,.12);
}
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: var(--red); background-color: rgba(220, 38, 38, .03);
}
.form-input.is-invalid:focus, .form-select.is-invalid:focus, .form-textarea.is-invalid:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input.readonly, .form-input[readonly] { background: var(--bg); color: var(--muted); cursor: not-allowed; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.form-checkbox input { margin-top: 3px; accent-color: var(--teal); cursor: pointer; }
.form-checkbox label { font-size: 13px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-checkbox a { color: var(--teal); }
.form-checkbox.is-invalid label { color: var(--red); }
.form-error {
  display: none;
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
  line-height: 1.4;
  align-items: center;
  gap: 4px;
}
.form-error.show { display: flex; }
.form-error::before {
  content: "⚠";
  font-size: 12px;
  flex-shrink: 0;
}
.form-hint {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.form-required-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.form-required-note .required-mark { color: var(--red); font-weight: 700; }
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── MODALS ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 16px; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.modal-header { padding: 28px 28px 0; position: sticky; top: 0; background: var(--white); z-index: 1; border-radius: 16px 16px 0 0; }
.modal-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.modal-plan-badge { display: inline-block; background: var(--grad-gold); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 6px; }
.modal-title { font-size: 22px; font-weight: 800; color: var(--navy); }
.modal-close { background: none; border: none; width: 32px; height: 32px; border-radius: 6px; cursor: pointer; font-size: 18px; color: var(--muted); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--bg); }
.modal-body { padding: 24px 28px 28px; }
.features-select { border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 12px; margin-bottom: 16px; }
.feature-opt { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.feature-opt:last-child { border-bottom: none; }
.feature-opt label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); cursor: pointer; flex: 1; }
.feature-opt input { accent-color: var(--gold); }
.feature-price { font-size: 13px; font-weight: 600; color: var(--gold); }
.total-row { display: flex; justify-content: space-between; align-items: center; background: rgba(212,134,10,.07); padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.total-label  { font-size: 14px; font-weight: 600; color: var(--navy); }
.total-amount { font-size: 22px; font-weight: 800; color: var(--gold); }
.submit-btn { width: 100%; padding: 14px; background: var(--grad-gold); color: var(--white); border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: .2s; }
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,134,10,.32); }
.success-msg { display: none; text-align: center; padding: 32px 20px; }
.success-icon  { font-size: 56px; margin-bottom: 16px; }
.success-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.success-sub   { font-size: 15px; color: var(--muted); }

/* ── COOKIE BANNER ───────────────────────────────────────────── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--navy2); border-top: 2px solid var(--gold);
  padding: 16px 24px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
  transform: translateY(110%); transition: .4s cubic-bezier(.4,0,.2,1);
}
#cookieBanner.visible { transform: translateY(0); }
.cookie-text { flex: 1; min-width: 220px; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5; }
.cookie-text a { color: var(--gold-lt); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept  { background: var(--grad-gold); color: var(--white); padding: 9px 20px; border-radius: 6px; border: none; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.6); padding: 9px 16px; border-radius: 6px; border: 1px solid rgba(255,255,255,.2); font-size: 13px; cursor: pointer; font-family: inherit; }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--navy2); color: rgba(255,255,255,.7); padding: 56px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 32px; }
.footer-brand { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 32px; width: auto; border-radius: 5px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; line-height: 1.6; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 14px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { font-size: 13px; color: rgba(255,255,255,.5); transition: .18s; }
.footer-links-list a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: .18s; }
.footer-bottom-links a:hover { color: var(--gold-lt); }

/* ── AWARD BADGE ─────────────────────────────────────────────── */
.award-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,134,10,.1); border: 1px solid rgba(212,134,10,.25); padding: 8px 14px; border-radius: 8px; }
.award-badge-year { font-size: 11px; font-weight: 700; color: var(--gold); }
.award-badge-text { font-size: 13px; color: var(--text); font-weight: 500; }

/* ── HERO PULSE ANIMATION ────────────────────────────────────── */
@keyframes pulse  { 0%,100%{ opacity:1 } 50%{ opacity:.35 } }
@keyframes fadeUp { from{ opacity:0; transform:translateY(20px) } to{ opacity:1; transform:none } }
.fade-up { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .section { padding: 64px 20px; }
  .grid-2, .grid-3, .feature-block { grid-template-columns: 1fr; }
  .feature-block.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 100px 20px 56px; }
  .grid-auto { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ── TOAST / NOTICE ──────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(43,48,143,.18), 0 2px 6px rgba(43,48,143,.08);
  border-left: 4px solid var(--teal);
  padding: 14px 16px 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  transform: translateX(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.16,.84,.42,1.06), opacity .25s ease;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.hide { transform: translateX(120%); opacity: 0; }
.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  margin-top: 1px;
}
.toast-body { flex: 1 1 auto; min-width: 0; word-break: break-word; }
.toast-title { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.toast-message { font-size: 13.5px; color: var(--text); white-space: pre-line; }
.toast-close-btn {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: .15s;
}
.toast-close-btn:hover { background: var(--bg); color: var(--navy); }

.toast.toast-success { border-left-color: #15803d; }
.toast.toast-success .toast-icon { background: #15803d; }
.toast.toast-error { border-left-color: var(--red); }
.toast.toast-error .toast-icon { background: var(--red); }
.toast.toast-warning { border-left-color: var(--gold); }
.toast.toast-warning .toast-icon { background: var(--gold); }
.toast.toast-info { border-left-color: var(--teal); }
.toast.toast-info .toast-icon { background: var(--teal); }

@media(max-width:480px) {
  .toast-container { top: 16px; right: 16px; left: 16px; max-width: none; }
  .toast { min-width: 0; max-width: none; }
}
