/* ============================================================
   CanPath Solutions — Website Stylesheet
   Palette: Canadian navy + maple red + warm gold on clean whites
   ============================================================ */

:root {
  --navy: #16181c;          /* darkest charcoal: footer, dark UI */
  --navy-2: #24272d;        /* elevated charcoal: cards, inputs */
  --blue: #6AA6E8;          /* light blue for links/icons on dark */
  --red: #E85D68;           /* maple accent, brightened for dark */
  --red-dark: #CE434F;
  --gold: #E7B45E;
  --head: #F2F3F5;          /* headings */
  --ink: #DDE0E4;           /* body text on dark */
  --muted: #9AA0A8;         /* muted text */
  --line: rgba(255,255,255,.10);
  --bg: #202329;            /* page background (grey) */
  --bg-soft: #1a1c21;       /* alternating darker section */
  --card: #262a30;          /* card surface */
  --bg-navy-grad: linear-gradient(135deg, #15171b 0%, #23272e 58%, #2c313a 100%);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .30);
  --shadow: 0 16px 40px rgba(0, 0, 0, .45);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; color: var(--head); }
h1 { font-size: clamp(1.7rem, 3.1vw, 2.25rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.3rem, 2.1vw, 1.7rem); letter-spacing: -.3px; }
h3 { font-size: 1.12rem; }
p { color: var(--ink); }
.muted { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 78px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy-grad); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }
.section-lead { font-size: 1rem; color: var(--muted); margin-top: 14px; }
.section--navy .section-lead { color: #C9D8EC; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .96rem;
  padding: 13px 26px; border-radius: 40px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(230,57,70,.32); }
