/*
Theme Name: Last Look Car Offer
Theme URI: https://lastlookcaroffer.com
Author: Innovation With Pixels
Description: Premium, SEO-optimized landing page theme for LastLookCarOffer.com — a nationwide private-party car acquisition brand based in Albany, NY. Deep navy & gold, light scheme.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: lastlook
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --navy-950: #061325;
  --navy-900: #0A2540;   /* primary deep blue */
  --navy-800: #0E2E50;
  --navy-700: #143A66;
  --navy-600: #1C4E8A;
  --blue-400: #3B7BD6;   /* secondary blue (links/icons) */
  --gold-700: #B7841B;
  --gold-600: #CE981F;
  --gold: #E3A92C;       /* premium accent */
  --gold-300: #F2C969;
  --gold-100: #FBE8C4;

  --cream: #F6F8FC;      /* page background (cool light) */
  --cream-2: #EEF2F8;
  --surface: #FFFFFF;
  --line: #E4EAF2;
  --line-2: #D6DEEA;

  --ink: #0A2540;        /* headings */
  --body: #46566B;       /* body text */
  --muted: #7C8AA0;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(10, 37, 64, 0.06);
  --shadow: 0 18px 50px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 34px 90px rgba(10, 37, 64, 0.22);
  --ring: 0 0 0 4px rgba(227, 169, 44, 0.22);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--head); color: var(--ink); line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 .5em; font-weight: 700; text-wrap: balance; }
