/* ============================================================
   Speedy Credit Solutions — Navy & Gold redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500;1,600;1,700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  /* Navy ground */
  --navy:        #1f3559;
  --navy-2:      #15263f;   /* deep */
  --navy-3:      #0f1c30;   /* deepest */
  --navy-card:   #25416b;   /* raised navy surface */
  --navy-line:   rgba(255,255,255,0.10);

  /* Gold */
  --gold:        #c8a868;
  --gold-bright: #ddc187;
  --gold-deep:   #b18f49;

  /* Slate / muted */
  --slate:       #9fb0cb;   /* labels on navy */
  --slate-dim:   #7d8eaa;

  /* Light surfaces */
  --paper:       #f5f6f8;
  --paper-2:     #eef0f4;
  --white:       #ffffff;

  /* Ink (text on light) */
  --ink:         #233044;
  --ink-soft:    #51607a;

  --serif: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --sans:  'Plus Jakarta Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --wordmark: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(15,28,48,0.08), 0 1px 2px rgba(15,28,48,0.06);
  --shadow-md: 0 10px 30px rgba(15,28,48,0.10), 0 2px 8px rgba(15,28,48,0.06);
  --shadow-lg: 0 30px 70px rgba(15,28,48,0.22);
  --shadow-gold: 0 14px 34px rgba(177,143,73,0.40);

  --maxw: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 700; line-height: 1.08; }

p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.gold { color: var(--gold); }

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow.on-navy { color: var(--gold); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  letter-spacing: 0.01em;
  padding: 16px 30px; border-radius: 999px;
  cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy-2);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(177,143,73,0.52); }

.btn-outline-light {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.30);
}
.btn-outline-light:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold-bright); }

.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: 0 12px 28px rgba(31,53,89,0.30);
}
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-2); }

.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--navy-2);
  color: var(--slate);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--navy-line);
}
.announce .wrap {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  height: 42px; text-align: center;
}
.announce b { color: var(--gold); font-weight: 700; }
.announce .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--slate-dim); }
.announce .stars { color: var(--gold); letter-spacing: 1px; }
.announce .stars .half-star {
  position: relative; display: inline-block; color: var(--slate-dim);
}
.announce .stars .half-star::before {
  content: '★'; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: var(--gold);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(21,38,63,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--navy-line);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 76px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark-logo { width: 46px; height: 46px; object-fit: contain; flex: none; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
  display: grid; place-items: center;
  color: var(--navy-2); font-family: var(--serif); font-weight: 700; font-size: 22px;
  box-shadow: 0 6px 16px rgba(177,143,73,0.4);
}
.brand .name { font-family: var(--wordmark); font-size: 15.7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); line-height: 1.05; }
.brand .name span { color: var(--gold); font-weight: 700; }
.site-header .brand .name, .site-header .brand .name span { color: var(--white); }
.brand .name small { display:block; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate-dim); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: center; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--slate);
  transition: color .18s ease; position: relative; padding: 6px 0;
}
.nav a:hover { color: var(--white); }
.nav a::after {
  content:''; position:absolute; left:0; right:100%; bottom:0; height:2px;
  background: var(--gold); transition: right .25s ease;
}
.nav a:hover::after { right: 0; }
.nav a.active { color: var(--white); }
.nav a.active::after { right: 0; }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-cta .login { font-size: 15px; font-weight: 600; color: var(--white); }
.header-cta .login:hover { color: var(--gold-bright); }

