/* ================================================================
   OwoTracker — Landing Page Styles
   ================================================================ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #0D0A1E;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── DESIGN TOKENS ─── */
:root {
  --acc:    #E8343A;
  --green:  #22C55E;
  --gold:   #F6B44A;
  --purple: #9B8FFF;
  --blue:   #60AEFF;
  --orange: #FF7A4A;
  --dark:   #0D0A1E;
  --dark2:  #141027;
  --card:   #1A1635;
  --cb:     rgba(255, 255, 255, .08);
  --light:  #F4F3FF;
  --light2: #FAFAFE;
  --fd:     'Playfair Display', Georgia, serif;
  --r:      20px;
  --rl:     32px;
}

/* ================================================================
   UTILITIES
   ================================================================ */

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal-l.in { opacity: 1; transform: none; }

.reveal-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal-r.in { opacity: 1; transform: none; }

/* Staggered delay helpers */
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }

/* Respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; transition: none; }
  .w { transition: none !important; }
  .phone, .bfp, .sc-ph { animation: none !important; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes fadeUp  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink   { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes flt1    { 0%, 100% { transform: translateY(-50%) rotate(-7deg); } 50% { transform: translateY(calc(-50% - 10px)) rotate(-7deg); } }
@keyframes flt2    { 0%, 100% { transform: translate(-50%, -52%); } 50% { transform: translate(-50%, calc(-52% - 11px)); } }
@keyframes flt3    { 0%, 100% { transform: translateY(-48%) rotate(6deg); } 50% { transform: translateY(calc(-48% - 9px)) rotate(6deg); } }
@keyframes bfl1    { 0%, 100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-8px); } }
@keyframes bfl2    { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-9px); } }
@keyframes bfl3    { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-7px); } }

/* ================================================================
   PAGE LOADER
   ================================================================ */

.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-txt {
  font-family: var(--fd);
  font-size: 28px; font-weight: 900;
  animation: fadeUp .65s cubic-bezier(.22,1,.36,1) both;
}
.loader-txt span { color: var(--acc); }

/* ================================================================
   NAVIGATION
   ================================================================ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px 0;
  transition: background .3s, padding .3s;
}
nav.solid {
  background: rgba(13, 10, 30, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 14px 0;
}
.nav-i  { display: flex; align-items: center; justify-content: space-between; }
.logo   { font-family: var(--fd); font-size: 22px; font-weight: 900; color: #fff; text-decoration: none; }
.logo span { color: var(--acc); }
.nav-r  { display: flex; align-items: center; gap: 12px; }
.nav-lk { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-lk:hover { color: #fff; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn-p      { background: var(--acc); color: #fff; }
.btn-p:hover { background: #f03d44; box-shadow: 0 6px 22px rgba(232,52,58,.4); }
.btn-lg     { padding: 15px 36px; font-size: 16px; }

/* ================================================================
   HERO
   ================================================================ */

.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 62% 10%, rgba(155,143,255,.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 38% at 12% 78%, rgba(232,52,58,.12)   0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 90% 68%, rgba(246,180,74,.07)  0%, transparent 50%),
    #0D0A1E;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}
.hero-svg {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; pointer-events: none; opacity: .11; z-index: 1;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  position: relative; z-index: 2;
}

