/* ============================================================
   Vizity — Landing Page Stilleri
   ============================================================ */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:     #F0EEE9;
  --white:  #FDFCF9;
  --off:    #F4F3F0;
  --ink:    #0C0C0B;
  --ink2:   #2A2926;
  --mid:    #7A7872;
  --line:   #E5E3DF;
  --blue:   #0068FF;
  --bd:     #0045FF;
  --blue-bg:#E8F4FF;
  --gradient: linear-gradient(135deg, #00A8FF, #0045FF);
  --green:  #00C48C;
  --green-bg:#E6FBF5;
  --orange: #F59E0B;
  --purple: #7C3AED;
}
html  { scroll-behavior: smooth; }
body  { font-family: 'Bricolage Grotesque', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; }

/* ── Top accent bar ── */
.top-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #7C3AED, var(--green), var(--blue)); background-size: 200% 100%; animation: gradShift 5s linear infinite; z-index: 101; }
@keyframes gradShift { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }

/* ── NAV ── */
nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 100;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(240,238,233,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,227,223,.55);
  transition: all .2s;
}
nav.scrolled { background: rgba(253,252,249,.96); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-logo { font-size: 1.25rem; font-weight: 800; color: var(--ink); text-decoration: none; letter-spacing: -.04em; display: flex; align-items: center; }
.nav-logo span { color: var(--blue); }
.nav-logo-img { height: 60px; width: auto; image-rendering: auto; -ms-interpolation-mode: bicubic; }
.footer-logo-img { height: 60px; width: auto; image-rendering: auto; -ms-interpolation-mode: bicubic; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .82rem; font-weight: 500; color: var(--mid); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: .65rem; }
.btn-ghost {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: .8rem; font-weight: 500; color: var(--ink);
  background: transparent; border: 1.5px solid var(--line); border-radius: 8px; padding: .48rem 1.1rem;
  cursor: pointer; text-decoration: none; transition: all .15s;
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-cta {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: .8rem; font-weight: 700; color: #fff;
  background: var(--gradient); border: none; border-radius: 8px; padding: .5rem 1.2rem;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; transition: all .15s;
}
.btn-cta:hover { background: var(--blue); }
.btn-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; padding: 8rem 2.5rem 5rem;
  max-width: 1180px; margin: 0 auto;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 100px; padding: .3rem .9rem .3rem .5rem;
  font-size: .72rem; font-weight: 600; color: var(--ink2); margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.tag-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
.hero h1 {
  font-family: 'DM Serif Display', serif; font-size: clamp(3rem,5.5vw,5.2rem);
  font-weight: 400; line-height: 1.04; letter-spacing: -.03em; color: var(--ink); margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub { font-size: 1rem; color: var(--mid); line-height: 1.72; max-width: 420px; margin-bottom: 2.25rem; }
.hero-btns { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: .92rem; font-weight: 700; color: #fff;
  background: var(--gradient); border: none; border-radius: 10px; padding: .88rem 2rem;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  transition: all .2s; box-shadow: 0 4px 20px rgba(0,104,255,.28);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,69,255,.38); }
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.btn-secondary {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: .92rem; font-weight: 500; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px; padding: .85rem 1.75rem;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--ink); }
.hero-social-proof { }
.proof-badges { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: flex-start; }
.proof-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: .35rem .7rem; font-size: .72rem; color: var(--mid); white-space: nowrap;
}
.proof-badge strong { color: var(--ink); font-weight: 700; }

/* ── HERO VISUAL ── */
.hero-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.hero-carousel { position: relative; width: 442px; height: 416px; overflow: hidden; border-radius: 20px; }
.hero-carousel-track { display: flex; width: 200%; height: 100%; transition: transform 0.5s ease; }
.hero-slide { width: 50%; height: 100%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-slide-img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.2)); }

/* NFC Kartlar slaytı */
.hero-cards-wrapper { position: relative; width: 364px; height: 260px; display: flex; align-items: center; justify-content: center; }
.hero-nfc-card { width: 286px; aspect-ratio: 1.586; object-fit: cover; border-radius: 14px; position: absolute; box-shadow: 0 20px 40px rgba(0,0,0,.25); transform-origin: center center; image-rendering: high-quality; }
.hero-nfc-1 { transform: rotate(-6deg) translateX(-35px); z-index: 1; }
.hero-nfc-2 { transform: rotate(5deg) translateX(35px); z-index: 2; }