/* ============================================================
   Hero — shared
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(200,168,104,0.16), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(900px 500px at 70% 20%, #000 0%, transparent 70%);
          mask-image: radial-gradient(900px 500px at 70% 20%, #000 0%, transparent 70%);
  opacity: .6; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero h1 { font-size: clamp(40px, 5.4vw, 70px); letter-spacing: -0.015em; }
.hero h1 .em { color: var(--gold); font-style: italic; position: relative; white-space: nowrap; }
.hero .lede { font-family: var(--sans); font-size: 19px; line-height: 1.6; color: var(--slate); max-width: 30ch; }

.trustline { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--slate); font-size: 14.5px; font-weight: 500; }
.trustline .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.trustline .stars .part-star { position: relative; display: inline-block; color: var(--slate-dim); }
.trustline .stars .part-star::before { content: '★'; position: absolute; left: 0; top: 0; width: 65%; overflow: hidden; color: var(--gold); }
.trustline b { color: var(--white); }

.hero-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  width: 100%; height: 100%; object-fit: cover;
}

/* Hero A — split */
.heroA .wrap { display: grid; grid-template-columns: 1fr 1.12fr; gap: 56px; align-items: center; padding-top: 88px; padding-bottom: 96px; }
.heroA .copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.heroA .actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.heroA .media { position: relative; }
.heroA .media .badge {
  position: absolute; left: -26px; bottom: 28px;
  background: var(--white); color: var(--ink); border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
}
.heroA .media .badge .big { font-family: var(--sans); font-weight: 800; font-size: 30px; color: var(--navy); line-height: 1; }
.heroA .media .badge .lbl { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.3; max-width: 12ch; }
.heroA .media .badge .div { width:1px; height: 38px; background: #e3e7ee; }

/* Hero B — centered editorial */
.heroB .wrap { padding-top: 96px; padding-bottom: 104px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.heroB h1 { font-size: clamp(44px, 6.6vw, 88px); max-width: 16ch; }
.heroB .lede { text-align: center; max-width: 56ch; font-size: 20px; }
.heroB .actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.heroB .underline-photo {
  margin-top: 18px; width: min(960px, 100%); aspect-ratio: 16/6.2;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.heroB .underline-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Hero C — score card / energetic */
.heroC .wrap { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 92px; }
.heroC .copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.heroC h1 .em-pop { font-family: var(--wordmark); font-style: normal; font-weight: 800; letter-spacing: -0.015em; font-size: 0.92em; }
.heroC .actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.heroC .pillrow { display: flex; gap: 10px; flex-wrap: wrap; }
.heroC .pill { font-size: 13px; font-weight: 600; color: var(--slate); padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--navy-line); }
.heroC .pill b { color: var(--gold); }

.scorecard {
  background: linear-gradient(180deg, var(--navy-card), #1c3358);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px; padding: 30px; box-shadow: var(--shadow-lg);
  position: relative;
}
.scorecard .sc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.scorecard .sc-top .t { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
.scorecard .sc-top .tag { font-size: 12.5px; font-weight: 700; color: var(--navy-2); background: var(--gold); padding: 5px 11px; border-radius: 999px; }
.scorecard .sc-numbers { display: flex; align-items: flex-end; gap: 16px; }
.scorecard .sc-from { font-family: var(--sans); font-size: 40px; font-weight: 800; color: #b25159; text-decoration: line-through; text-decoration-thickness: 3px; }
.scorecard .sc-arrow { color: #2bbd9e; font-size: 26px; padding-bottom: 6px; }
.scorecard .sc-to { font-family: var(--sans); font-size: 72px; font-weight: 800; line-height: .9; background: linear-gradient(180deg, #3ee690, #1fae7b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scorecard .sc-delta { margin-left: auto; text-align: right; }
.scorecard .sc-delta .up { color: #2ec27e; font-weight: 800; font-size: 20px; }
.scorecard .sc-delta .sub { color: var(--slate); font-size: 12px; }
.scorecard .track { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.10); margin: 24px 0 8px; overflow: hidden; }
.scorecard .track i { display: block; height: 100%; width: 78%; border-radius: 999px; background: linear-gradient(90deg, #1fae7b, #3ee690); }
.scorecard .scale { display: flex; justify-content: space-between; color: var(--slate-dim); font-size: 11.5px; font-weight: 600; }
.scorecard .sc-foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--navy-line); display: flex; align-items: center; gap: 12px; color: var(--slate); font-size: 13px; }
.scorecard .sc-foot .av { width: 34px; height: 34px; border-radius: 50%; background: rgba(46,194,126,0.16); border: 1px solid rgba(46,194,126,0.4); color: #3ee690; display: grid; place-items: center; flex:none; }
.scorecard .sc-foot .av svg { width: 18px; height: 18px; }

/* hero switching */
.hero-variant { display: none; }
.hero-variant.active { display: block; }

/* ============================================================
   Hero switcher (design-review control)
   ============================================================ */
.switcher {
  position: fixed; z-index: 90; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: rgba(15,28,48,0.86); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 999px;
  padding: 7px 8px 7px 16px; box-shadow: var(--shadow-lg);
}
.switcher .lab { color: var(--slate); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-right: 6px; }
.switcher button {
  font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--slate);
  background: transparent; border: 0; border-radius: 999px; padding: 9px 16px; cursor: pointer;
  transition: all .18s ease;
}
.switcher button:hover { color: var(--white); }
.switcher button.on { background: var(--gold); color: var(--navy-2); }

/* ============================================================
   Stats band — SIGNATURE element
   ============================================================ */
.stats {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
}
.stats::after { content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background: var(--gold); opacity:.35; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 32px; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content:''; position:absolute; left:-12px; top:14%; height:72%; width:1px; background: var(--navy-line); }
.stat .num { font-family: var(--sans); font-weight: 800; font-size: clamp(40px, 4.4vw, 58px); color: var(--gold); line-height: 1; letter-spacing: -0.01em; }
.stat .num .star { color: var(--gold); font-size: 0.66em; vertical-align: 0.06em; }
.stat .lbl { margin-top: 12px; font-size: 14.5px; font-weight: 500; color: var(--slate); letter-spacing: 0.02em; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section.paper { background: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 3.6vw, 46px); color: var(--ink); letter-spacing: -0.01em; }
.section-head h2 .em { color: var(--gold-deep); font-style: italic; }
.section-head p { margin-top: 18px; font-size: 18px; line-height: 1.6; color: var(--ink-soft); }

/* ---- Split (text + image) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.flip .split-media { order: -1; }
.split-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.split-copy h2 { font-size: clamp(30px, 3.4vw, 44px); color: var(--ink); }
.split-copy h2 .em { color: var(--gold-deep); font-style: italic; }
.split-copy p { font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.split-copy h2 .em u { text-decoration-color: var(--gold); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.split-copy h2 .em-bold { font-weight: 800; }
.split-media .ph, .split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover; }
.split-media .stat-chip {
  position: absolute; right: -20px; top: 28px;
  background: var(--navy); color: var(--white); border-radius: 14px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.split-media .stat-chip .b { font-family: var(--sans); font-weight: 800; font-size: 34px; color: var(--gold); line-height: 1; }
.split-media .stat-chip .s { font-size: 12px; color: var(--slate); margin-top: 6px; max-width: 12ch; }

/* image placeholder */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(31,53,89,0.05) 0 14px, rgba(31,53,89,0.09) 14px 28px),
    var(--paper-2);
  border: 1px dashed rgba(31,53,89,0.25);
  display: grid; place-items: center; color: var(--ink-soft);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; letter-spacing: .04em;
  min-height: 320px;
}

/* ============================================================
   Awards strip
   ============================================================ */
.awards { background: var(--white); border-top: 1px solid var(--paper-2); border-bottom: 1px solid var(--paper-2); }
.awards .wrap { padding: 40px 32px; max-width: 1360px; }
.awards .lab { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 28px; }
.awards .row { display: flex; align-items: stretch; justify-content: center; gap: 16px; flex-wrap: nowrap; }
.awards .badge {
  flex: 1 1 0; min-width: 0; height: auto; padding: 10px; border-radius: 14px;
  display: grid; place-items: center; background: transparent;
}
.awards .badge img { max-height: 170px; max-width: 100%; width: auto; filter: saturate(1); }

/* Mobile: 2-column grid of framed badge cards instead of a cramped single row */
@media (max-width: 700px) {
  .awards .wrap { padding: 36px 20px; }
  .awards .row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch;
  }
  .awards .badge {
    flex: none; min-width: 0; padding: 24px; border-radius: 16px;
    background: var(--paper); border: 1px solid var(--paper-2);
    box-shadow: 0 4px 14px rgba(15,28,48,0.05);
  }
  .awards .badge img { max-height: 200px; }
}
@media (max-width: 380px) {
  .awards .row { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .awards .badge img { max-height: 220px; }
}

/* ============================================================
   Feature cards (Why Choose Us)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid #eef0f4;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  transition: transform .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(200,168,104,0.18), rgba(200,168,104,0.06));
  color: var(--gold-deep); border: 1px solid rgba(200,168,104,0.35);
}
.card h3 { font-size: 23px; color: var(--ink); }
.card p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.card .num-tag { font-family: var(--serif); font-weight: 700; font-size: 15px; color: var(--gold-deep); }

/* ============================================================
   Steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; background: var(--white); border: 1px solid #e9ecf2; border-radius: var(--radius);
  padding: 34px 26px 30px; display: flex; flex-direction: column; gap: 12px;
}
.step .n {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 20px;
  margin-bottom: 6px;
}
.step h3 { font-size: 20px; color: var(--ink); }
.step p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.step:not(:last-child)::after {
  content:'→'; position: absolute; right: -16px; top: 46px; color: var(--gold); font-size: 20px; z-index: 2;
}

/* ============================================================
   We handle it all — chips
   ============================================================ */
.handle { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); }
.handle .section-head h2 { color: var(--white); }
.handle .section-head h2 .em { color: var(--gold); }
.handle .section-head p { color: var(--slate); }
.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--navy-line);
  border-radius: 12px; padding: 16px 22px; font-size: 17px; font-weight: 600; color: var(--white);
  transition: all .2s ease;
}
.chip:hover { background: rgba(200,168,104,0.12); border-color: rgba(200,168,104,0.5); }
.chip .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--navy-2); display: grid; place-items: center; font-size: 13px; font-weight: 800; flex: none; }

/* ============================================================
   Testimonials
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ---- Reviews marquee (compact, auto-scrolling) ---- */
.review-marquee { position: relative; overflow: hidden; padding: 6px 0; }
.review-marquee::before, .review-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none;
}
.review-marquee.on-paper::before { left: 0; background: linear-gradient(90deg, var(--paper), rgba(245,246,248,0)); }
.review-marquee.on-paper::after { right: 0; background: linear-gradient(270deg, var(--paper), rgba(245,246,248,0)); }
.review-marquee.on-white::before { left: 0; background: linear-gradient(90deg, var(--white), rgba(255,255,255,0)); }
.review-marquee.on-white::after { right: 0; background: linear-gradient(270deg, var(--white), rgba(255,255,255,0)); }
.marquee-track { display: flex; gap: 22px; width: max-content; will-change: transform; }
.marquee-row + .marquee-row { margin-top: 22px; }
.marquee-row .marquee-track { animation: marquee-x var(--dur, 60s) linear infinite; }
.marquee-row.rev .marquee-track { animation-direction: reverse; }
.review-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-row .marquee-track { animation: none; } }