/* ─── Launch badge ─── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,52,58,.1); border: 1px solid rgba(232,52,58,.2);
  border-radius: 100px; padding: 7px 18px 7px 12px;
  font-size: 11.5px; font-weight: 700;
  color: rgba(255,150,155,1); letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--acc); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* ─── Wordmark cycling ───────────────────────────────────────────
   .cyc-sizer (hidden) naturally sizes the container to the current
   word's width. Cycling .w spans sit absolute on top.
   Result: zero gap between word and "Tracker" at all times.
─────────────────────────────────────────────────────────────── */
.wm-wrap { margin-bottom: 36px; }
.wm {
  font-family: var(--fd);
  font-size: clamp(46px, 5.8vw, 80px);
  font-weight: 900; line-height: 1; letter-spacing: -2px;
  display: flex; align-items: baseline; flex-wrap: nowrap; gap: 0;
}
.cyc { display: inline-block; position: relative; }
.cyc-sizer {
  visibility: hidden; white-space: nowrap;
  pointer-events: none; display: block; line-height: 1;
}
.cyc .w {
  position: absolute; left: 0; top: 0;
  white-space: nowrap; line-height: 1;
  opacity: 0; transform: translateY(12px);
  transition: opacity .42s cubic-bezier(.22,1,.36,1), transform .42s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.cyc .w.active { opacity: 1; transform: translateY(0); }
.cyc .w.exit   { opacity: 0; transform: translateY(-12px); }

.w-money { color: #5F9BFF; }
.w-owo  { color: #E8343A; }
.w-kudi { color: #22C55E; }
.w-ego  { color: #F6B44A; }
.w-aku  { color: #9B8FFF; }
.w-igho { color: #60AEFF; }

.wm-tracker { color: #fff; flex-shrink: 0; }
.lang-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-top: 7px; height: 14px; transition: color .3s;
}

/* ─── Hero body copy ─── */
.hero-sub { font-size: clamp(15px,1.7vw,18px); line-height: 1.7; color: rgba(255,255,255,.58); max-width: 460px; margin-bottom: 36px; }
.hero-sub strong { color: rgba(255,255,255,.9); font-weight: 600; }
.hero-note {
  font-size: 12.5px; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 6px;
  position: relative; z-index: 0;
}

/* ─── Phone cluster ─── */
.hero-phones { position: relative; height: 580px; }
.phone {
  position: absolute; border-radius: 34px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.09);
  transition: transform .3s;
  padding: 10px 0;
}
.phone img { width: 100%; height: 100%; object-fit: contain; display: block; }
.phone:hover { transform: translateY(-5px) scale(1.015) !important; }
.ph1 { background: #F0EFEB; width: 190px; height: 390px; left: 0;   top: 50%; animation: flt1 7s ease-in-out infinite; }
.ph2 { background: #F0EFEB; width: 210px; height: 430px; left: 50%; top: 50%; transform: translate(-50%,-52%); z-index: 3; animation: flt2 8s ease-in-out infinite .8s; }
.ph3 { background: #1A1530; width: 180px; height: 375px; right: 0;  top: 50%; z-index: 2; animation: flt3 9s ease-in-out infinite 1.6s; }

/* ================================================================
   WAITLIST FORMS
   ================================================================ */

#hf              { position: relative; z-index: 2; }
.form-step       { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; position: relative; z-index: 1;}
.form-row        { display: flex; gap: 10px; flex-wrap: wrap; }
.form-submit-row { display: flex; gap: 10px; flex-wrap: wrap; }

.inp {
  flex: 1; min-width: 0; width: 100%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px; padding: 14px 22px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: #fff;
  outline: none; transition: border-color .2s, background .2s;
}
.inp::placeholder { color: rgba(255,255,255,.32); }
.inp:focus        { border-color: rgba(232,52,58,.45); background: rgba(255,255,255,.1); }

select.inp {
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 22px center; padding-right: 42px;
}
select.inp option { background: #1A1635; color: #fff; }

.success {
  display: none; margin-top: 4px; padding: 14px 22px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.22);
  border-radius: var(--r); color: var(--green);
  font-size: 14px; font-weight: 600; text-align: center;
}
.success.show { display: block; animation: fadeUp .35s cubic-bezier(.22,1,.36,1); }

/* ─── Bank dropdown ─── */
.bank-field    { width: 100%; position: relative; }
.bank-dropdown { position: relative; width: 100%; }
.bank-trigger {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-radius: 100px; padding: 14px 22px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.32); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.bank-trigger:hover               { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.bank-trigger.has-val             { color: #fff; border-color: rgba(232,52,58,.4); }
.bank-dropdown.open .bank-trigger { border-radius: 16px 16px 0 0; border-bottom-color: transparent; }
.btxt { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.chev { flex-shrink: 0; transition: transform .2s; color: rgba(255,255,255,.35); }
.bank-dropdown.open .chev { transform: rotate(180deg); }
.bank-panel {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 999;
  background: #1A1635;
  border: 1px solid rgba(255,255,255,.13); border-top: none;
  border-radius: 0 0 16px 16px;
  max-height: 210px; overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.1) transparent;
}
.bank-panel::-webkit-scrollbar       { width: 4px; }
.bank-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.bank-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.58); cursor: pointer;
  transition: background .14s, color .14s; user-select: none;
}
.bank-opt:hover:not(.maxed) { background: rgba(255,255,255,.05); color: #fff; }
.bank-opt.selected          { color: #fff; }
.bank-opt.maxed:not(.selected) { opacity: .28; cursor: not-allowed; }
.boc {
  width: 17px; height: 17px; flex-shrink: 0; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .14s, border-color .14s;
}
.bank-opt.selected .boc { background: var(--acc); border-color: var(--acc); }
.boc-chk { width: 9px; height: 9px; stroke: #fff; stroke-width: 2.5; display: none; }
.bank-opt.selected .boc-chk { display: block; }
.bank-cap {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  padding: 9px 20px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.28);
  border-top: 1px solid rgba(255,255,255,.06);
  position: sticky; bottom: 0; background: #1A1635;
}

/* ================================================================
   TRUST STRIP
   ================================================================ */

.strip   { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); }
.strip-i { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px; }
.si      { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.48); font-weight: 500; }
.si strong { color: #fff; font-weight: 700; }
.ssep    { width: 1px; height: 20px; background: rgba(255,255,255,.1); }

/* ================================================================
   SECTIONS — shared rhythm
   ================================================================ */

.sec { padding: 96px 0; }
.sec + .sec { padding-top: 0; }

.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--acc); margin-bottom: 14px; }
.sec-h     { font-family: var(--fd); font-size: clamp(30px,3.8vw,50px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; }
.sec-h em  { font-style: italic; color: var(--acc); }
.sec-sub   { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 500px; margin-top: 14px; }

/* Light section variant */
.sec-light                { background: var(--light2); color: #0D0A1E; }
.sec-light .sec-label     { color: var(--acc); }
.sec-light .sec-h         { color: #0D0A1E; }
.sec-light .sec-h em      { color: var(--acc); }
.sec-light .sec-sub       { color: rgba(10,8,25,.5); }

/* ================================================================
   FEATURE: EVERY ACCOUNT — BIG SPLIT CARD
   ================================================================ */

.bf { border-radius: var(--rl); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; border: 1px solid rgba(0,0,0,.07); box-shadow: 0 2px 24px rgba(0,0,0,.06); }
.bf-copy { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.bf-copy h3 { font-family: var(--fd); font-size: clamp(22px,2.5vw,34px); font-weight: 900; line-height: 1.15; letter-spacing: -.5px; color: #0D0A1E; margin-bottom: 18px; }
.bf-copy p  { font-size: 14.5px; line-height: 1.7; color: rgba(0,0,0,.5); }

.checklist { margin-top: 26px; display: flex; flex-direction: column; gap: 11px; }
.ci  { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(0,0,0,.65); }
.ck  { width: 20px; height: 20px; flex-shrink: 0; background: rgba(34,197,94,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ck svg { width: 10px; height: 10px; stroke: var(--green); }

.bf-vis { position: relative; overflow: hidden; background: linear-gradient(135deg,#1A1635 0%,#0f0b25 100%); display: flex; align-items: flex-end; justify-content: center; padding: 36px 14px 0; }
.bf-ps  { position: relative; width: 100%; height: 340px; }
.bfp    { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.07); padding: 8px 0; }
.bfp img { width: 100%; height: 100%; object-fit: contain; display: block; }
.bp1 { background: #F0EFEB; width: 142px; height: 292px; left: 9%;  bottom: 0; animation: bfl1 7s   ease-in-out infinite; }
.bp2 { background: #F0EFEB; width: 156px; height: 324px; left: 50%; bottom: 0; transform: translateX(-50%); animation: bfl2 8.5s ease-in-out infinite .6s; z-index: 2; }
.bp3 { background: #1A1530; width: 138px; height: 282px; right: 7%; bottom: 0; animation: bfl3 9s   ease-in-out infinite 1.2s; }

/* ================================================================
   FEATURES GRID — 6 cards
   ================================================================ */

.fg { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fc { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--cb); border-radius: var(--r); padding: 32px 28px; transition: transform .25s, box-shadow .25s; }
.fc::before { content: ''; position: absolute; inset: 0; border-radius: var(--r); background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,.04) 0%, transparent 70%); pointer-events: none; }
.fc:hover   { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.fi    { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.fc-t  { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.fc-d  { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.45); }
.fc-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .4px; padding: 3px 9px; border-radius: 6px; }

/* Icon backgrounds */
.ic-r  { background: rgba(232,52,58,.14); }
.ic-g  { background: rgba(34,197,94,.14); }
.ic-go { background: rgba(246,180,74,.14); }
.ic-p  { background: rgba(155,143,255,.14); }
.ic-b  { background: rgba(96,174,255,.14); }
.ic-o  { background: rgba(255,122,74,.14); }

/* ================================================================
   SCREENSHOT SHOWCASE
   ================================================================ */

.showcase   { padding: 56px; background: #fff; border-radius: var(--rl); border: 1px solid rgba(0,0,0,.06); box-shadow: 0 2px 24px rgba(0,0,0,.05); }
.sc-scroll  { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; margin-top: 40px; scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.1) transparent; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.sc-scroll::-webkit-scrollbar       { height: 4px; }
.sc-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,.1); border-radius: 4px; }
.sc-ph { flex-shrink: 0; width: 194px; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 36px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.07); scroll-snap-align: start; transition: transform .25s, box-shadow .25s; }
.sc-ph:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.sc-ph img  { width: 100%; display: block; }
.sc-cap     { margin-top: 9px; font-size: 12px; font-weight: 600; color: rgba(0,0,0,.38); text-align: center; }
.sc-h       { font-size: clamp(24px,3vw,40px); color: #0D0A1E; }

/* ================================================================
   OPEN BANKING
   ================================================================ */

.ob      { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ob-card { background: var(--card); border: 1px solid var(--cb); border-radius: var(--r); padding: 34px 30px; }
.pills   { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill    { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: 100px; padding: 6px 14px 6px 9px; font-size: 13px; font-weight: 600; transition: background .2s, transform .18s; cursor: default; }
.pill:hover { background: rgba(255,255,255,.11); transform: scale(1.03); }
.pdot    { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ================================================================
   FREE FEATURES SECTION
   ================================================================ */

.free-wrap { background: var(--dark2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--rl); padding: 68px 60px; text-align: center; position: relative; overflow: hidden; }
.free-wrap::before {
  content: 'FREE';
  position: absolute; font-family: var(--fd); font-weight: 900;
  font-size: clamp(120px,18vw,220px); color: rgba(34,197,94,.05);
  letter-spacing: -6px; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap; line-height: 1; user-select: none;
}
.free-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); border-radius: 100px; padding: 6px 16px; font-size: 11.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.free-h   { font-family: var(--fd); font-size: clamp(30px,3.8vw,52px); font-weight: 900; line-height: 1.08; letter-spacing: -1px; color: #fff; margin-bottom: 16px; }
.free-h em { font-style: italic; color: var(--green); }
.free-sub  { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.48); max-width: 480px; margin: 0 auto 42px; }

.fg2   { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; text-align: left; }
.fcard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r); padding: 24px 20px; }
.fcard-ico { font-size: 22px; margin-bottom: 10px; }
.fcard-t   { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.fcard-d   { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.5; }
.fcard-b   { display: inline-block; margin-top: 9px; font-size: 11px; font-weight: 700; letter-spacing: .4px; padding: 3px 8px; border-radius: 6px; background: rgba(34,197,94,.1); color: var(--green); }

/* ================================================================
   FINAL CTA
   ================================================================ */

.cta            { text-align: center; padding: 110px 0; }
.cta-in         { max-width: 620px; margin: 0 auto; }
.cta-h          { font-family: var(--fd); font-size: clamp(32px,4.5vw,58px); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 18px; }
.cta-sub        { font-size: 16px; color: rgba(255,255,255,.46); line-height: 1.65; margin-bottom: 36px; }
.cta .form-step { max-width: 480px; margin: 0 auto; }
.cta .form-submit-row { justify-content: center; }
.cta-note       { font-size: 12px; color: rgba(255,255,255,.25); margin-top: 12px; }

/* ================================================================
   FOOTER
   ================================================================ */

footer    { padding: 44px 0; border-top: 1px solid rgba(255,255,255,.07); }
.foot-i   { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-family: var(--fd); font-size: 20px; font-weight: 900; color: #fff; text-decoration: none; }
.foot-logo span { color: var(--acc); }
.foot-tag  { font-size: 13px; color: rgba(255,255,255,.27); margin-top: 3px; }
.foot-lks  { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-lk   { font-size: 13px; color: rgba(255,255,255,.36); text-decoration: none; transition: color .2s; }
.foot-lk:hover { color: #fff; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.2); margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.05); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 960px) {
  .hero-grid, .bf, .ob { grid-template-columns: 1fr; }
  .fg  { grid-template-columns: repeat(2,1fr); }
  .fg2 { grid-template-columns: repeat(2,1fr); }
  .ph1, .ph3  { display: none; }
  .ph2        { left: 50%; top: 50%; width: 200px; height: 410px; transform: translate(-50%,-50%) !important; animation: flt2 8s ease-in-out infinite; }
  .hero-phones { height: 440px; }
  .showcase   { padding: 36px 24px; }
  .bf-copy    { padding: 40px 36px; }
  .free-wrap  { padding: 48px 28px; }
  .cta .form-step { max-width: 100%; }
}

@media (max-width: 640px) {
  .hero       { padding: 110px 0 60px; }
  .wm         { font-size: clamp(38px,10.5vw,58px); }
  .fg, .fg2   { grid-template-columns: 1fr; }
  .nav-lk     { display: none; }
  .sec        { padding: 64px 0; }
  .showcase   { padding: 28px 16px; }
  .bf-copy    { padding: 32px 22px; }
  .free-wrap  { padding: 36px 20px; }
  .foot-i     { flex-direction: column; align-items: flex-start; }
  .ssep       { display: none; }
  .form-row   { flex-direction: column; }
}
