/* ═══════════════════════════════════════
   NAMO VARDAN — style.css
   Brand: Orange #E8730A + Cream #FFF8F0
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --orange:       #E8730A;
  --orange-dark:  #C45E05;
  --orange-glow:  #FF9230;
  --orange-pale:  #FFF0E0;
  --cream:        #FFF8F0;
  --cream-dark:   #F5EBD8;
  --brown:        #5C3317;
  --brown-light:  #8B5E3C;

  /* Neutrals */
  --ink:          #1A1008;
  --ink2:         #3D2A14;
  --ink3:         #8A7060;
  --border:       rgba(232,115,10,0.15);
  --white:        #FFFFFF;

  /* Sections */
  --bg-hero:      #FFF8F0;
  --bg-product:   #FFFFFF;
  --bg-how:       #1A1008;
  --bg-contact:   #FFF8F0;

  /* Type */
  --f-display:    'Bebas Neue', sans-serif;
  --f-cond:       'Barlow Condensed', sans-serif;
  --f-body:       'Barlow', sans-serif;

  /* Util */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --r:            12px;
  --r-lg:         20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── BUTTONS ─── */
.cta-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff;
  font-family: var(--f-cond); font-size: 16px; font-weight: 700; letter-spacing: .06em;
  padding: 14px 30px; border-radius: 100px;
  transition: background .25s, transform .2s, box-shadow .25s;
  border: none; cursor: pointer; white-space: nowrap;
}
.cta-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,115,10,.35);
}
.cta-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid var(--orange); color: var(--orange);
  font-family: var(--f-cond); font-size: 16px; font-weight: 700; letter-spacing: .06em;
  padding: 13px 28px; border-radius: 100px;
  transition: all .25s; white-space: nowrap;
}
.cta-secondary:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
}

/* ─── SECTION LABELS ─── */
.sec-label {
  display: inline-block;
  font-family: var(--f-cond); font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange);
  background: var(--orange-pale); border: 1px solid rgba(232,115,10,.25);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-header { margin-bottom: 60px; }
.sec-h2 {
  font-family: var(--f-cond); font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800; line-height: 1.05; color: var(--ink);
}
.sec-h2 em { font-style: italic; font-family: var(--f-body); color: var(--orange); font-weight: 300; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255,248,240,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
  height: 100px;
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  /* height: 72px;  */
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  margin-right: auto; display: flex; align-items: center;
  /* Logo space — sized to look right on black PNG background */
}
.nav-logo img {
  height: 70px; width: auto;
  margin-top: 20px;
  /* The logo has a black background — show it as a badge */
  /* border-radius: 8px;
  border: 2px solid rgba(232,115,10,0.3); */
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--f-cond); font-size: 15px; font-weight: 700; letter-spacing: .05em;
  color: var(--ink2); transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-btn {
  font-family: var(--f-cond); font-size: 14px; font-weight: 700; letter-spacing: .06em;
  background: var(--orange); color: #fff;
  padding: 9px 22px; border-radius: 100px;
  transition: background .25s, transform .2s;
}
.nav-btn:hover { background: var(--orange-dark); transform: translateY(-1px); color: #fff; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 199;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: all; }
.d-link {
  font-family: var(--f-cond); font-size: 36px; font-weight: 800; letter-spacing: .03em;
  color: var(--ink); padding: 8px 20px; transition: color .2s;
}
.d-link:hover { color: var(--orange); }
.d-cta {
  margin-top: 16px;
  background: var(--orange); color: #fff !important;
  font-size: 20px; padding: 14px 32px; border-radius: 100px;
}
.d-cta:hover { background: var(--orange-dark); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--bg-hero);
  padding: 110px 48px 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hb-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.b1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,115,10,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: blobdrift 12s ease-in-out infinite;
}
.b2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,146,48,0.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: blobdrift 9s ease-in-out infinite reverse 2s;
}
.hb-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,115,10,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,115,10,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
@keyframes blobdrift {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(30px,-20px) scale(1.06); }
  70% { transform: translate(-20px,25px) scale(0.96); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* ── Hero Copy ── */
.h-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-cond); font-size: 13px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--orange);
  background: var(--orange-pale); border: 1px solid rgba(232,115,10,.3);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:.5} }

.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--f-display);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.96;
  margin-bottom: 28px;
  letter-spacing: .01em;
}
.h1-top  { color: var(--ink); }
.h1-mid  { color: var(--orange); }
.h1-bot  { color: var(--brown); }