/* Carousel noktaları */
.hero-dots { display: flex; gap: 8px; z-index: 5; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  transition: all .3s; cursor: pointer; border: none; padding: 0; outline: none;
}
.hero-dot:hover { background: var(--mid); }
.hero-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ── LOGOS MARQUEE ── */
.logos-section { border-bottom: 1px solid var(--line); padding: 1.25rem 0; overflow: hidden; background: var(--off); }
.logos-inner { display: flex; align-items: center; gap: 3.5rem; width: max-content; animation: marquee 22s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logos-label { font-size: .68rem; font-weight: 500; color: var(--mid); white-space: nowrap; letter-spacing: .04em; flex-shrink: 0; }
.logo-co { font-size: .85rem; font-weight: 800; color: var(--line); letter-spacing: -.02em; flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 7rem 2.5rem; max-width: 1180px; margin: 0 auto; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .68rem; font-weight: 700;
  color: var(--blue); background: var(--blue-bg); border: 1px solid rgba(0,104,255,.15);
  border-radius: 100px; padding: .25rem .9rem; margin-bottom: 1.1rem; letter-spacing: .04em; text-transform: uppercase;
}
.sec-title {
  font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.8vw,3.2rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -.03em; margin-bottom: .75rem;
}
.sec-title em { font-style: italic; color: var(--blue); }
.sec-sub { font-size: .95rem; color: var(--mid); line-height: 1.7; max-width: 440px; }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; margin-top: 4rem;
}
.feat { background: var(--white); padding: 2rem 1.75rem; transition: background .15s; }
.feat:hover { background: var(--off); }
.feat-ico {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.1rem;
}
.feat-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feat-title { font-size: .92rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .4rem; }
.feat-text  { font-size: .8rem; color: var(--mid); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.hiw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; }
.hiw-card-v2 { background: var(--off); border: 1.5px solid var(--line); border-radius: 16px; padding: 2rem 1.5rem; position: relative; transition: all .2s; }
.hiw-card-v2:hover { border-color: rgba(0,104,255,.2); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.hiw-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.hiw-card-num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; font-weight: 400; color: var(--line); line-height: 1; }
.hiw-card-ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hiw-card-title { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .45rem; letter-spacing: -.01em; }
.hiw-card-desc { font-size: .82rem; color: var(--mid); line-height: 1.7; }
.hiw-card-arrow { position: absolute; right: -1.35rem; top: 50%; transform: translateY(-50%); z-index: 2; background: var(--white); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--line); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
/* Eski stiller (kullanılmıyor ama uyumluluk) */
.hiw-wrap,.hiw-steps,.hiw-step,.hiw-num,.hiw-step-title,.hiw-step-text,.hiw-cta,.hiw-visual,.hiw-bg-dots { }
.hiw-card {
  position: relative; z-index: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 1.25rem; margin-bottom: .75rem; backdrop-filter: blur(4px); transition: all .3s;
}
.hiw-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); }
.hc-row { display: flex; align-items: center; gap: .75rem; }
.hc-av { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: #fff; }
.hc-name { font-size: .8rem; font-weight: 700; color: #fff; }
.hc-role { font-size: .65rem; color: rgba(255,255,255,.4); }
.hc-stat { margin-left: auto; text-align: right; }
.hc-stat-val { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: #fff; line-height: 1; }
.hc-stat-lbl { font-size: .58rem; color: rgba(255,255,255,.35); }

/* ── NFC SECTION ── */
.nfc-section { background: var(--ink); padding: 7rem 2.5rem; position: relative; overflow: hidden; }
.nfc-bg-glow { position: absolute; top: -30%; right: -10%; width: 60%; height: 160%; background: radial-gradient(ellipse,rgba(0,104,255,.12) 0%,transparent 65%); }
.nfc-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.nfc-left .sec-eyebrow { background: rgba(0,104,255,.2); border-color: rgba(0,104,255,.3); color: #7ca6ff; }
.nfc-left .sec-title { color: #fff; }
.nfc-left .sec-sub   { color: rgba(255,255,255,.45); }
.nfc-feats { display: flex; flex-direction: column; gap: .85rem; margin: 2rem 0; }
.nfc-feat { display: flex; align-items: center; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.75); }
.nfc-feat-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(0,196,140,.15); border: 1px solid rgba(0,196,140,.3); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nfc-feat-check svg { width: 10px; height: 10px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.nfc-price-row { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; margin-top:.5rem; }
.nfc-price-tag { display: inline-flex; align-items: baseline; gap: .35rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: .65rem 1.1rem; }
.nfc-price-val { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: #fff; }
.nfc-price-sub { font-size: .75rem; color: rgba(255,255,255,.35); }
.nfc-right { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.nfc-card-big { width: 220px; aspect-ratio: 1.586; border-radius: 16px; box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06); overflow: hidden; position: relative; transition: transform .3s; }
.nfc-card-big:hover { transform: translateY(-4px) !important; }
.nfc-card-big-inner { padding: 1rem 1.1rem; height: 100%; display: flex; flex-direction: column; justify-content: space-between; position: relative; z-index: 1; }
.nfc-card-big .bg-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(0,104,255,.2) 1px,transparent 1px); background-size: 16px 16px; opacity: .5; }

/* ── PRICING ── */
.pricing-head { text-align: center; margin-bottom: 3rem; }
.period-toggle { display: inline-flex; align-items: center; gap: .3rem; background: var(--white); border: 1.5px solid var(--line); border-radius: 100px; padding: .3rem; margin-top: 1.5rem; }
.period-btn { font-family: 'Bricolage Grotesque', sans-serif; font-size: .78rem; font-weight: 600; color: var(--mid); background: none; border: none; border-radius: 100px; padding: .4rem 1.1rem; cursor: pointer; transition: all .15s; }
.period-btn.active { background: var(--ink); color: #fff; }
.period-save { font-size: .62rem; font-weight: 700; background: var(--green-bg); color: var(--green); border-radius: 100px; padding: .15rem .55rem; margin-left: .25rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .75rem; align-items: stretch; }
.plan { background: var(--white); border: 1.5px solid var(--line); border-radius: 16px; padding: 2rem; transition: border-color .2s, box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.plan .plan-feats { flex: 1; }
.plan .plan-btn, .plan > a.plan-btn { margin-top: auto; }
.plan:hover { border-color: rgba(0,104,255,.2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.plan.featured { background: var(--ink); border-color: transparent; transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.plan.featured:hover { transform: scale(1.03) translateY(-2px); }
.plan-tag { display: inline-flex; align-items: center; gap: .3rem; font-size: .62rem; font-weight: 700; border-radius: 100px; padding: .18rem .65rem; margin-bottom: 1.25rem; letter-spacing: .04em; }
.tag-free { background: var(--off); color: var(--mid); border: 1px solid var(--line); }
.tag-pro  { background: rgba(0,104,255,.15); color: #7ca6ff; }
.tag-ent  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.plan-price { font-family: 'DM Serif Display', serif; font-size: 2.5rem; font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: .2rem; }
.plan.featured .plan-price { color: #fff; }
.plan-price sup { font-size: 1.1rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.plan-period { font-size: .72rem; color: var(--mid); margin-bottom: 1.1rem; min-height: 1.4em; }
.plan.featured .plan-period { color: rgba(255,255,255,.35); }
.plan-name { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.plan.featured .plan-name { color: #fff; }
.plan-desc { font-size: .78rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.55; }
.plan.featured .plan-desc { color: rgba(255,255,255,.4); }
.plan-feats { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pf { display: flex; align-items: center; gap: .55rem; font-size: .8rem; color: var(--ink2); }
.plan.featured .pf { color: rgba(255,255,255,.75); }
.pf.off { opacity: .3; }
.pf-ic { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pf-ic svg { width: 8px; height: 8px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.plan-btn { width: 100%; padding: .82rem; font-family: 'Bricolage Grotesque', sans-serif; font-size: .88rem; font-weight: 700; border-radius: 10px; cursor: pointer; transition: all .15s; }
.plan-btn-free { background: var(--off); color: var(--ink2); border: 1.5px solid var(--line); }
.plan-btn-free:hover { border-color: var(--ink); }
.plan-btn-pro { background: var(--blue); color: #fff; border: none; box-shadow: 0 4px 14px rgba(0,104,255,.3); }
.plan-btn-pro:hover { background: var(--bd); }
.plan-btn-ent { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); }
.plan-btn-ent:hover { background: rgba(255,255,255,.14); }

/* ── PRICING V2 ── */
.pricing-grid-v2 { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; background: var(--white); border: 1.5px solid var(--line); border-radius: 20px; overflow: hidden; margin-top: 2.5rem; }
.plan-v2 { padding: 2.25rem 2.5rem; display: flex; flex-direction: column; }
.plan-v2-pro { background: var(--ink); }
.plan-divider { width: 1.5px; background: var(--line); margin: 0; }
.plan-ent-strip { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; background: var(--ink); border-radius: 16px; padding: 1.25rem 1.75rem; margin-top: .75rem; }
.plan-ent-left { display: flex; flex-direction: column; }
@media (max-width: 680px) {
  .nav-logo-img { height: 48px; }
  .footer-logo-img { height: 48px; }
  .pricing-grid-v2 { grid-template-columns: 1fr; }
  .plan-divider { width: auto; height: 1.5px; }
  .plan-v2 { padding: 1.75rem; }
  .plan-ent-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── TESTIMONIALS ── */
.testi-carousel { overflow: hidden; margin-top: 3rem; mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent); }
.testi-track { display: flex; gap: .85rem; animation: testiScroll 35s linear infinite; width: max-content; }
.testi-track:hover { animation-play-state: paused; }
@keyframes testiScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testi { flex-shrink: 0; width: 340px; background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; padding: 1.5rem; transition: all .2s; }
.testi:hover { border-color: rgba(0,104,255,.2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.testi-stars { display: flex; gap: 2px; margin-bottom: .85rem; }
.testi-stars span { color: var(--orange); font-size: .8rem; }
.testi-text { font-size: .85rem; color: var(--ink2); line-height: 1.7; margin-bottom: 1.1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .65rem; }
.testi-name { font-size: .8rem; font-weight: 700; }
.testi-role { font-size: .68rem; color: var(--mid); }

/* ── CTA ── */
.cta-section { background: var(--gradient); padding: 6rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-mesh { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.1) 1px,transparent 1px); background-size: 24px 24px; opacity: .5; }
.cta-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem,4.5vw,3.8rem); font-weight: 400; color: #fff; line-height: 1.08; letter-spacing: -.03em; margin-bottom: 1rem; position: relative; }
.cta-title em { font-style: italic; opacity: .55; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.55); margin-bottom: 2.5rem; line-height: 1.65; max-width: 440px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: .75rem; flex-wrap: wrap; position: relative; }
.btn-white { font-family: 'Bricolage Grotesque', sans-serif; font-size: .92rem; font-weight: 700; color: var(--blue); background: #fff; border: none; border-radius: 10px; padding: .88rem 2rem; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-white-ghost { font-family: 'Bricolage Grotesque', sans-serif; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.75); background: transparent; border: 1.5px solid rgba(255,255,255,.25); border-radius: 10px; padding: .85rem 1.75rem; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-white-ghost:hover { border-color: rgba(255,255,255,.55); color: #fff; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 4rem 2.5rem 2.5rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -.04em; margin-bottom: .75rem; display: inline-block; text-decoration: none; }
.footer-logo span { color: var(--blue); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── SCROLL REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }
[data-reveal-delay="5"] { transition-delay: .5s; }

/* ── MOBILE NAV ── */
.mob-drawer {
  display: none; position: fixed; top: 61px; left: 0; right: 0; bottom: 0;
  background: rgba(253,252,249,.97); backdrop-filter: blur(16px); z-index: 99;
  flex-direction: column; padding: 1.5rem 2rem; gap: 0; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.mob-drawer.open { transform: translateX(0); display: flex; }
.mob-link { display: block; font-size: 1.1rem; font-weight: 600; color: var(--ink); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.mob-link:last-child { border-bottom: none; }
.mob-actions { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1.5px solid var(--line); }
.mob-actions .btn-cta { padding: .9rem; font-size: 1rem; font-weight: 800; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,69,255,.3); text-align: center; justify-content: center; }
.mob-actions .btn-ghost { padding: .75rem; font-size: .92rem; text-align: center; border-radius: 10px; border: 1.5px solid var(--line); }
.ham-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .2rem; }
.ham-btn span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .2s; }
.ham-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham-btn.open span:nth-child(2) { opacity: 0; }
.ham-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { padding: 8rem 1.5rem 5rem; gap: 3rem; }
  .nfc-inner { gap: 3rem; }
  .hiw-cards { grid-template-columns: 1fr; }
  .hiw-card-arrow { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 1.5rem 4rem; min-height: auto; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .proof-badges { justify-content: center; }
  .hero-carousel { width: 351px; height: 328px; }
  .hero-nfc-card { width: 211px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .nfc-inner { grid-template-columns: 1fr; text-align: center; }
  .nfc-left .sec-sub { max-width: 100%; }
  .nfc-feats { align-items: flex-start; max-width: 320px; margin-left: auto; margin-right: auto; }
  .nfc-price-row { justify-content: center; }
  .nfc-right { flex-direction: column; gap: 1rem; }
  .hiw-cta { padding-left: 0; }
  .hiw-cta .btn-primary { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .plan.featured { transform: none; }
  .testi { width: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .nav-links, .nav-right { display: none; }
  .ham-btn { display: flex; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .footer-col h4 { font-size: .85rem; margin-bottom: .85rem; }
  .footer-col a { font-size: .92rem; }
  .section { padding: 4rem 1.25rem; }
  .nfc-section { padding: 4rem 1.25rem; }
  .cta-section { padding: 4rem 1.25rem; }
  footer { padding: 3rem 1.25rem 2rem; }
}