p, .lead { text-wrap: pretty; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.3rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.9vw, 3rem); font-weight: 800; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
strong { color: var(--ink); font-weight: 700; }
::selection { background: var(--gold); color: var(--navy-900); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 80px 0; }
@media (max-width: 760px) { .section { padding: 64px 0; } .section--tight { padding: 56px 0; } }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-700); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.lead { font-size: 1.16rem; color: var(--body); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }
.grad-text { color: var(--gold-600); }
.hl { position: relative; white-space: nowrap; }
.hl::after { content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .34em; background: var(--gold); opacity: .28; border-radius: 3px; z-index: -1; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  padding: 16px 30px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, background .25s, color .25s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold); color: var(--navy-900); box-shadow: 0 12px 30px rgba(227,169,44,.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(227,169,44,.45); background: var(--gold-300); }
.btn--navy { background: var(--navy-900); color: #fff; }
.btn--navy:hover { transform: translateY(-3px); background: var(--navy-700); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--navy-900); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--lg { padding: 19px 40px; font-size: 1.07rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 248, 252, .82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 40px; width: auto; display: block; }
.brand__logo--light { filter: brightness(0) invert(1); }
.site-footer .brand__logo { height: 34px; }
@media (max-width: 520px) { .brand__logo { height: 32px; } }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 42px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: var(--gold); display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(227,169,44,.35), var(--shadow-sm);
}
.brand__name { font-family: var(--head); font-weight: 800; font-size: 1.16rem; color: var(--navy-900); letter-spacing: -.02em; line-height: 1; }
.brand__name small { display: block; font-family: var(--sans); font-weight: 600; font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-700); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-weight: 600; font-size: .96rem; color: var(--navy-800); position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.header-cta { padding: 12px 24px; font-size: .92rem; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy-900); margin: 5px auto; border-radius: 2px; transition: .3s; }
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open { display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; background: var(--surface); padding: 18px 26px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; padding: 66px 0 78px; overflow: hidden;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(100deg, rgba(6,19,37,.95) 0%, rgba(7,24,44,.86) 36%, rgba(10,37,64,.58) 66%, rgba(10,37,64,.42) 100%),
    var(--hero-bg, none);
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat;
}
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 82% 8%, rgba(227,169,44,.14) 0%, transparent 58%); pointer-events: none; }
.hero::after { content: ""; position: absolute; left: -10%; bottom: -40%; width: 60%; height: 120%; background: radial-gradient(circle, rgba(59,123,214,.18) 0%, transparent 65%); pointer-events: none; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero__copy { color: #fff; max-width: 560px; }
.hero__pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 18px; }
.hero__pill b { color: var(--gold-300); font-weight: 700; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.4vw, 3.5rem); margin-bottom: .35em; }
.hero h1 .hl::after { background: var(--gold); opacity: .9; height: .14em; bottom: .02em; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 520px; margin: 0 0 26px; }
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.hero__stars { color: var(--gold-300); font-size: 1.05rem; letter-spacing: 2px; }
.hero__trust span { color: rgba(255,255,255,.72); font-size: .9rem; }
.hero__trust b { color: #fff; }

/* hero vehicle dummy */
.hero__visual { position: relative; }
.hero__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.hero__badge { position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #1ec27e; box-shadow: 0 0 0 4px rgba(30,194,126,.2); }
.hero__badge b { color: var(--navy-900); font-family: var(--head); }
.hero__badge small { display: block; color: var(--muted); font-size: .76rem; }

/* form mount on the right of banner */
.hero--form .hero__grid { grid-template-columns: 1.05fr .95fr; }
.form-mount { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 12px; position: relative; }
.form-mount::before { content: "Get an offer in minutes"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-900); font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px rgba(227,169,44,.4); }
.form-mount__inner { padding: 22px 18px 14px; }
@media (max-width: 980px) {
  .hero__grid, .hero--form .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
}

/* =========================================================
   MARQUEE / TRUST STRIP
   ========================================================= */
.strip { background: var(--navy-900); color: #fff; overflow: hidden; }
.strip__track { display: flex; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.strip__track span { display: inline-flex; align-items: center; gap: 12px; padding: 18px 30px; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.86); }
.strip__track span b { color: var(--gold-300); }
.strip__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   SECTION HEAD
   ========================================================= */
.sec-head { max-width: 680px; }
.center .sec-head,
.center.sec-head { margin-left: auto; margin-right: auto; }

/* =========================================================
   STEPS (How it works)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; transition: transform .35s var(--ease), box-shadow .35s; }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.step__n { position: absolute; top: 24px; right: 28px; font-family: var(--head); font-weight: 800; font-size: 2.4rem; color: var(--cream-2); line-height: 1; }
.step__icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(145deg, var(--navy-800), var(--navy-900)); color: var(--gold-300); display: grid; place-items: center; margin: 0 auto 22px; box-shadow: var(--shadow-sm); }
.step__icon svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.28rem; }
.step p { margin: 0; }
.steps__line { display: none; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   FEATURES (Why choose us)
   ========================================================= */
.why { background: var(--navy-900); color: #fff; border-radius: 0; }
.why .eyebrow { color: var(--gold-300); }
.why h2 { color: #fff; }
.why .lead { color: rgba(255,255,255,.78); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.feature { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 30px 26px; transition: transform .35s var(--ease), background .3s; }
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gold); color: var(--navy-900); display: grid; place-items: center; margin-bottom: 18px; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: rgba(255,255,255,.74); margin: 0; font-size: .98rem; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* =========================================================
   STORY (Albany)
   ========================================================= */
.story__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
.story__media { position: relative; }
.story__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.story__chip { position: absolute; right: -18px; bottom: 28px; background: var(--surface); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow); text-align: center; border: 1px solid var(--line); }
.story__chip b { font-family: var(--head); font-size: 1.9rem; color: var(--navy-900); display: block; }
.story__chip span { font-size: .8rem; color: var(--muted); }
.callout { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 12px; padding: 22px 24px; margin: 24px 0; }
.callout p { margin: 0; font-style: italic; color: var(--navy-800); font-size: 1.05rem; }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; gap: 40px; } .story__chip { right: 18px; } }

/* =========================================================
   SERVE (who we serve)
   ========================================================= */
.serve { background: linear-gradient(165deg, var(--navy-900), var(--navy-800)); color: #fff; }
.serve .eyebrow { color: var(--gold-300); }
.serve h2 { color: #fff; }
.serve__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.serve__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 34px 30px; }
.serve__card h3 { color: #fff; display: flex; align-items: center; gap: 14px; font-size: 1.22rem; }
.serve__card h3 .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--gold); color: var(--navy-900); display: grid; place-items: center; flex: 0 0 48px; box-shadow: 0 6px 16px rgba(227,169,44,.28); }
.serve__card h3 .ic svg { width: 22px; height: 22px; }
.serve__card p { color: rgba(255,255,255,.76); margin: 14px 0 0; }
@media (max-width: 760px) { .serve__cards { grid-template-columns: 1fr; } }

/* =========================================================
   LOGISTICS
   ========================================================= */
.logi { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
.logi__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; transition: transform .35s var(--ease), box-shadow .35s; }
.logi__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.logi__card .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--cream-2); color: var(--navy-900); display: grid; place-items: center; margin-bottom: 18px; }
.logi__card .ic svg { width: 26px; height: 26px; }
.logi__banner { margin-top: 22px; background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); border-radius: var(--radius); padding: 28px 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: #fff; }
.logi__banner b { font-family: var(--head); }
.logi__banner .tags { display: flex; gap: 12px; flex-wrap: wrap; }
.logi__banner .tag { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); padding: 9px 16px; border-radius: 999px; font-size: .86rem; font-weight: 600; }
@media (max-width: 760px) { .logi { grid-template-columns: 1fr; } }