.btn--primary:hover { background: var(--red-dark); color: #fff; }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 22px rgba(244,169,59,.32); }
.btn--gold:hover { background: #e59a2b; color: var(--navy); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--head); }
.btn--light { background: #f3f4f6; color: #16181c; }
.btn--light:hover { background: #fff; color: #16181c; }
.btn--sm { padding: 9px 18px; font-size: .86rem; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn--lg { padding: 15px 32px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: #ffffff;
  border-bottom: 1px solid #e6e9ef; box-shadow: 0 2px 16px rgba(0,0,0,.20);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--head); }
.brand:hover { color: var(--head); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--bg-navy-grad);
  display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .5px; color: var(--muted); text-transform: uppercase; }
.brand__name { line-height: 1.05; }
.brand__logo { height: 46px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav__links a { font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: #1c2530; }
.nav__links a:hover { color: var(--red); }
.nav__links a.active { color: var(--red); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: #1c2530; display: flex; align-items: center; gap: 6px; }
.nav__phone svg { width: 16px; height: 16px; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; }
.nav__toggle span { display: block; width: 24px; height: 2.5px; background: #1c2530; margin: 5px auto; border-radius: 2px; transition: .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(rgba(20,22,26,.80), rgba(18,20,24,.92)),
              url('https://images.unsplash.com/photo-1517935706615-2717063c2225?auto=format&fit=crop&w=1600&q=70') center 35% / cover no-repeat,
              var(--bg-navy-grad);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 82% 18%, rgba(231,180,94,.14), transparent 42%),
                    radial-gradient(circle at 12% 90%, rgba(232,93,104,.14), transparent 44%);
  pointer-events: none;
}
.hero h1 { text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: 82px 0 90px; }
.hero h1 { color: #fff; }
.hero__lead { font-size: 1.05rem; color: #D5E2F2; margin: 20px 0 30px; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 7px 15px; border-radius: 30px; font-size: .84rem; font-weight: 500; margin-bottom: 22px; }
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px 34px; margin-top: 38px; }
.hero__trust .t { }
.hero__trust .t strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; }
.hero__trust .t span { font-size: .84rem; color: #B9CBE2; }

.hero__card { background: rgba(30,33,39,.94); color: var(--ink); border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,.5); backdrop-filter: blur(4px); }
.hero__card h3 { color: var(--head); margin-bottom: 4px; }
.hero__card p.sub { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 15px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .84rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--head);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #2b2f36; transition: border .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #7f858e; }
.field select { color: var(--head); }
.field select option { background: #2b2f36; color: var(--head); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(106,166,232,.18); }
.field textarea { resize: vertical; min-height: 96px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }
.form-consent { display: flex; gap: 9px; align-items: flex-start; font-size: .8rem; color: var(--muted); margin: 6px 0 16px; }
.form-consent input { width: auto; margin-top: 3px; flex: 0 0 auto; }
.form-success { display: none; background: #E7F7ED; border: 1px solid #B7E6C6; color: #1B6B3A; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 500; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255,255,255,.2); }
.card__icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(28,109,208,.1); }
.card__icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.card--red .card__icon { background: rgba(230,57,70,.1); } .card--red .card__icon svg { stroke: var(--red); }
.card--gold .card__icon { background: rgba(244,169,59,.16); } .card--gold .card__icon svg { stroke: #C9821B; }
.card--green .card__icon { background: rgba(35,163,101,.12); } .card--green .card__icon svg { stroke: #17925A; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--red); }
.card__link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Audience split (students) ---------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.audience__panel { border-radius: 20px; padding: 40px 36px; color: #fff; position: relative; overflow: hidden; }
.audience__panel.intl { background: linear-gradient(140deg, #123A63, #1C4E86); }
.audience__panel.dom { background: linear-gradient(140deg, #B4232F, #E63946); }
.audience__panel h3 { color: #fff; font-size: 1.5rem; }
.audience__panel .tag { display: inline-block; background: rgba(255,255,255,.18); padding: 5px 13px; border-radius: 20px; font-size: .76rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
.audience__panel ul { list-style: none; margin: 18px 0 24px; }
.audience__panel li { padding: 7px 0 7px 28px; position: relative; color: #EAF1F9; font-size: .97rem; }
.audience__panel li::before { content: "✓"; position: absolute; left: 0; top: 7px; color: var(--gold); font-weight: 700; }
.audience__panel.dom li::before { color: #FFE08A; }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 210px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  background-size: cover; background-position: center; transition: transform .25s;
}
.dest:hover { transform: translateY(-5px); }
.dest::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,37,64,.88) 12%, rgba(10,37,64,.15) 75%); }
.dest__body { position: relative; z-index: 2; padding: 22px; }
.dest__flag { font-size: 1.7rem; line-height: 1; }
.dest h3 { color: #fff; margin: 8px 0 3px; }
.dest p { color: #D5E2F2; font-size: .86rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step__num { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; width: 40px; height: 40px; border-radius: 11px; background: var(--bg-navy-grad); display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }
.section--navy .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: #C9D8EC; }

/* ---------- Feature / split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split--media { border-radius: 20px; min-height: 380px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.check-list { list-style: none; margin: 22px 0; }
.check-list li { padding: 9px 0 9px 34px; position: relative; color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 11px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(35,163,101,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2317925A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 10px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.3rem; color: var(--gold); line-height: 1; }
.stat span { font-size: .92rem; color: #C9D8EC; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-navy-grad); border-radius: 24px; padding: 54px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(244,169,59,.22), transparent 45%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D5E2F2; max-width: 620px; margin: 12px auto 26px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.quote p { font-size: 1rem; color: var(--ink); font-style: italic; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-navy-grad); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote__who strong { display: block; font-size: .92rem; color: var(--head); }
.quote__who span { font-size: .8rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--card); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 20px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--head); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq__q span.ico { flex: 0 0 auto; transition: transform .25s; color: var(--red); font-size: 1.3rem; }
.faq__item.open .faq__q span.ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 20px; }
.faq__a p { padding-bottom: 18px; color: var(--muted); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--bg-navy-grad); color: #fff; padding: 66px 0 58px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 15%, rgba(244,169,59,.18), transparent 42%); }
.page-hero__inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #D5E2F2; font-size: 1.02rem; margin-top: 14px; }
.crumbs { font-size: .84rem; color: #A9C0DC; margin-bottom: 16px; }
.crumbs a { color: #A9C0DC; } .crumbs a:hover { color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.contact-info .info-item { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: 0; }
.info-item__ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(28,109,208,.1); display: grid; place-items: center; flex: 0 0 auto; }
.info-item__ico svg { width: 20px; height: 20px; stroke: var(--blue); }
.info-item strong { display: block; font-family: var(--font-head); color: var(--head); font-size: .96rem; }
.info-item p, .info-item a { color: var(--muted); font-size: .94rem; }
.info-item a:hover { color: var(--red); }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 34px; box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #C4D4E8; padding: 60px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand small { color: #90A8C6; }
.footer p { color: #A9BDD6; font-size: .92rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; font-family: var(--font-head); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #A9BDD6; font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; stroke: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: #8FA6C2; }
.footer__bottom a { color: #8FA6C2; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.socials a:hover { background: var(--red); }
.socials svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Utilities / reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; left: 20px; bottom: 20px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- WhatsApp inline link ---------- */
.wa-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: #128C4B; }
.wa-link:hover { color: #0e6e3b; }
.wa-link svg { width: 16px; height: 16px; fill: #25D366; flex: 0 0 auto; }

/* ---------- Certification badge ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line);
  border-radius: 40px; padding: 8px 16px; font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--head);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 17px; height: 17px; stroke: var(--red); }

/* ---------- ICEF certification seal ---------- */
.cert-chip {
  background: #fff; border-radius: 14px; padding: 12px; display: inline-flex;
  align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.cert-chip img { height: 98px; width: auto; display: block; }
.cert-callout {
  background: #fff; border-radius: 20px; padding: 30px 34px; display: flex; gap: 28px;
  align-items: center; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow); flex-wrap: wrap;
}
.cert-callout img { height: 156px; width: auto; flex: 0 0 auto; }
.cert-callout .cc-body { flex: 1; min-width: 220px; }
.cert-callout h3 { color: #16181c; margin-bottom: 6px; }
.cert-callout p { color: #5A6B82; font-size: .96rem; margin: 0; }
.cert-callout .cc-code { display: inline-block; margin-top: 10px; font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: #1B3B6F; background: #eef2f8; border-radius: 20px; padding: 5px 14px; }
.cert-seal-form { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 12px; padding: 10px 14px; margin-bottom: 18px; }
.cert-seal-form img { height: 46px; width: auto; }
.cert-seal-form span { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: #16181c; line-height: 1.3; }

/* ---------- Featured (larger) service section ---------- */
.section--feature { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--feature .split { gap: 52px; align-items: center; }
.section--feature h2 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.section--feature .eyebrow { color: var(--gold); }
.section--feature .split--media { min-height: 430px; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(232,180,94,.14);
  border: 1px solid rgba(232,180,94,.4); color: var(--gold); border-radius: 30px; padding: 6px 14px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .5px; margin-bottom: 16px;
}
.feature-tag svg { width: 14px; height: 14px; fill: var(--gold); }
@media (max-width: 720px) { .cert-callout { padding: 24px; text-align: center; justify-content: center; } }

/* ---------- Directions button ---------- */
.map-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; align-items: center; }
.map-actions .muted { margin: 0; }

/* ---------- Chatbot ---------- */
.cb-launcher {
  position: fixed; right: 20px; bottom: 20px; z-index: 210;
  width: 60px; height: 60px; border-radius: 50%; background: var(--bg-navy-grad);
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(10,37,64,.4);
  cursor: pointer; border: 0; transition: transform .2s;
}
.cb-launcher:hover { transform: scale(1.06); }
.cb-launcher svg { width: 28px; height: 28px; fill: #fff; }
.cb-launcher .cb-ico-close { display: none; }
.cb-launcher.open .cb-ico-chat { display: none; }
.cb-launcher.open .cb-ico-close { display: block; }
.cb-nudge {
  position: fixed; right: 90px; bottom: 30px; z-index: 209; background: #2a2e35; color: var(--ink);
  border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 30px; padding: 10px 16px;
  font-size: .86rem; font-weight: 500; max-width: 220px; transition: opacity .3s, transform .3s;
}
.cb-nudge.hide { opacity: 0; transform: translateX(10px); pointer-events: none; }

.cb-panel {
  position: fixed; right: 20px; bottom: 92px; z-index: 210;
  width: 366px; max-width: calc(100vw - 32px); height: 540px; max-height: calc(100vh - 130px);
  background: #24272d; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.55);
  display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line);
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none; transition: opacity .2s, transform .2s;
}
.cb-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.cb-header { background: var(--bg-navy-grad); color: #fff; padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.cb-header .cb-av { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; flex: 0 0 auto; }
.cb-header .cb-av svg { width: 22px; height: 22px; fill: #fff; }
.cb-header h4 { color: #fff; font-size: 1rem; margin: 0; line-height: 1.2; }
.cb-header p { font-size: .76rem; color: #bcd3ec; margin: 2px 0 0; display: flex; align-items: center; gap: 6px; }
.cb-header p::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #3ad07a; display: inline-block; }
.cb-body { flex: 1; overflow-y: auto; padding: 18px; background: #1c1e23; display: flex; flex-direction: column; gap: 11px; }
.cb-msg { max-width: 84%; padding: 10px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.5; word-wrap: break-word; }
.cb-msg.bot { background: #2a2e35; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; }
.cb-msg.user { background: var(--blue); color: #10141a; border-bottom-right-radius: 4px; align-self: flex-end; }
.cb-msg a { color: #8ec0ff; font-weight: 600; text-decoration: underline; }
.cb-msg.user a { color: #10141a; }
.cb-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 12px; background: #1c1e23; }
.cb-chip { background: #2a2e35; border: 1.5px solid var(--line); color: var(--ink); border-radius: 20px; padding: 7px 13px; font-size: .82rem; font-family: var(--font-head); font-weight: 500; cursor: pointer; transition: .15s; }
.cb-chip:hover { border-color: var(--blue); color: var(--blue); }
.cb-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #24272d; }
.cb-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 22px; padding: 10px 15px; font-size: .9rem; font-family: var(--font-body); background: #2b2f36; color: var(--head); }
.cb-input input::placeholder { color: #7f858e; }
.cb-input input:focus { outline: none; border-color: var(--blue); }
.cb-input button { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--red); cursor: pointer; display: grid; place-items: center; flex: 0 0 auto; }
.cb-input button:hover { background: var(--red-dark); }
.cb-input button svg { width: 18px; height: 18px; fill: #fff; }
.cb-typing { align-self: flex-start; background: #2a2e35; border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; display: flex; gap: 4px; }
.cb-typing span { width: 7px; height: 7px; border-radius: 50%; background: #6b7079; animation: cbblink 1s infinite; }
.cb-typing span:nth-child(2) { animation-delay: .2s; }
.cb-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cbblink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
@media (max-width: 480px) {
  .cb-panel { right: 10px; left: 10px; width: auto; bottom: 84px; height: 72vh; }
  .cb-launcher { right: 14px; bottom: 14px; }
  .cb-nudge { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dest-grid, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .audience { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__card { max-width: 480px; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; background: #ffffff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 8px 22px 22px; border-bottom: 1px solid #e6e9ef;
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .3s; z-index: 90;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid #e6e9ef; }
  .nav__links a { display: block; padding: 14px 4px; }
  .nav__toggle { display: block; }
  .nav__phone { display: none; }
  .brand__logo { height: 38px; }
  .wa-float { width: 50px; height: 50px; left: 16px; bottom: 16px; }
  .grid-3, .grid-4, .grid-2, .dest-grid, .steps, .stats, .field--row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-band, .form-card { padding: 30px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
}