.r-card {
  flex: 0 0 370px; width: 370px; background: var(--white); border: 1px solid #eef0f4;
  border-radius: 14px; box-shadow: var(--shadow-sm); padding: 24px 26px;
  display: flex; flex-direction: column; gap: 13px;
}
.r-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.r-card p { font-size: 15px; line-height: 1.58; color: var(--ink); font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.r-card .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.r-card .who .av { width: 36px; height: 36px; border-radius: 50%; flex: none; overflow: hidden;
  background: linear-gradient(150deg, var(--navy), var(--navy-card)); color: var(--gold);
  display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.r-card .who .av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.r-card .who .nm { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.r-card .who .vf { font-size: 12px; color: var(--gold-deep); font-weight: 600; }
@media (max-width: 560px) { .r-card { flex-basis: 300px; width: 300px; } }
.quote {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid #eef0f4; display: flex; flex-direction: column; gap: 20px;
}
.quote .stars { color: var(--gold); letter-spacing: 2px; font-size: 18px; }
.quote .mark { font-family: var(--serif); font-size: 60px; line-height: 0; color: var(--gold); height: 22px; }
.quote p { font-size: 16.5px; line-height: 1.65; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg,var(--navy),var(--navy-card)); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; overflow: hidden; flex: none; }
.quote .who .av:has(img) { background: #fff; }
.quote .who .av img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }
.quote .who .nm { font-weight: 700; font-size: 15px; color: var(--ink); }
.quote .who .vf { font-size: 12.5px; color: var(--gold-deep); font-weight: 600; }

/* ============================================================
   Trustpilot Strip
   ============================================================ */

/* ============================================================
   LEAD CAPTURE SECTION
   ============================================================ */
.lead-capture-section { background: var(--navy); }
.lc-inner { display: flex; gap: 64px; align-items: flex-start; }
.lc-copy { flex: 1 1 380px; }
.lc-copy .eyebrow { color: var(--gold); }
.lc-copy h2 { color: var(--white); margin: 0 0 16px; }
.lc-copy p { color: var(--slate); font-size: 17px; line-height: 1.6; margin-bottom: 24px; }
.lc-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lc-perks li { color: rgba(255,255,255,0.78); font-size: 15px; display: flex; align-items: center; gap: 10px; }
.lc-perks .tick { color: var(--gold); font-weight: 700; font-size: 17px; }
.lc-form {
  flex: 1 1 380px; background: #fff; border-radius: 16px;
  padding: 40px 36px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
}
.lc-field { display: flex; flex-direction: column; gap: 6px; }
.lc-field label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; }
.lc-field input {
  padding: 13px 16px; border: 1.5px solid rgba(11,27,50,.18); border-radius: 8px;
  font-family: var(--sans); font-size: 16px; color: var(--navy);
  outline: none; transition: border-color .18s;
}
.lc-field input:focus { border-color: var(--gold); }
.lc-field input::placeholder { color: rgba(11,27,50,.35); }
.lc-submit { width: 100%; justify-content: center; font-size: 17px; padding: 17px 24px; }
.lc-fine { font-size: 12px; color: rgba(11,27,50,.4); text-align: center; margin: 0; }
@media (max-width: 860px) {
  .lc-inner { flex-direction: column; gap: 36px; align-items: center; }
  .lc-copy { text-align: center; width: 100%; }
  .lc-perks { align-items: center; }
  .lc-form { padding: 30px 24px; width: 100%; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(11,27,50,.1); }
.faq-item:first-child { border-top: 1px solid rgba(11,27,50,.1); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; gap: 16px;
  font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--navy);
  text-align: left; line-height: 1.3; transition: color .15s;
}
.faq-q:hover { color: var(--navy-mid); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-family: var(--sans); font-weight: 300;
  transition: background .18s, transform .22s; line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 16px; line-height: 1.7; color: var(--slate);
  transition: max-height .3s ease, padding .3s ease; padding: 0 4px;
}
.faq-a.open { max-height: 300px; padding: 0 4px 22px; }
.faq-a .inline-link { color: var(--navy); font-weight: 600; text-decoration: underline; }

.tp-section { background: #fff; }

/* Header */
.tp-head { text-align: center; margin-bottom: 36px; }
.tp-heading { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: #4a4a4a; margin: 0 0 14px; letter-spacing: -0.5px; }
.tp-logo-large { display: inline-flex; align-items: center; gap: 8px; }
.tp-logo-word { font-size: 26px; font-weight: 600; color: #191919; }

/* Body: panel + cards */
.tp-body { display: flex; align-items: flex-start; gap: 32px; }

/* Left summary panel */
.tp-panel { flex: 0 0 180px; text-align: center; padding-right: 24px; border-right: 1px solid #e8eaed; }
.tp-ex-label { font-size: 26px; font-weight: 700; color: #191919; margin-bottom: 8px; }
.tp-ex-stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 10px; }
.tp-star-box { background: #00b67a; color: #fff; font-size: 14px; padding: 3px 5px; line-height: 1; display: inline-block; }
.tp-star-half { background: #dcdce6; }
.tp-based { font-size: 13px; color: #333; margin-bottom: 12px; }
.tp-based a { color: #191919; font-weight: 600; text-decoration: underline; }
.tp-panel-brand { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; color: #191919; }

/* Review cards */
.tp-cards { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tp-card { background: #fff; border: 1px solid #e8eaed; border-radius: 8px; padding: 16px 15px 14px; display: flex; flex-direction: column; gap: 7px; }
.tp-card-stars { display: flex; gap: 2px; }
.tp-card-meta { font-size: 12px; color: #191919; }
.tp-card-meta strong { font-weight: 700; }
.tp-card-time { color: #777; font-weight: 400; }
.tp-card-title { font-size: 13px; font-weight: 700; color: #191919; }
.tp-card-text { font-size: 12px; line-height: 1.55; color: #555; margin: 0; flex: 1; }
.tp-card-author { margin-top: auto; padding-top: 8px; border-top: 1px solid #f0f0f0; font-size: 12px; }
.tp-card-author strong { font-weight: 700; color: #191919; }
.tp-card-vf { color: #00b67a; margin-left: 4px; }
.tp-badge { font-size: 11px; background: #e8f7f1; color: #0f6e56; padding: 1px 6px; border-radius: 4px; margin-left: 4px; }

/* Bottom label */
.tp-showing { text-align: center; margin-top: 24px; font-size: 13px; color: #777; }
.tp-cta-inline { color: #555; font-weight: 600; text-decoration: none; }
.tp-cta-inline:hover { color: #191919; }

@media (max-width: 1024px) { .tp-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .tp-body { flex-direction: column; }
  .tp-panel { flex: none; width: 100%; border-right: none; border-bottom: 1px solid #e8eaed; padding-right: 0; padding-bottom: 20px; }
  .tp-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final {
  background:
    radial-gradient(900px 400px at 50% -20%, rgba(200,168,104,0.20), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy-3));
  color: var(--white); text-align: center;
}
.cta-final .wrap { padding: 104px 32px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cta-final h2 { font-size: clamp(34px, 4.4vw, 60px); max-width: 18ch; }
.cta-final h2 .em { color: var(--gold); font-style: italic; }
.cta-final p { color: var(--slate); font-size: 19px; max-width: 52ch; line-height: 1.6; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-3); color: var(--slate); padding: 70px 0 30px; }
.footer .grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px; }
.footer h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer .about p { font-size: 14.5px; line-height: 1.7; color: var(--slate); max-width: 38ch; margin-top: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14.5px; color: var(--slate); transition: color .18s; }
.footer ul a:hover { color: var(--gold-bright); }
.footer .brand .name, .footer .brand .name span { color: var(--white); }
.footer .legal { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--navy-line); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--slate-dim); }

/* ============================================================
   Founder / credibility feature
   ============================================================ */
.founder { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; }
.founder-media { position: relative; z-index: 2; padding: 26px 0 26px 26px; }
.founder-media .dotgrid {
  content: ''; position: absolute; left: -6px; top: -10px; width: 180px; height: 190px; z-index: -1;
  background-image: radial-gradient(rgba(31,53,89,0.28) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
}
.founder-photo {
  display: block; width: 100%; height: auto; aspect-ratio: 5/5.4; border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.founder-copy {
  background: var(--paper); border-radius: 18px; padding: 56px 56px 56px 92px;
  margin-left: -56px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.founder-copy .eyebrow { margin-bottom: 10px; }
.founder-copy h2 { font-size: clamp(28px, 3.2vw, 40px); color: var(--ink); letter-spacing: -0.01em; }
.founder-copy h2 .em { color: var(--gold-deep); font-style: italic; }
.founder-copy p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); margin-top: 18px; }
.founder-copy .btn { margin-top: 28px; }
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; gap: 0; }
  .founder-media { padding: 0; max-width: 420px; margin: 0 auto; }
  .founder-media .dotgrid { display: none; }
  .founder-copy { margin-left: 0; margin-top: -24px; padding: 56px 30px 40px; }
}

/* ============================================================
   Meet the Team
   ============================================================ */
.team-lead { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; max-width: 1040px; margin: 0 auto; }
.team-lead .tl-photo { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow-lg); display: block; }
.team-lead .tl-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.team-lead .tl-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.btn-outline-navy { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px rgba(31,53,89,0.30); }
.btn-outline-navy:hover { box-shadow: inset 0 0 0 1.5px var(--gold-deep); color: var(--gold-deep); transform: translateY(-2px); }
.team-lead .tl-role { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.team-lead .tl-name { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; color: var(--ink); line-height: 1.05; }
.team-lead .tl-name span { color: var(--gold-deep); }
.team-lead p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* ---- Team carousel (space-saving slideshow) ---- */
.team-carousel { position: relative; padding: 0 56px; }
.team-viewport { overflow: hidden; }
.team-track { display: flex; gap: 30px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.team-track .team-card { flex: 0 0 calc((100% - 60px) / 3); }
.team-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid #e3e7ee;
  background: var(--white); color: var(--navy); cursor: pointer; box-shadow: var(--shadow-md);
  display: grid; place-items: center; font-size: 24px; line-height: 1;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.team-arrow:hover { background: var(--navy); color: var(--gold); }
.team-arrow:disabled { opacity: 0; pointer-events: none; }
.team-arrow.prev { left: 0; }
.team-arrow.next { right: 0; }
.team-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.team-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: #cfd6e0; transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.team-dots button.on { background: var(--gold); width: 26px; border-radius: 6px; }
@media (max-width: 860px) {
  .team-carousel { padding: 0 44px; }
  .team-track .team-card { flex: 0 0 calc((100% - 30px) / 2); }
}
@media (max-width: 560px) {
  .team-carousel { padding: 0 38px; }
  .team-track .team-card { flex: 0 0 100%; }
}
.team-card {
  background: var(--white); border: 1px solid #eef0f4; border-radius: 16px; box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card .tc-photo { width: 100%; height: auto; aspect-ratio: 1/1; display: block; background: var(--paper-2); object-fit: cover; object-position: center top; }
.team-card .tc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.team-card .tc-name { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); }
.team-card .tc-role { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
.team-card .tc-readbio {
  margin-top: 12px; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 14.5px; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px; transition: gap .18s ease, color .18s ease;
}
.team-card .tc-readbio .arr { color: var(--gold-deep); transition: transform .18s ease; }
.team-card .tc-readbio:hover { color: var(--gold-deep); }
.team-card .tc-readbio:hover .arr { transform: translateX(4px); }

/* ---- Bio modal ---- */
.bio-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.bio-modal.open { display: block; }
.bio-backdrop { position: absolute; inset: 0; background: rgba(15,28,48,0.62); backdrop-filter: blur(3px); opacity: 0; transition: opacity .25s ease; }
.bio-modal.open .bio-backdrop { opacity: 1; }
.bio-dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%);
  width: min(620px, calc(100vw - 40px)); max-height: calc(100vh - 60px); overflow: auto;
  background: var(--white); border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 0; opacity: 0; transition: opacity .25s ease, transform .25s ease;
}
.bio-modal.open .bio-dialog { opacity: 1; transform: translate(-50%, -50%); }
.bio-dialog .bio-hero { display: flex; align-items: center; gap: 22px; padding: 34px 38px 22px; }
.bio-dialog .bio-av { width: 92px; height: 92px; border-radius: 50%; flex: none; overflow: hidden; background: linear-gradient(150deg, var(--navy), var(--navy-card)); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 34px; }
.bio-dialog .bio-av img { width: 100%; height: 100%; object-fit: cover; }
.bio-dialog .bio-role { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.bio-dialog .bio-name { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); margin-top: 4px; }
.bio-dialog .bio-text { padding: 0 38px 8px; font-size: 16.5px; line-height: 1.72; color: var(--ink-soft); }
.bio-dialog .bio-text p { margin: 0 0 14px; }
.bio-dialog .bio-text p:last-child { margin-bottom: 0; }
.bio-certs { padding: 18px 38px 36px; }
.bio-certs .bc-label { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin: 0 0 16px; }
.bio-certs .bc-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200,168,104,0.5), transparent); }
.bio-certs ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.bio-certs li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.4; color: var(--ink); }
.bio-certs li .ck { width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px; display: grid; place-items: center; background: rgba(200,168,104,0.16); color: var(--gold-deep); }
.bio-certs li .ck svg { width: 13px; height: 13px; }
.bio-certs.empty { display: none; }
.bio-dialog .bio-close {
  position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  border: 0; cursor: pointer; background: var(--paper); color: var(--ink-soft); font-size: 22px; line-height: 1;
  display: grid; place-items: center; transition: background .18s ease, color .18s ease;
}
.bio-dialog .bio-close:hover { background: var(--navy); color: var(--gold); }
@media (max-width: 460px) { .bio-dialog .bio-hero { flex-direction: column; text-align: center; align-items: center; } }
@media (max-width: 860px) {
  .team-lead { grid-template-columns: 1fr; gap: 28px; max-width: 460px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Our Values
   ============================================================ */
.values-sec { position: relative; overflow: hidden; }
.values-sec::before {
  content: ''; position: absolute; left: -180px; top: 80px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(31,53,89,0.06), rgba(31,53,89,0) 70%); z-index: 0;
}
.values-sec .wrap { position: relative; z-index: 1; }
.values-stack { display: flex; flex-direction: column; gap: 34px; max-width: 1080px; margin: 0 auto; }
.values-row { display: grid; gap: 34px; }
.values-row.two { grid-template-columns: repeat(2, 1fr); }
.values-row.three { grid-template-columns: repeat(3, 1fr); }
.value-card {
  position: relative; background: var(--white); border: 0; border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15,28,48,0.10), 0 4px 12px rgba(15,28,48,0.05);
  padding: 46px 32px 34px; margin-top: 24px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 26px 56px rgba(15,28,48,0.14), 0 6px 16px rgba(15,28,48,0.06); }
.value-card .v-ic {
  position: absolute; top: -24px; left: 32px; width: 54px; height: 54px; border-radius: 13px;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: var(--navy-2);
  display: grid; place-items: center; box-shadow: 0 10px 22px rgba(177,143,73,0.42);
}
.value-card .v-ic svg { width: 26px; height: 26px; }
.value-card h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.value-card p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 760px) {
  .values-row.two, .values-row.three { grid-template-columns: 1fr; max-width: 460px; }
  .values-sec::before { display: none; }
}

/* ============================================================
   Contact banner
   ============================================================ */
.contact-banner { padding: 0 0 96px; }
.contact-banner .cb-inner {
  position: relative; overflow: hidden; max-width: 1080px; margin: 0 auto;
  background: linear-gradient(120deg, var(--navy-3) 0%, var(--navy-2) 60%, #1a2c49 100%);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: 44px 52px;
}
.contact-banner .cb-inner::after {
  content: ''; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at 60% 50%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 60% 50%, #000, transparent 70%);
}
.contact-banner .cb-copy { position: relative; z-index: 1; }
.contact-banner .cb-avail { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.contact-banner .cb-title { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--white); line-height: 1.05; letter-spacing: -0.01em; }
.contact-banner .cb-sub { font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--gold); margin-top: 12px; }
.contact-banner .cb-cta { position: relative; z-index: 1; flex: none; }
.contact-banner .cb-cta .btn { font-size: 17px; padding: 17px 30px; }
@media (max-width: 760px) {
  .contact-banner .cb-inner { flex-direction: column; align-items: flex-start; text-align: left; padding: 36px 30px; }
}

/* ============================================================
   Our Results — approval stats
   ============================================================ */
.results-stats .section-head h2 .em { color: var(--gold-deep); font-style: normal; }
.approve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.approve-card {
  background: linear-gradient(180deg, var(--navy), var(--navy-2)); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 34px 24px 30px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.approve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,168,104,0.5); }
.approve-card .ac-ic { width: 64px; height: 64px; color: var(--gold); }
.approve-card .ac-ic svg { width: 100%; height: 100%; }
.approve-card .ac-num {
  font-family: var(--sans); font-weight: 800; font-size: 58px; line-height: 1;
  color: var(--white); letter-spacing: -0.02em; margin-top: 4px;
}
.approve-card .ac-num span { color: var(--white); }
.approve-card .ac-lbl { font-size: 16px; line-height: 1.4; color: var(--slate); font-weight: 600; }
@media (max-width: 860px) { .approve-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 460px) { .approve-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   Mobile nav (hamburger + slide-down)
   ============================================================ */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; overflow: hidden; max-height: 0;
  background: rgba(11,27,50,0.98);
  border-top: 1px solid var(--navy-line);
  transition: max-height .28s ease;
}
.mobile-nav.open { display: block; max-height: 480px; }
.mobile-nav a {
  display: block; padding: 14px 24px;
  color: rgba(255,255,255,0.78); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .15s, background .15s;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-nav .mobile-cta-row {
  padding: 16px 20px 20px; display: flex; gap: 10px; align-items: center;
}
.mobile-nav .mobile-login {
  font-size: 14px; font-weight: 600; color: var(--white); border: none;
  padding: 0; background: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .heroA .wrap, .heroC .wrap, .split { grid-template-columns: 1fr; gap: 40px; }
  .heroA .media { order: -1; }
  .heroC .wrap { padding-top: 40px; padding-bottom: 56px; }
  .heroC .copy { align-items: center; text-align: center; }
  .heroC .copy .lede { max-width: 100%; }
  .heroC .actions { justify-content: center; }
  .heroC .trustline { justify-content: center; }
  .split.flip .split-media { order: 0; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .stat:nth-child(3)::before { display: none; }
  .footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
  .announce .wrap { gap: 12px; font-size: 12px; }
  .announce .hide-sm { display: none; }
  .steps { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr; }
  .switcher { bottom: 14px; padding: 6px 6px 6px 12px; }
  .switcher .lab { display: none; }
  .heroC h1 { font-size: clamp(44px, 11.5vw, 58px); }
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative; color: var(--white);
  background:
    radial-gradient(900px 420px at 78% -20%, rgba(200,168,104,0.16), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(800px 420px at 72% 10%, #000 0%, transparent 70%);
          mask-image: radial-gradient(800px 420px at 72% 10%, #000 0%, transparent 70%);
  opacity:.6; pointer-events:none;
}
.page-hero .wrap { position: relative; z-index: 1; padding: 76px 32px 84px; max-width: 900px; }
.page-hero.center .wrap { text-align: center; margin-inline: auto; display:flex; flex-direction:column; align-items:center; }
.page-hero h1 { font-size: clamp(38px, 5vw, 60px); letter-spacing: -0.015em; line-height: 1.18; padding-bottom: 0.12em; }
.page-hero h1 .em { color: var(--gold); font-style: italic; }
.page-hero h1 .em.upright { font-style: normal; font-weight: 800; }
.page-hero p { margin-top: 40px; font-size: 19px; line-height: 1.6; color: var(--slate); max-width: 60ch; }
.breadcrumb { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--slate-dim); margin-bottom: 18px; }
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { margin: 0 8px; color: var(--slate-dim); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 920px; margin: 0 auto; align-items: start; }
.plan {
  background: var(--white); border-radius: 18px; padding: 40px 36px;
  border: 1px solid #e7eaf0; box-shadow: var(--shadow-sm); position: relative;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan.featured { background: linear-gradient(180deg, var(--navy), var(--navy-2)); border: 1px solid rgba(200,168,104,0.4); box-shadow: var(--shadow-lg); }
.plan.featured .plan-name, .plan.featured .price .amt { color: var(--white); }
.plan.featured .price .per, .plan.featured .setup, .plan.featured .feat li { color: var(--slate); }
.plan.featured .feat li b { color: var(--white); }
.plan .ribbon {
  position: absolute; top: 22px; right: -1px;
  background: var(--gold); color: var(--navy-2); font-family: var(--sans);
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px 0 0 999px;
}
.plan-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.plan .price .cur { font-family: var(--sans); font-weight: 700; font-size: 26px; color: var(--gold-deep); }
.plan.featured .price .cur { color: var(--gold); }
.plan .price .amt { font-family: var(--sans); font-weight: 800; font-size: 60px; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.plan .price .per { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink-soft); }
.plan .setup { font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; }
.plan .btn { margin: 24px 0 6px; justify-content: center; }
.plan.featured .btn-navy { background: var(--gold); color: var(--navy-2); box-shadow: var(--shadow-gold); }
.plan.featured .btn-navy:hover { background: var(--gold-bright); }
.plan .feat { list-style: none; margin: 14px 0 0; padding: 18px 0 0; border-top: 1px solid #edf0f4; display: flex; flex-direction: column; gap: 14px; }
.plan.featured .feat { border-top: 1px solid var(--navy-line); }
.plan .feat li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.45; color: var(--ink); }
.plan .feat li .tk { width: 22px; height: 22px; border-radius: 50%; background: rgba(200,168,104,0.18); color: var(--gold-deep); display: grid; place-items: center; font-size: 12px; font-weight: 800; flex: none; margin-top: 1px; }
.plan.featured .feat li .tk { background: rgba(200,168,104,0.22); color: var(--gold-bright); }

/* fix-for-you chips */
.fixrow { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.fixrow a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid #e3e7ee; border-radius: 999px;
  padding: 14px 22px; font-size: 15.5px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: all .18s ease;
}
.fixrow a:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.fixrow a .arr { color: var(--gold-deep); }
.fixrow-cta { display: flex; justify-content: center; margin-top: 52px; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid #e7eaf0; border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 18px; padding: 24px 26px;
  font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink);
}
.faq-q .ix { font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--gold-deep); flex: none; width: 26px; }
.faq-q .pm { margin-left: auto; flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s ease; }
.faq-q .pm::before, .faq-q .pm::after { content:''; position:absolute; background: var(--gold-deep); border-radius: 2px; }
.faq-q .pm::before { left: 5px; right: 5px; top: 12px; height: 2px; }
.faq-q .pm::after { top: 5px; bottom: 5px; left: 12px; width: 2px; transition: transform .3s ease; }
.faq-item.open .faq-q .pm::after { transform: scaleY(0); }
.faq-a { height: 0; overflow: hidden; }
.faq-a .inner { padding: 0 26px 26px 70px; font-size: 16.5px; line-height: 1.68; color: var(--ink-soft); opacity: 0; transform: translateY(-6px); transition: opacity .3s ease, transform .3s ease; }
.faq-item.open .faq-a { height: auto; }
.faq-item.open .faq-a .inner { opacity: 1; transform: none; }

/* contact form */
.contact-card { max-width: 680px; margin: 56px auto 0; background: var(--white); border: 1px solid #e7eaf0; border-radius: 18px; box-shadow: var(--shadow-md); padding: 40px; }
.contact-card h3 { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 8px; }
.contact-card p.sub { font-size: 15px; color: var(--ink-soft); margin-bottom: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.field .req { color: var(--gold-deep); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1px solid #d8dde6; border-radius: 10px; background: var(--paper);
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,104,0.18); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   CLIENT RESULTS
   ============================================================ */
.result-feature { max-width: 980px; margin: 0 auto; }
.result-frame {
  background: var(--white); border: 1px solid #e7eaf0; border-radius: 18px;
  box-shadow: var(--shadow-md); padding: 18px; overflow: hidden;
}
.result-frame img { width: 100%; border-radius: 10px; }
.result-meta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.result-meta .m { background: var(--white); border: 1px solid #e7eaf0; border-radius: 12px; padding: 16px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.result-meta .m .b { font-family: var(--sans); font-weight: 800; font-size: 30px; color: var(--gold-deep); line-height: 1; }
.result-meta .m .s { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; align-items: start; }
.result-shot { background: var(--white); border: 1px solid #e7eaf0; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 14px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s ease, box-shadow .25s ease; }
.result-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-shot img { width: 100%; border-radius: 10px; display: block; }
.result-shot .cap { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 2px 6px 6px; }
.result-shot .cap .d { font-size: 13px; color: var(--ink-soft); font-weight: 600; letter-spacing: .02em; }
.result-shot .cap .up { font-family: var(--sans); font-weight: 800; color: var(--gold-deep); font-size: 16px; white-space: nowrap; }

/* ---- Credit transformation cards ---- */
.transform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.transform-card {
  background: var(--white); border: 1px solid #e7eaf0; border-radius: 18px;
  box-shadow: var(--shadow-sm); padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.transform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.transform-card.highlight { border: 1.5px solid var(--gold); box-shadow: var(--shadow-md); }
.tc-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tc-badge { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--gold-deep); background: rgba(200,168,104,0.16); border: 1px solid rgba(200,168,104,0.32); padding: 6px 13px; border-radius: 999px; white-space: nowrap; }
.tc-loc { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.tc-scores { display: flex; align-items: flex-end; gap: 18px; }
.tc-scores .col { display: flex; flex-direction: column; gap: 4px; }
.tc-scores .num { font-family: var(--sans); font-weight: 800; font-size: 48px; line-height: 0.95; letter-spacing: -0.02em; }
.tc-scores .num.bad { color: #c2454b; }
.tc-scores .num.good { color: #1f8a5b; }
.tc-scores .lbl { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.tc-scores .ar { color: var(--gold); font-size: 24px; font-weight: 700; padding-bottom: 18px; }
.tc-bar { height: 9px; border-radius: 999px; background: #edf0f4; overflow: hidden; }
.tc-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); }
.tc-removed { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.tc-removed b { color: var(--ink); font-weight: 700; }
.tc-time { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); }
@media (max-width: 860px) { .transform-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ---- Results carousel ---- */
.carousel { max-width: 940px; margin: 0 auto; position: relative; }
.carousel-frame {
  position: relative; background: var(--white); border: 1px solid #e7eaf0;
  border-radius: 18px; box-shadow: var(--shadow-md); overflow: hidden;
  height: clamp(420px, 54vw, 580px);
}
.carousel .slide {
  position: absolute; inset: 0; padding: 22px 22px 0; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; visibility: hidden; transition: opacity .5s ease;
}
.carousel .slide.active { opacity: 1; visibility: visible; }
.carousel .slide .shot { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
.carousel .slide .shot img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; border-radius: 10px; }
.carousel .slide-cap { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 16px 0 20px; }
.carousel .slide-cap .d { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); }
.carousel .slide-cap .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.carousel .slide-cap .up { font-family: var(--sans); font-weight: 800; font-size: 16px; color: var(--gold-deep); }
.carousel .slide-cap .it { font-size: 13px; font-weight: 700; color: #1f8a5b; }

.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: var(--navy); color: var(--gold-bright); border: 0;
  font-size: 22px; line-height: 1; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: background .18s ease, transform .18s ease;
}
.car-arrow:hover { background: var(--navy-2); }
.car-arrow.prev { left: -22px; }
.car-arrow.next { right: -22px; }
.car-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.car-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer; background: #cdd4df; padding: 0; transition: all .2s ease; }
.car-dots button.on { background: var(--gold); width: 28px; border-radius: 999px; }
@media (max-width: 560px) {
  .car-arrow.prev { left: 8px; } .car-arrow.next { right: 8px; }
  .car-arrow { width: 40px; height: 40px; font-size: 18px; }
}
.result-card { background: var(--white); border: 1px solid #eef0f4; border-radius: 16px; box-shadow: var(--shadow-sm); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.result-card .scores { display: flex; align-items: center; gap: 16px; }
.result-card .scores .from { font-family: var(--sans); font-weight: 800; font-size: 30px; color: var(--slate-dim); }
.result-card .scores .ar { color: var(--gold); font-size: 22px; }
.result-card .scores .to { font-family: var(--sans); font-weight: 800; font-size: 44px; color: var(--ink); line-height: 1; }
.result-card .scores .up { margin-left: auto; font-weight: 800; color: var(--gold-deep); font-size: 18px; }
.result-card .bar { height: 8px; border-radius: 999px; background: #eef0f4; overflow: hidden; }
.result-card .bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); }
.result-card .who { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.result-card .who .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(150deg,var(--navy),var(--navy-card)); color: var(--gold); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .result-grid { grid-template-columns: 1fr; }
  .faq-a .inner { padding-left: 26px; padding-right: 26px; }
}
@media (max-width: 560px) {
  .field.row2 { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 22px; }
  .page-hero .wrap { padding: 56px 20px 60px; }
}

/* ============================================================
   DIY — digital products
   ============================================================ */
/* value-prop strip */
.diy-props { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1040px; margin: -36px auto 0; position: relative; z-index: 5; }
.diy-prop {
  background: var(--white); border: 1px solid #eef0f4; border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 22px 22px; display: flex; align-items: center; gap: 14px;
}
.diy-prop .pi { width: 44px; height: 44px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(200,168,104,0.2), rgba(200,168,104,0.07)); color: var(--gold-deep); border: 1px solid rgba(200,168,104,0.3); }
.diy-prop .pi svg { width: 22px; height: 22px; }
.diy-prop .pt { display: block; font-family: var(--sans); font-weight: 800; font-size: 15px; color: var(--ink); line-height: 1.25; }
.diy-prop .ps { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; line-height: 1.35; }
@media (max-width: 860px) { .diy-props { grid-template-columns: 1fr 1fr; margin-top: 32px; } }
@media (max-width: 460px) { .diy-props { grid-template-columns: 1fr; } }

/* ebook cover — book-like presentation */
.ebook-cover { position: relative; display: block; transition: transform .25s ease; }
.ebook-cover image-slot, .ebook-cover img {
  display: block; width: 100%; aspect-ratio: 1 / 1.34; border-radius: 6px 12px 12px 6px; overflow: hidden;
  box-shadow: 0 26px 50px rgba(15,28,48,0.30), 0 6px 16px rgba(15,28,48,0.16);
}
.ebook-cover img { object-fit: cover; }
.diy-card:hover .ebook-cover, .ebook-cover:hover { transform: translateY(-3px); }
.ebook-cover::before { /* spine */
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 9px; z-index: 3; border-radius: 6px 0 0 6px;
  background: linear-gradient(90deg, rgba(0,0,0,0.22), rgba(0,0,0,0.04) 60%, rgba(255,255,255,0.14)); pointer-events: none;
}

/* flagship feature split */
.diy-feature { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: center; max-width: 1080px; margin: 0 auto; }
.diy-feature .ebook-cover { max-width: 330px; margin: 0 auto; }
.diy-feature .df-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.diy-feature .df-tag { font-family: var(--sans); font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-2); background: var(--gold); padding: 6px 13px; border-radius: 999px; }
.diy-feature h2 { font-size: clamp(30px, 3.4vw, 44px); color: var(--ink); }
.diy-feature h2 .em { color: var(--gold-deep); font-style: italic; }
.diy-feature .df-lede { font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.diy-feature .df-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.diy-feature .df-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--ink); }
.diy-feature .df-list .tk { width: 22px; height: 22px; flex: none; border-radius: 50%; background: rgba(31,138,91,0.14); color: #1f8a5b; display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.diy-feature .df-buy { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }
.diy-feature .df-price { display: flex; align-items: baseline; gap: 10px; }
.diy-feature .df-price .now { font-family: var(--sans); font-weight: 800; font-size: 42px; color: var(--ink); letter-spacing: -0.02em; }
.diy-feature .df-price .was { font-size: 20px; color: var(--slate-dim); text-decoration: line-through; }
.diy-feature.flip { grid-template-columns: 1.18fr 0.82fr; }
@media (max-width: 860px) { .diy-feature { grid-template-columns: 1fr; gap: 36px; max-width: 460px; } .diy-feature .ebook-cover { max-width: 240px; } .diy-feature.flip { grid-template-columns: 1fr; } }

/* navy spotlight for a featured real product */
.diy-spotlight { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); position: relative; overflow: hidden; }
.diy-spotlight::after { content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background: var(--gold); opacity:.35; }
.diy-spotlight .df-copy h2 { color: var(--white); }
.diy-spotlight .df-copy h2 .em { color: var(--gold); font-style: italic; }
.diy-spotlight .df-lede { color: var(--slate); }
.diy-spotlight .df-list li { color: var(--white); }
.diy-spotlight .df-price .now { color: var(--white); }

/* product grid */
.diy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.diy-card {
  background: var(--white); border: 1px solid #eef0f4; border-radius: 18px; box-shadow: var(--shadow-sm);
  padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.diy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.diy-card .ebook-cover { max-width: 190px; margin: 6px auto 4px; }
.diy-card .dc-cat { font-family: var(--sans); font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.diy-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.diy-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.diy-card .dc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid #eef0f4; }
.diy-card .dc-price { display: flex; align-items: baseline; gap: 7px; }
.diy-card .dc-price .now { font-family: var(--sans); font-weight: 800; font-size: 28px; color: var(--ink); letter-spacing: -0.01em; }
.diy-card .dc-price .was { font-size: 15px; color: var(--slate-dim); text-decoration: line-through; }
.diy-card .btn { padding: 11px 20px; font-size: 14.5px; }
@media (max-width: 860px) { .diy-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .diy-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* bundle band */
.diy-bundle { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); position: relative; overflow: hidden; }
.diy-bundle::after { content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background: var(--gold); opacity:.35; }
.diy-bundle .wrap { position: relative; z-index: 1; }
.bundle-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; max-width: 1040px; margin: 0 auto; }
.bundle-inner .ebook-stack { position: relative; height: 320px; }
.bundle-inner .ebook-stack .ebook-cover { position: absolute; width: 200px; }
.bundle-inner .ebook-stack .ebook-cover:nth-child(1) { left: 0; top: 30px; transform: rotate(-7deg); z-index: 1; }
.bundle-inner .ebook-stack .ebook-cover:nth-child(2) { left: 70px; top: 10px; transform: rotate(2deg); z-index: 3; }
.bundle-inner .ebook-stack .ebook-cover:nth-child(3) { left: 150px; top: 34px; transform: rotate(10deg); z-index: 2; }
.bundle-copy .b-tag { font-family: var(--sans); font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-2); background: var(--gold); padding: 6px 13px; border-radius: 999px; display: inline-block; }
.bundle-copy h2 { font-size: clamp(30px, 3.6vw, 46px); color: var(--white); margin: 18px 0 0; }
.bundle-copy h2 .em { color: var(--gold); font-style: italic; }
.bundle-copy p { font-size: 18px; line-height: 1.6; color: var(--slate); margin-top: 16px; }
.bundle-copy .b-buy { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.bundle-copy .b-price { display: flex; align-items: baseline; gap: 12px; }
.bundle-copy .b-price .now { font-family: var(--sans); font-weight: 800; font-size: 50px; color: var(--gold-bright); letter-spacing: -0.02em; }
.bundle-copy .b-price .was { font-size: 22px; color: var(--slate-dim); text-decoration: line-through; }
.bundle-copy .b-save { font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-2); background: var(--gold-bright); padding: 5px 11px; border-radius: 6px; }
@media (max-width: 860px) {
  .bundle-inner { grid-template-columns: 1fr; gap: 30px; }
  .bundle-inner .ebook-stack { height: 280px; max-width: 380px; margin: 0 auto; }
}

/* how-it-works steps reuse .steps; disclaimer */
.diy-disclaimer { max-width: 820px; margin: 0 auto; text-align: center; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }

/* product rating (Amazon-style) */
.dc-rating { display: flex; align-items: center; gap: 8px; }
.dc-rating .rv { font-family: var(--sans); font-weight: 700; font-size: 15px; color: var(--ink); }
.dc-rating .rstars { position: relative; display: inline-block; font-size: 16px; line-height: 1; letter-spacing: 1px; white-space: nowrap; }
.dc-rating .rstars .base { color: #d8dde6; }
.dc-rating .rstars .fill { position: absolute; left: 0; top: 0; overflow: hidden; color: #ff7a1a; white-space: nowrap; }
.dc-rating .rcount { font-family: var(--sans); font-weight: 600; font-size: 14px; color: #2a6fdb; }
.dc-rating .rfmt { font-size: 13px; color: var(--ink-soft); font-weight: 600; margin-left: 2px; }
.df-copy .dc-rating { margin: -4px 0 2px; }
.diy-spotlight .dc-rating .rv { color: var(--white); }
.diy-spotlight .dc-rating .rstars .base { color: rgba(255,255,255,0.25); }
.diy-spotlight .dc-rating .rcount { color: var(--gold-bright); }
.diy-spotlight .dc-rating .rfmt { color: var(--slate); }

/* coming soon state */
.ebook-cover.soon { pointer-events: none; }
.ebook-cover.soon img { filter: grayscale(0.4) brightness(0.72); }
.ebook-cover.soon::after {
  content: 'Coming Soon'; position: absolute; z-index: 5; left: 50%; top: 50%;
  transform: translate(-50%,-50%) rotate(-6deg);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); color: var(--navy-2);
  font-family: var(--sans); font-weight: 800; font-size: 15px; letter-spacing: .05em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 999px; box-shadow: 0 12px 26px rgba(15,28,48,0.45); white-space: nowrap;
}
.ebook-cover.soon.nobadge::after { display: none; }
.btn-soon { background: #e9ecf2; color: #8a95a6; box-shadow: none; cursor: default; pointer-events: none; }
.diy-bundle .btn-soon { background: rgba(255,255,255,0.12); color: var(--slate); }
.diy-card.is-soon .dc-price, .diy-feature .df-price.is-soon { opacity: .6; }

/* coming-soon actions: status pill + notify CTA */
.soon-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn-notify { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: var(--navy-2); box-shadow: 0 10px 24px rgba(177,143,73,0.34); border: 0; cursor: pointer; }
.btn-notify:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(177,143,73,0.46); }
.diy-card .btn-notify { padding: 11px 20px; font-size: 14.5px; }
/* grid soon-cards: price on its own line, two buttons share a row */
.diy-card.is-soon .dc-foot { flex-direction: column; align-items: stretch; gap: 14px; }
.diy-card.is-soon .dc-foot .soon-actions { width: 100%; }
.diy-card.is-soon .dc-foot .soon-actions .btn { flex: 1; justify-content: center; }
.diy-bundle .btn-notify { box-shadow: none; }

/* Notify modal */
.notify-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; }
.notify-modal.open { display: flex; }
.notify-backdrop { position: absolute; inset: 0; background: rgba(10,18,30,0.66); backdrop-filter: blur(3px); }
.notify-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 440px; background: var(--white);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 38px 36px 34px; text-align: center;
  transform: translateY(10px); transition: transform .25s ease; 
}
.notify-modal.open .notify-dialog { transform: none; }
.notify-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--paper-2); color: var(--ink-soft); font-size: 20px; line-height: 1; cursor: pointer; transition: all .18s; }
.notify-close:hover { background: var(--navy); color: var(--gold); }
.notify-ic { width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep)); color: var(--navy-2); box-shadow: 0 10px 22px rgba(177,143,73,0.4); }
.notify-ic svg { width: 28px; height: 28px; }
.notify-dialog h3 { font-family: var(--serif); font-size: 25px; color: var(--ink); margin-bottom: 8px; }
.notify-sub { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 24px; }
.notify-sub b { color: var(--gold-deep); }
.notify-form { display: flex; flex-direction: column; gap: 12px; }
.notify-form input { font-family: var(--sans); font-size: 16px; color: var(--ink); padding: 14px 16px; border: 1px solid #d8dde6; border-radius: 10px; background: var(--paper); transition: border-color .18s, box-shadow .18s; }
.notify-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,104,0.18); background: #fff; }
.notify-ok { display: none; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; color: var(--gold-deep); font-weight: 700; font-size: 15.5px; }
.notify-dialog.done .notify-form { display: none; }
.notify-dialog.done .notify-ok { display: flex; }
.notify-fine { font-size: 12px; color: var(--slate-dim); margin-top: 16px; }

/* deal / discount price (Amazon-style) */
.df-pricewrap { display: flex; flex-direction: column; gap: 3px; }
.df-price.deal { display: flex; align-items: center; gap: 12px; }
.df-price.deal .pct { font-family: var(--sans); font-weight: 800; font-size: 26px; color: #e23b4e; letter-spacing: -0.01em; }
.df-price.deal .now { font-family: var(--sans); font-weight: 800; font-size: 46px; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.df-price.deal .now .cur { font-size: 24px; vertical-align: 18px; font-weight: 700; margin-right: 1px; }
.deal-list { font-size: 14.5px; color: var(--slate); }
.deal-list s { color: var(--slate-dim); }