/* =========================================================
   PROCESS (numbered cards)
   ========================================================= */
.proc__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: stretch; }
.proc__media { align-self: stretch; }
.proc__media .frame { height: 100%; }
.proc__media .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proc__list { display: grid; gap: 16px; margin-top: 40px; }
.proc__item { display: flex; gap: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; transition: transform .3s var(--ease), box-shadow .3s; }
.proc__item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.proc__num { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: var(--navy-900); color: var(--gold-300); font-family: var(--head); font-weight: 800; display: grid; place-items: center; }
.proc__item h3 { font-size: 1.12rem; margin-bottom: 4px; }
.proc__item p { margin: 0; font-size: .96rem; }
@media (max-width: 900px) { .proc__grid { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================
   REVIEWS
   ========================================================= */
/* Google rating summary card (award-winning) */
.gsum { display: flex; align-items: center; gap: 26px; width: max-content; max-width: 100%; margin: 38px auto 52px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 55px rgba(10,37,64,.12); padding: 22px 34px; position: relative; overflow: hidden; }
.gsum::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #4285F4, #EA4335 30%, #FBBC05 55%, #34A853 80%); }
.gsum__g { display: grid; place-items: center; }
.gsum__g .g-logo { width: 50px; height: 50px; }
.gsum__divider { width: 1px; align-self: stretch; background: var(--line); }
.gsum__meta { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.gsum__label { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.gsum__line { display: flex; align-items: center; gap: 12px; }
.gsum__line strong { font-family: var(--head); font-size: 2.1rem; color: var(--ink); line-height: 1; }
.gsum__stars { display: inline-flex; gap: 2px; color: var(--gold); }
.gsum__stars .licon { width: 21px; height: 21px; }
.gsum__count { font-size: .86rem; color: var(--muted); }
.gsum__count strong { color: var(--ink); font-weight: 700; }
@media (max-width: 520px) {
  .gsum { flex-direction: column; gap: 16px; text-align: center; padding: 26px 24px; }
  .gsum__divider { width: 60%; height: 1px; align-self: center; }
  .gsum__meta { align-items: center; text-align: center; }
}

/* Google-style review cards (masonry) */
.greviews { columns: 3; column-gap: 22px; }
.grev { break-inside: avoid; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 26px; margin: 0 0 22px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.grev:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.grev__top { display: flex; align-items: center; gap: 12px; }
.grev__av { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 700; font-size: .98rem; }
.grev__id { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.grev__name { font-weight: 700; color: var(--ink); font-size: .98rem; display: inline-flex; align-items: center; gap: 5px; }
.grev__verified { width: 15px; height: 15px; color: #4285F4; flex: none; }
.grev__date { font-size: .8rem; color: var(--muted); }
.grev__g .g-logo { width: 22px; height: 22px; }
.grev__stars { display: inline-flex; gap: 2px; color: var(--gold); margin: 16px 0 10px; }
.grev__stars .licon { width: 18px; height: 18px; }
.grev__text { color: var(--navy-800); font-size: .98rem; line-height: 1.6; margin: 0; }

@media (max-width: 980px) { .greviews { columns: 2; } }
@media (max-width: 620px) {
  .greviews { columns: 1; }
  .gsum { flex-wrap: wrap; gap: 16px; }
  .gsum__cta { margin-left: 0; }
}

/* Lucide icon defaults (inherit color, sized by their container rules) */
.licon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex: none; }
.licon.is-fill { fill: currentColor; stroke: none; }
.g-logo { display: inline-block; vertical-align: middle; }

/* =========================================================
   GALLERY (recently purchased)
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.gcard { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gcard:hover img { transform: scale(1.06); }
.gcard__tag { position: absolute; top: 14px; left: 14px; background: rgba(10,37,64,.85); color: #fff; backdrop-filter: blur(6px); font-size: .78rem; font-weight: 600; padding: 7px 13px; border-radius: 999px; }
.gcard__price { position: absolute; bottom: 14px; right: 14px; background: var(--gold); color: var(--navy-900); font-family: var(--head); font-weight: 800; font-size: .92rem; padding: 7px 14px; border-radius: 999px; }
@media (max-width: 860px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* =========================================================
   CTA BAND
   ========================================================= */
.band { position: relative; background: linear-gradient(125deg, var(--navy-900), var(--navy-700)); border-radius: var(--radius-lg); padding: 70px 50px; text-align: center; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 10%, rgba(227,169,44,.22), transparent 60%); }
.band > * { position: relative; z-index: 1; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto 30px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin: 46px auto 0; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; transition: box-shadow .3s, border-color .3s; }
.faq__item.open { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 26px; font-family: var(--head); font-size: 1.08rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq__q .pm { flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--cream-2); color: var(--navy-900); display: grid; place-items: center; font-size: 1.3rem; line-height: 1; transition: .3s var(--ease); }
.faq__item.open .pm { background: var(--gold); transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 26px 24px; margin: 0; color: var(--body); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; background: var(--navy-950); color: rgba(255,255,255,.7); overflow: hidden; }
/* hairline gold accent at the very top */
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(227,169,44,.7), transparent); }
/* soft glow for depth */
.site-footer::after { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 240px; background: radial-gradient(circle, rgba(227,169,44,.10), transparent 70%); pointer-events: none; }
.site-footer .container { position: relative; z-index: 1; }

.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 40px 0 30px; flex-wrap: wrap; }

/* slim logo */
.site-footer .brand__mark { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; font-size: .92rem; }
.site-footer .brand__name { color: #fff; font-size: 1.02rem; }
.site-footer .brand__name small { font-size: .56rem; margin-top: 3px; }

.footer__contact-inline { display: flex; align-items: center; gap: 14px 28px; flex-wrap: wrap; }
.footer__contact-inline a { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.82); font-weight: 600; font-size: .98rem; transition: color .2s, transform .2s; }
.footer__contact-inline a:hover { color: var(--gold-300); transform: translateY(-1px); }
.footer__contact-inline svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 18px; }

.footer__bottom { padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .84rem; color: rgba(255,255,255,.5); }

@media (max-width: 620px) {
  .footer__row { flex-direction: column; align-items: flex-start; gap: 20px; padding: 34px 0 24px; }
  .footer__contact-inline { gap: 12px 22px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
/* Content is visible by default; animation only enhances when JS is present
   (the .js class is set on <html> in the head). This guarantees nothing is
   ever stuck invisible if JS is slow or disabled. */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.ty { min-height: 100vh; display: grid; place-items: center; padding: 60px 24px; background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%); position: relative; overflow: hidden; }
.ty::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 70% 0%, rgba(227,169,44,.2), transparent 60%); }
.ty::after { content: ""; position: absolute; left: -10%; bottom: -30%; width: 50%; height: 100%; background: radial-gradient(circle, rgba(59,123,214,.2), transparent 65%); }
.ty__card { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); padding: 0 26px; text-align: center; color: #fff; }
.ty__badge { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 28px; background: var(--gold); color: var(--navy-900); display: grid; place-items: center; box-shadow: 0 0 0 12px rgba(227,169,44,.16), 0 20px 50px rgba(0,0,0,.3); animation: pop .6s var(--ease); }
.ty__badge svg { width: 46px; height: 46px; }
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ty h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.ty h1 .grad-text { color: var(--gold-300); }
.ty__sub { color: rgba(255,255,255,.82); font-size: 1.18rem; margin: 14px auto 36px; max-width: 520px; }
.ty__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0 auto 40px; text-align: left; }
.ty__step { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 22px 20px; }
.ty__step .n { width: 34px; height: 34px; border-radius: 9px; background: var(--gold); color: var(--navy-900); font-family: var(--head); font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.ty__step h4 { color: #fff; font-family: var(--head); font-size: 1rem; margin: 0 0 6px; }
.ty__step p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.ty__contact { color: rgba(255,255,255,.66); font-size: .95rem; margin-top: 28px; }
.ty__contact a { color: var(--gold-300); font-weight: 600; }
@media (max-width: 640px) { .ty__steps { grid-template-columns: 1fr; } }

/* utility */
.mt-0 { margin-top: 0; }
.nowrap { white-space: nowrap; }