.hero-p {
  font-size: 17px; font-weight: 300; color: var(--ink2);
  max-width: 460px; line-height: 1.72; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pill {
  font-family: var(--f-cond); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  background: var(--white); color: var(--ink2);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
.main-card {
  width: 100%; max-width: 500px;
  background: #f8f8f8;
  transform: rotate(-1.5deg);
  transition: transform .4s var(--ease);
}
.main-card:hover { transform: rotate(0deg) scale(1.01); }
.main-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.float-card {
  position: absolute;
  bottom: -24px; left: 430px;
  width: 180px;
  background: var(--white);
  border: 2px solid var(--orange-pale);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  transform: rotate(2.5deg);
  z-index: 2;
  transition: transform .4s var(--ease);
}
.float-card:hover { transform: rotate(0deg) scale(1.04); }
.float-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.float-label {
  font-family: var(--f-cond); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--orange); text-align: center; padding: 8px 6px;
  text-transform: uppercase;
}

.hero-stat-badge {
  position: absolute; top: 16px; right: -16px; z-index: 2;
  background: var(--orange); color: #fff;
  border-radius: 50%; width: 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(232,115,10,.4);
  animation: badgebounce 3s ease-in-out infinite;
}
@keyframes badgebounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.badge-num { font-family: var(--f-display); font-size: 26px; line-height: 1; }
.badge-txt { font-family: var(--f-cond); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-align: center; line-height: 1.2; opacity: .9; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
}
.scroll-cue span {
  font-family: var(--f-cond); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink3);
}
.sc-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scline 1.8s ease-in-out infinite;
}
@keyframes scline { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 60%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0);transform-origin:bottom} }

/* ═══════════════════════════════════════
   PRODUCT SECTION
   ═══════════════════════════════════════ */
.product {
  background: var(--bg-product);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}

/* Images col */
.product-images { display: flex; flex-direction: column; gap: 14px; }
.pimg-main {
  border-radius: var(--r-lg); overflow: hidden;
  background: #f4f4f2;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.pimg-main img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s var(--ease);
}
.pimg-main:hover img { transform: scale(1.03); }

.pimg-thumbs { display: flex; gap: 12px; }
.thumb {
  flex: 1; border: 2px solid transparent; border-radius: var(--r);
  overflow: hidden; cursor: pointer; background: #f4f4f2;
  transition: border-color .2s, transform .2s; padding: 0;
}
.thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.thumb.active { border-color: var(--orange); }
.thumb:hover { transform: translateY(-3px); border-color: var(--orange-glow); }

/* Details col */
.product-details h3 {
  font-family: var(--f-cond); font-size: 38px; font-weight: 800;
  line-height: 1.05; color: var(--ink); margin-bottom: 16px;
}
.product-details h3 span {
  display: block; font-size: 18px; font-weight: 500; color: var(--orange);
  letter-spacing: .04em; font-family: var(--f-body);
}
.prod-desc {
  font-size: 15.5px; font-weight: 300; color: var(--ink2);
  line-height: 1.75; margin-bottom: 28px;
}

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.feat-list li { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feat-list strong { font-family: var(--f-cond); font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: .02em; display: block; margin-bottom: 2px; }
.feat-list p { font-size: 14px; font-weight: 300; color: var(--ink3); line-height: 1.6; }

.spec-row {
  display: flex; flex-direction: column; gap: 0;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; margin-bottom: 28px;
}
.spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid var(--border);
}
.spec:last-child { border-bottom: none; }
.spec-label { font-family: var(--f-cond); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); }
.spec-val { font-size: 14px; font-weight: 600; color: var(--ink); }

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.howitworks {
  background: var(--bg-how);
  padding: 120px 0;
}
.howitworks .sec-label {
  background: rgba(232,115,10,.15);
  border-color: rgba(232,115,10,.3);
  color: var(--orange-glow);
}
.howitworks .sec-h2 { color: var(--cream); }
.howitworks .sec-h2 em { color: var(--orange-glow); }

.steps-row {
  display: flex; align-items: flex-start; gap: 0;
  margin-bottom: 72px;
}
.step-card {
  flex: 1; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: transform .3s var(--ease);
}
.step-card:last-child { border-right: none; }
.step-card:hover { transform: translateY(-6px); }

.step-num {
  font-family: var(--f-display);
  font-size: 80px; line-height: 1;
  color: var(--orange); opacity: .25;
  margin-bottom: -12px;
  transition: opacity .3s;
}
.step-card:hover .step-num { opacity: .55; }

.step-img {
  border-radius: var(--r); overflow: hidden; margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.07);
}
.step-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.step-card h3 {
  font-family: var(--f-cond); font-size: 22px; font-weight: 800; letter-spacing: .02em;
  color: var(--cream); margin-bottom: 10px;
}
.step-card p {
  font-size: 14px; font-weight: 300; color: rgba(255,248,240,.55); line-height: 1.7;
}

.step-connector {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 90px; flex-shrink: 0; width: 40px;
}
.conn-line { flex: 1; width: 1px; background: linear-gradient(to bottom, transparent, rgba(232,115,10,.4), transparent); }
.conn-arrow { font-size: 28px; color: var(--orange); opacity: .5; line-height: 1; padding: 6px 0; }

/* Benefits strip */
.benefits-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(232,115,10,.1);
  border: 1px solid rgba(232,115,10,.2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ben-item {
  flex: 1; padding: 32px 24px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .25s;
}
.ben-item:hover { background: rgba(232,115,10,.12); }
.ben-num {
  font-family: var(--f-display);
  font-size: 48px; line-height: 1;
  color: var(--orange-glow);
}
.ben-txt {
  font-family: var(--f-cond); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,248,240,.6); line-height: 1.4; text-transform: uppercase;
}
.ben-div { width: 1px; height: 80px; background: rgba(232,115,10,.2); flex-shrink: 0; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  background: var(--bg-contact);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-brand {}
.contact-logo {
  width: 200px; border-radius: 10px;
  /* border: 2px solid rgba(232,115,10,.25); */
  margin-bottom: 24px;
}
.contact-brand > p {
  font-family: var(--f-body); font-size: 15px; font-style: italic; font-weight: 300;
  color: var(--ink2); line-height: 1.75; max-width: 320px; margin-bottom: 24px;
}
.contact-address {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink3); line-height: 1.6;
}
.contact-address svg { flex-shrink: 0; color: var(--orange); margin-top: 1px; }

/* Contact cards */
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.cc {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
  cursor: pointer;
}
.cc:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(232,115,10,.12);
}
.cc.whatsapp { border-color: rgba(37,211,102,.3); background: #f0fff5; }
.cc.whatsapp:hover { border-color: #25d366; box-shadow: 0 6px 24px rgba(37,211,102,.18); }
.cc.whatsapp .cc-icon { color: #25d366; }

.cc-icon { flex-shrink: 0; color: var(--orange); display: flex; align-items: center; }
.cc-body { flex: 1; display: flex; flex-direction: column; }
.cc-label { font-family: var(--f-cond); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink3); margin-bottom: 2px; }
.cc-val { font-family: var(--f-cond); font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: .02em; }
.cc-arrow { font-size: 20px; color: var(--orange); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; flex-shrink: 0; }
.cc:hover .cc-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   STORY
   ═══════════════════════════════════════ */
.story {
  background: var(--cream);
  padding: 100px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  align-items: center;
}
.story-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,16,8,.15);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.story-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(26,16,8,.25);
}
.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 28px 48px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  border-top: 1px solid rgba(232,115,10,.2); padding-top: 16px;
}
.footer-inner span, .footer-bottom span {
  font-family: var(--f-cond); font-size: 13px; letter-spacing: .06em;
  color: rgba(255,248,240,.35);
}
.footer-bottom span strong {
  color: var(--orange);
  font-weight: 700;
}
.footer-link {
  color: var(--orange);
  text-decoration: none;
  transition: color .25s;
  border-bottom: 1px solid rgba(232,115,10,.5);
}
.footer-link:hover {
  color: var(--orange-glow);
  border-bottom-color: var(--orange-glow);
}

/* ═══════════════════════════════════════
   FLOATING WA
   ═══════════════════════════════════════ */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: fabbounce 3s ease-in-out infinite 5s;
}
.fab:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,.6); animation: none; }
@keyframes fabbounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ═══════════════════════════════════════
   SOCIAL ICONS
   ═══════════════════════════════════════ */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 12px;
  border-radius: 8px;
}

.social-icon-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon-link:hover img {
  transform: scale(1.1);
}

.social-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: left; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .steps-row { flex-direction: column; gap: 0; }
  .step-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 32px 0; }
  .step-card:last-child { border-bottom: none; }
  .step-connector { display: none; }
  .benefits-strip { flex-wrap: wrap; }
  .ben-item { min-width: 45%; }
  .ben-div { display: none; }
}

@media (max-width: 640px) {
  .section-wrap { padding: 0 20px; }
  .hero { padding: 100px 20px 70px; }
  .hero-h1 { font-size: clamp(44px, 12vw, 70px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .product, .howitworks, .contact { padding: 80px 0; }
  .float-card { display: none; }
  .hero-stat-badge { top: -32px; right: 8px; width: 76px; height: 76px; }
  .badge-num { font-size: 20px; }
  .nav-wrap { padding: 0 20px; }
  .story { padding: 80px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; }
  .footer-bottom { padding-top: 12px; }
  .pimg-thumbs { flex-wrap: wrap; }
}
