/* ============================================================
   DHUKAN — Design System
   Palette (from the official logo): Dark Green #0F5D3A,
   White #FFFFFF, Gold #F4B400.
   Type: Sora (display, geometric warmth) + Inter (UI/body) +
         JetBrains Mono (data — the delivery countdown is the signature).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&family=Caveat:wght@600;700&display=swap');

:root{
  /* ---- color tokens : light ---- */
  --bg: #FFFFFF;
  --bg-alt: #F5F8F6;
  --surface: #FFFFFF;
  --surface-glass: rgba(255,255,255,0.66);
  --border: rgba(15,93,58,0.12);
  --ink: #10231A;
  --ink-soft: #4C6156;
  --ink-faint: #7E938A;
  --brand: #0F5D3A;
  --brand-2: #0A3D26;
  --brand-tint: #E5F1EB;
  --accent: #F4B400;
  --accent-ink: #3A2900;
  --accent-2: #D99A00;
  --danger: #C1432A;
  --success: #0F5D3A;
  --shadow-sm: 0 1px 3px rgba(15,35,26,0.06), 0 1px 2px rgba(15,35,26,0.05);
  --shadow-md: 0 10px 28px rgba(15,35,26,0.09), 0 3px 10px rgba(15,35,26,0.05);
  --shadow-lg: 0 28px 70px rgba(15,35,26,0.15), 0 10px 26px rgba(15,35,26,0.08);
  --shadow-glow: 0 0 0 1px rgba(244,180,0,0.35), 0 8px 32px rgba(244,180,0,0.25);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(.16,.84,.28,1);
  color-scheme: light;
}

html[data-theme="dark"]{
  --bg: #071A12;
  --bg-alt: #0B2117;
  --surface: #0E2A1D;
  --surface-glass: rgba(14,42,29,0.58);
  --border: rgba(255,255,255,0.09);
  --ink: #EFF6F2;
  --ink-soft: #A6BDB1;
  --ink-faint: #6C8577;
  --brand: #35A46B;
  --brand-2: #163F2A;
  --brand-tint: rgba(53,164,107,0.14);
  --accent: #FFC933;
  --accent-ink: #241900;
  --accent-2: #F0B300;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 28px rgba(0,0,0,0.35);
  --shadow-lg: 0 28px 70px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 0 1px rgba(255,201,51,0.3), 0 8px 32px rgba(255,201,51,0.18);
  color-scheme: dark;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition: background .35s ease, color .35s ease;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1rem; }

h1,h2,h3,h4{
  font-family:'Sora',sans-serif;
  font-weight:700;
  line-height:1.12;
  letter-spacing:-0.01em;
  margin:0;
  color: var(--ink);
}
.mono{ font-family:'JetBrains Mono',monospace; }

.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }
.section{ padding: 112px 0; position:relative; }
.section-tight{ padding: 72px 0; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'JetBrains Mono',monospace;
  font-size:.75rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color: var(--brand);
  background: var(--brand-tint);
  padding:6px 14px; border-radius: var(--radius-pill);
  margin-bottom:20px;
}
html[data-theme="dark"] .eyebrow{ color: var(--accent); }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size: clamp(1.9rem, 3.2vw, 2.75rem); }
.section-head p{ color: var(--ink-soft); font-size:1.05rem; margin-top:16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius: var(--radius-pill);
  font-weight:600; font-size:.95rem; letter-spacing:.01em; border:1px solid transparent;
  position:relative; overflow:hidden; isolation:isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform: scale(.96); }
.btn-primary{ background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#fff; box-shadow: var(--shadow-md); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-accent{ background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink); box-shadow: var(--shadow-glow); }
.btn-accent:hover{ transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(244,180,0,0.4), 0 14px 40px rgba(244,180,0,0.32); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover{ background: var(--surface); border-color: var(--brand); transform: translateY(-2px); }
.btn-lg{ padding:17px 32px; font-size:1.02rem; }
.btn-sm{ padding:10px 18px; font-size:.85rem; }
.btn-block{ width:100%; }
.ripple{ position:absolute; border-radius:50%; background:rgba(255,255,255,.55); transform:scale(0); animation: ripple .6s ease-out; pointer-events:none; }
@keyframes ripple{ to{ transform:scale(3); opacity:0; } }

/* ---- glass / cards ---- */
.glass{
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border:1px solid var(--border);
}
.card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.card:hover{ transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(15,93,58,0.28); }

/* ================= HEADER ================= */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-h);
  display:flex; align-items:center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, height .3s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.site-header.scrolled{
  height:64px;
  background: var(--surface-glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: var(--shadow-sm);
  border-bottom:1px solid var(--border);
}
.brand{ display:flex; align-items:center; gap:11px; font-family:'Sora',sans-serif; font-weight:800; font-size:1.32rem; letter-spacing:-0.02em; }
.brand-mark{
  width:42px; height:42px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  transform-origin:center;
  transition: transform .5s var(--ease);
}
.brand-mark img{ width:100%; height:100%; object-fit:contain; display:block; }
.brand:hover .brand-mark{ transform: rotate(-8deg) scale(1.08); }
.footer-brand .brand .brand-mark, .footer-brand .brand{ color:#fff; }

.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  padding:10px 16px; border-radius: var(--radius-pill); font-weight:600; font-size:.92rem;
  color: var(--ink-soft); position:relative; transition: color .25s ease, background .25s ease;
}
.nav-links a:hover{ color: var(--ink); background: var(--surface); }
.nav-links a.active{ color: var(--brand); background: var(--brand-tint); }
html[data-theme="dark"] .nav-links a.active{ color: var(--accent); }

.nav-right{ display:flex; align-items:center; gap:12px; }
.theme-toggle{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--border);
  background: var(--surface); display:flex; align-items:center; justify-content:center;
  color: var(--ink); transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s ease;
}
.theme-toggle:hover{ transform: rotate(20deg); }
.theme-toggle svg{ width:19px; height:19px; }
.theme-toggle .sun{ display:none; }
html[data-theme="dark"] .theme-toggle .moon{ display:none; }
html[data-theme="dark"] .theme-toggle .sun{ display:block; }

.hamburger{ display:none; width:42px; height:42px; border-radius:50%; border:1px solid var(--border); background:var(--surface); align-items:center; justify-content:center; }
.hamburger span{ display:block; width:18px; height:2px; background: var(--ink); position:relative; transition:.3s; }
.hamburger span::before,.hamburger span::after{ content:''; position:absolute; left:0; width:18px; height:2px; background: var(--ink); transition:.3s; }
.hamburger span::before{ top:-6px; } .hamburger span::after{ top:6px; }
.hamburger.open span{ background: transparent; }
.hamburger.open span::before{ transform: rotate(45deg); top:0; }
.hamburger.open span::after{ transform: rotate(-45deg); top:0; }

.mobile-drawer{
  position: fixed; inset:0; z-index:999; display:flex; justify-content:flex-end;
  visibility:hidden; opacity:0; transition: opacity .3s ease, visibility .3s ease;
}
.mobile-drawer.open{ visibility:visible; opacity:1; }
.mobile-drawer .scrim{ position:absolute; inset:0; background: rgba(10,18,15,0.5); }
.mobile-drawer .panel{
  position:relative; width:min(320px,82vw); height:100%; background: var(--bg);
  padding:100px 28px 28px; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display:flex; flex-direction:column; gap:6px;
}
.mobile-drawer.open .panel{ transform: translateX(0); }
.mobile-drawer a.drawer-brand{ display:flex; align-items:center; gap:10px; padding:0 6px 20px; margin-bottom:6px; border-bottom:1px solid var(--border); font-family:'Sora',sans-serif; font-weight:800; font-size:1.15rem; }
.mobile-drawer a.drawer-brand img{ width:36px; height:36px; object-fit:contain; }
.mobile-drawer a{ padding:14px 6px; font-weight:600; font-size:1.05rem; border-bottom:1px solid var(--border); }
.mobile-drawer .btn{ margin-top:20px; }

/* progress bar */
.scroll-progress{ position:fixed; top:0; left:0; height:3px; background: linear-gradient(90deg, var(--brand), var(--accent)); z-index:1100; width:0%; }

/* ================= HERO ================= */
.hero{
  position:relative; padding: calc(var(--nav-h) + 64px) 0 96px;
  overflow:hidden;
  background:
    radial-gradient(700px 420px at 85% -10%, var(--brand-tint), transparent 60%),
    radial-gradient(600px 380px at -10% 30%, rgba(242,169,59,0.14), transparent 60%);
}
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:56px; align-items:center; }
.hero h1{ font-size: clamp(2.5rem, 5vw, 3.85rem); }
.hero-sub{ font-size:1.15rem; color: var(--ink-soft); margin:22px 0 30px; max-width:520px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }

.pincode-check{
  display:flex; gap:8px; padding:8px; border-radius: var(--radius-pill);
  max-width:440px;
}
.pincode-check input{
  flex:1; border:none; background:transparent; padding:10px 14px; color:var(--ink); outline:none;
}
.pincode-check input::placeholder{ color: var(--ink-faint); }

.trust-row{ display:flex; flex-wrap:wrap; gap:26px; margin-top:36px; }
.trust-row .item{ display:flex; align-items:center; gap:8px; font-size:.85rem; color: var(--ink-soft); font-weight:600; }
.trust-row svg{ width:18px; height:18px; color: var(--brand); }

/* hero visual: floating glass cart */
.hero-visual{ position:relative; height:480px; }
.hero-card{
  position:absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding:20px; animation: floaty 6s ease-in-out infinite;
}
.hero-card.main{ width:78%; left:8%; top:6%; z-index:3; padding:24px; }
.hero-card.timer{ width:64%; right:-4%; bottom:6%; z-index:4; animation-delay:.6s; }
.hero-card.badge{ width:44%; left:-6%; bottom:-2%; z-index:2; animation-delay:1.2s; }
@keyframes floaty{ 0%,100%{ transform: translateY(0px);} 50%{ transform: translateY(-14px);} }

.timer-chip{ display:flex; align-items:center; gap:14px; }
.timer-chip .clock{ width:46px; height:46px; border-radius:50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display:flex; align-items:center; justify-content:center; color:var(--accent-ink); flex-shrink:0; }
.timer-digits{ font-family:'JetBrains Mono',monospace; font-size:1.6rem; font-weight:600; letter-spacing:.02em; }
.timer-label{ font-size:.72rem; color: var(--ink-faint); text-transform:uppercase; letter-spacing:.1em; margin-top:2px; }

.product-row{ display:flex; align-items:center; gap:12px; padding:10px; border-radius:14px; }
.product-row + .product-row{ margin-top:8px; }
.product-row img{ width:44px; height:44px; border-radius:10px; object-fit:cover; }
.product-row .name{ font-weight:600; font-size:.9rem; }
.product-row .qty{ font-size:.78rem; color: var(--ink-faint); }
.product-row .price{ margin-left:auto; font-weight:700; font-family:'JetBrains Mono',monospace; }

/* ---- stats ---- */
.stats-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat{ text-align:center; padding:32px 16px; border-radius: var(--radius-md); background: var(--surface); border:1px solid var(--border); }
.stat .num{ font-family:'JetBrains Mono',monospace; font-size:2.4rem; font-weight:600; color: var(--brand); }
html[data-theme="dark"] .stat .num{ color: var(--accent); }
.stat .label{ margin-top:6px; color: var(--ink-soft); font-size:.88rem; font-weight:600; }

/* ---- grids ---- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.feature-card{ padding:32px; }
.feature-icon{
  width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background: var(--brand-tint); color: var(--brand); margin-bottom:20px;
}
.feature-icon svg{ width:24px; height:24px; }
.feature-card h3{ font-size:1.18rem; margin-bottom:10px; }
.feature-card p{ color: var(--ink-soft); font-size:.94rem; }

/* service cards */
.service-card{ padding:36px 30px; position:relative; }
.service-card .num{ position:absolute; top:24px; right:28px; font-family:'JetBrains Mono',monospace; font-size:.78rem; color: var(--ink-faint); }
.service-card img.thumb{ width:100%; height:170px; object-fit:cover; border-radius: var(--radius-md); margin-bottom:22px; }
.service-card h3{ font-size:1.3rem; margin-bottom:10px; }
.service-card p{ color: var(--ink-soft); font-size:.95rem; margin-bottom:18px; }
.service-card .link{ font-weight:700; color: var(--brand); display:inline-flex; align-items:center; gap:6px; font-size:.9rem; }
html[data-theme="dark"] .service-card .link{ color: var(--accent); }
.service-card .link svg{ width:15px; height:15px; transition: transform .25s ease; }
.service-card:hover .link svg{ transform: translateX(4px); }

/* process timeline */
.timeline{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.timeline::before{ content:''; position:absolute; top:23px; left:8%; right:8%; height:2px; background: var(--border); }
.timeline-step{ text-align:center; padding:0 14px; position:relative; }
.timeline-step .dot{ width:46px; height:46px; border-radius:50%; background: var(--surface); border:2px solid var(--brand); color:var(--brand); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-family:'JetBrains Mono',monospace; font-weight:700; position:relative; z-index:2; }
.timeline-step h4{ font-size:1rem; margin-bottom:8px; }
.timeline-step p{ font-size:.85rem; color: var(--ink-soft); }

/* pricing */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:stretch; }
.price-card{ padding:36px 30px; display:flex; flex-direction:column; }
.price-card.popular{ border-color: var(--brand); box-shadow: var(--shadow-md); position:relative; transform: scale(1.03); }
.price-card .tag{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: var(--accent-ink); font-size:.72rem; font-weight:700; padding:6px 16px; border-radius: var(--radius-pill); text-transform:uppercase; letter-spacing:.06em; }
.price-card h3{ font-size:1.1rem; }
.price-card .amount{ font-family:'JetBrains Mono',monospace; font-size:2.6rem; font-weight:700; margin:14px 0 4px; }
.price-card .amount span{ font-size:1rem; color: var(--ink-faint); font-weight:500; }
.price-card ul{ margin:26px 0; flex:1; }
.price-card li{ display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color: var(--ink-soft); padding:8px 0; border-top:1px solid var(--border); }
.price-card li:first-child{ border-top:none; }
.price-card svg{ width:16px; height:16px; color: var(--brand); flex-shrink:0; margin-top:2px; }

/* comparison table */
.compare-table{ width:100%; border-collapse:collapse; background: var(--surface); border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); }
.compare-table th,.compare-table td{ padding:16px 20px; text-align:center; border-bottom:1px solid var(--border); font-size:.9rem; }
.compare-table th{ font-family:'Sora',sans-serif; font-size:.85rem; }
.compare-table td:first-child, .compare-table th:first-child{ text-align:left; font-weight:600; }
.compare-table thead th.us{ color: var(--brand); }
.compare-table .yes{ color: var(--brand); }
.compare-table .no{ color: var(--ink-faint); }

/* testimonials */
.testimonial-track{ display:flex; gap:24px; overflow:hidden; }
.testimonial-slider{ position:relative; }
.t-card{ min-width:100%; padding:40px; }
.t-card .stars{ color: var(--accent); letter-spacing:2px; margin-bottom:16px; }
.t-card p{ font-size:1.08rem; color: var(--ink); margin-bottom:24px; }
.t-card .who{ display:flex; align-items:center; gap:12px; }
.t-card .who img{ width:46px; height:46px; border-radius:50%; object-fit:cover; }
.t-card .who .name{ font-weight:700; font-size:.92rem; }
.t-card .who .role{ font-size:.8rem; color: var(--ink-faint); }
.slider-dots{ display:flex; gap:8px; justify-content:center; margin-top:20px; }
.slider-dots button{ width:8px; height:8px; border-radius:50%; background: var(--border); border:none; padding:0; transition:.25s; }
.slider-dots button.active{ background: var(--brand); width:22px; border-radius:5px; }

/* faq */
.faq-item{ border-bottom:1px solid var(--border); padding:22px 4px; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:1rem; }
.faq-q svg{ width:18px; height:18px; transition: transform .3s ease; flex-shrink:0; }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; color: var(--ink-soft); font-size:.94rem; }
.faq-item.open .faq-a{ max-height:240px; margin-top:14px; }

/* newsletter */
.newsletter{
  border-radius: var(--radius-lg); padding:56px; text-align:center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#fff; position:relative; overflow:hidden;
}
.newsletter::after{ content:''; position:absolute; inset:0; background: radial-gradient(400px 200px at 90% 0%, rgba(242,169,59,0.35), transparent 60%); }
.newsletter-mark{ width:56px; height:56px; object-fit:contain; margin:0 auto 18px; position:relative; z-index:1; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25)); }
.newsletter h2{ color:#fff; }
.newsletter p{ color: rgba(255,255,255,0.82); margin:14px 0 28px; }
.newsletter-form{ display:flex; gap:10px; max-width:440px; margin:0 auto; position:relative; z-index:1; }
.newsletter-form input{ flex:1; border:none; padding:14px 18px; border-radius: var(--radius-pill); outline:none; }

/* final cta */
.final-cta{ text-align:center; }
.final-cta h2{ font-size: clamp(2rem,3.6vw,3rem); }
.final-cta p{ color: var(--ink-soft); margin:16px 0 32px; }

/* footer */
.site-footer{ background: var(--brand-2); color: rgba(255,255,255,0.82); padding:72px 0 28px; }
html[data-theme="dark"]{ } 
.site-footer a{ color: rgba(255,255,255,0.72); transition: color .2s ease; }
.site-footer a:hover{ color:#fff; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; }
.footer-grid h4{ color:#fff; font-size:.95rem; margin-bottom:18px; }
.footer-grid li{ margin-bottom:10px; font-size:.9rem; }
.footer-brand p{ margin:16px 0 20px; font-size:.9rem; color: rgba(255,255,255,0.65); max-width:280px; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background: var(--accent); color: var(--accent-ink); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; margin-top:3px; flex-shrink:0; color: var(--accent); }
.footer-newsletter input{ width:100%; padding:12px 14px; border-radius: var(--radius-pill); border:1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color:#fff; margin-bottom:10px; outline:none; }
.footer-newsletter input::placeholder{ color: rgba(255,255,255,0.5); }
.footer-bottom{ margin-top:56px; padding-top:24px; border-top:1px solid rgba(255,255,255,0.12); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.82rem; color: rgba(255,255,255,0.55); }
.footer-bottom .links{ display:flex; gap:18px; }

/* floating buttons */
.floating-stack{ position:fixed; right:22px; bottom:22px; z-index:900; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.fab{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lg); border:none; transition: transform .25s ease; }
.fab:hover{ transform: scale(1.08); }
.fab svg{ width:24px; height:24px; }
.fab-whatsapp{ background:#25D366; color:#fff; }
.fab-call{ background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#fff; }
.fab-top{ width:44px; height:44px; background: var(--surface); border:1px solid var(--border); color: var(--ink); opacity:0; visibility:hidden; transform: translateY(10px); }
.fab-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* cookie consent */
.cookie-banner{
  position:fixed; left:22px; right:22px; bottom:22px; z-index:1200; max-width:560px;
  padding:22px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display:flex; flex-direction:column; gap:14px; transform: translateY(140%); transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.show{ transform: translateY(0); }
.cookie-banner p{ font-size:.87rem; color: var(--ink-soft); margin:0; }
.cookie-actions{ display:flex; gap:10px; }

/* loading screen */
.loader{ position:fixed; inset:0; background: var(--bg); z-index:2000; display:flex; align-items:center; justify-content:center; transition: opacity .5s ease, visibility .5s ease; }
.loader.done{ opacity:0; visibility:hidden; }
.loader-mark{ width:88px; height:88px; display:flex; align-items:center; justify-content:center; animation: pulse 1.1s ease-in-out infinite; }
.loader-mark img{ width:100%; height:100%; object-fit:contain; }
@keyframes pulse{ 0%,100%{ transform: scale(1); opacity:1; } 50%{ transform: scale(.88); opacity:.7; } }

/* scroll reveal */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-scale{ opacity:0; transform: scale(.95); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-scale.in{ opacity:1; transform: scale(1); }
.stagger.in > *{ transition-delay: calc(var(--i,0) * 90ms); }

/* form */
.form-card{ padding:44px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:8px; }
.field input,.field textarea,.field select{
  width:100%; padding:13px 16px; border-radius:12px; border:1px solid var(--border); background: var(--bg); color: var(--ink); outline:none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,.field textarea:focus,.field select:focus{ border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.field textarea{ resize:vertical; min-height:120px; }
.field.error input,.field.error textarea{ border-color: var(--danger); }
.field .err-msg{ color: var(--danger); font-size:.8rem; margin-top:6px; display:none; }
.field.error .err-msg{ display:block; }
.form-success{ display:none; text-align:center; padding:40px; }
.form-success.show{ display:block; }
.form-success svg{ width:52px; height:52px; color: var(--brand); margin-bottom:16px; }

/* info tiles (contact) */
.info-tile{ display:flex; gap:16px; padding:24px; align-items:flex-start; }
.info-tile .ic{ width:44px; height:44px; border-radius:12px; background: var(--brand-tint); color: var(--brand); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-tile h4{ font-size:.98rem; margin-bottom:4px; }
.info-tile p{ font-size:.88rem; color: var(--ink-soft); }
.map-embed{ border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--border); height:340px; }
.map-embed iframe{ width:100%; height:100%; border:0; filter: grayscale(.15); }

/* portfolio / products */
.filter-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; align-items:center; justify-content:space-between; }
.filter-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{ padding:9px 18px; border-radius: var(--radius-pill); border:1px solid var(--border); background: var(--surface); font-size:.85rem; font-weight:600; color: var(--ink-soft); transition:.2s; }
.chip.active,.chip:hover{ background: var(--brand); color:#fff; border-color: var(--brand); }
.search-box{ display:flex; align-items:center; gap:8px; padding:10px 16px; border-radius: var(--radius-pill); border:1px solid var(--border); background: var(--surface); min-width:220px; }
.search-box input{ border:none; background:transparent; outline:none; color: var(--ink); flex:1; }
.search-box svg{ width:16px; height:16px; color: var(--ink-faint); flex-shrink:0; }

.product-card{ overflow:hidden; }
.product-card .img-wrap{ height:190px; overflow:hidden; position:relative; }
.product-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .img-wrap img{ transform: scale(1.08); }
.product-card .cat-badge{ position:absolute; top:14px; left:14px; background: var(--surface-glass); backdrop-filter: blur(10px); padding:5px 12px; border-radius: var(--radius-pill); font-size:.72rem; font-weight:700; }
.product-card .body{ padding:22px; }
.product-card h3{ font-size:1.05rem; margin-bottom:6px; }
.product-card p{ font-size:.86rem; color: var(--ink-soft); margin-bottom:16px; }
.product-card .row{ display:flex; align-items:center; justify-content:space-between; }
.product-card .price{ font-family:'JetBrains Mono',monospace; font-weight:700; color: var(--brand); }
.hidden-card{ display:none !important; }
.load-more-wrap{ text-align:center; margin-top:40px; }

/* ================= FOUNDER PROFILE ================= */
:root{ --founder-green: var(--brand); --founder-green-2: var(--brand-2); }
.founder-section{ overflow:hidden; }
.founder-grid{ display:grid; grid-template-columns: 0.86fr 1.14fr; gap:68px; align-items:center; }
.founder-media{ position:relative; }
.founder-photo-wrap{
  position:relative; border-radius:32px; padding:7px;
  background: linear-gradient(150deg, var(--founder-green), var(--accent) 140%);
  box-shadow: 0 30px 70px rgba(15,93,58,0.22), 0 10px 25px rgba(18,33,27,0.08);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
  max-width:420px; margin:0 auto;
}
.founder-photo-wrap:hover{ transform: translateY(-8px) scale(1.015); box-shadow: 0 42px 90px rgba(15,93,58,0.3), 0 14px 32px rgba(18,33,27,0.12); }
.founder-photo-wrap img{ display:block; width:100%; height:auto; border-radius:26px; object-fit:cover; }
.founder-badge{
  position:absolute; left:-18px; bottom:26px; z-index:2;
  display:flex; align-items:center; gap:10px; padding:12px 18px 12px 12px; border-radius: var(--radius-pill);
  background: var(--surface-glass); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border:1px solid var(--border); box-shadow: var(--shadow-lg);
}
.founder-badge .ic{ width:38px; height:38px; border-radius:50%; background: linear-gradient(135deg, var(--founder-green), var(--founder-green-2)); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.founder-badge .ic svg{ width:18px; height:18px; }
.founder-badge .num{ font-family:'JetBrains Mono',monospace; font-weight:700; font-size:1.05rem; line-height:1; color: var(--founder-green); }
.founder-badge .lbl{ font-size:.72rem; color: var(--ink-faint); font-weight:600; margin-top:2px; }

.founder-eyebrow{ color: var(--founder-green); background: rgba(15,93,58,0.09); }
.founder-name{ font-size: clamp(2.1rem,3.8vw,2.9rem); color: var(--founder-green); margin:14px 0 2px; }
.founder-role{ font-size:1.05rem; font-weight:700; color: var(--ink-soft); margin-bottom:26px; }
.founder-story{ border-left:3px solid var(--accent); padding-left:22px; margin-bottom:32px; }
.founder-story p{ color: var(--ink-soft); font-size:1.04rem; line-height:1.75; margin-bottom:14px; }
.founder-story p:last-child{ margin-bottom:0; }

.founder-features{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-bottom:34px; }
.founder-feature-card{
  display:flex; align-items:center; gap:12px; padding:15px 16px; border-radius:16px;
  background: var(--surface-glass); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border:1px solid var(--border); font-weight:700; font-size:.9rem; color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.founder-feature-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(15,93,58,0.3); }
.founder-feature-card .fc-icon{ width:34px; height:34px; border-radius:50%; background: linear-gradient(135deg, var(--founder-green), var(--founder-green-2)); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.founder-feature-card .fc-icon svg{ width:16px; height:16px; }

.btn-founder{ background: linear-gradient(135deg, var(--founder-green), var(--founder-green-2)); color:#fff; box-shadow: 0 12px 30px rgba(15,93,58,0.3); }
.btn-founder:hover{ transform: translateY(-2px); box-shadow: 0 16px 38px rgba(15,93,58,0.4); }

.founder-signature{ margin-top:32px; display:flex; align-items:center; gap:16px; }
.sig-script{ font-family:'Caveat',cursive; font-weight:700; font-size:2.3rem; color: var(--founder-green); line-height:1; }
.sig-caption{ font-size:.8rem; color: var(--ink-faint); font-weight:600; border-left:2px solid var(--border); padding-left:14px; line-height:1.4; }

@media (max-width: 920px){
  .founder-grid{ grid-template-columns:1fr; gap:44px; }
  .founder-photo-wrap{ max-width:340px; }
  .founder-badge{ left:50%; transform:translateX(-50%); bottom:-18px; }
  .founder-photo-wrap:hover{ transform: translateY(-6px); }
}
@media (max-width: 560px){
  .founder-features{ grid-template-columns:1fr; }
}

/* about page */
.value-card{ padding:30px; text-align:left; }
.timeline-vert{ position:relative; padding-left:36px; }
.timeline-vert::before{ content:''; position:absolute; left:8px; top:6px; bottom:6px; width:2px; background: var(--border); }
.tv-item{ position:relative; padding-bottom:40px; }
.tv-item::before{ content:''; position:absolute; left:-32px; top:2px; width:16px; height:16px; border-radius:50%; background: var(--brand); border:3px solid var(--bg); box-shadow:0 0 0 2px var(--brand); }
.tv-item .year{ font-family:'JetBrains Mono',monospace; color: var(--brand); font-weight:700; font-size:.85rem; }
.tv-item h4{ margin:6px 0; font-size:1.05rem; }
.tv-item p{ color: var(--ink-soft); font-size:.9rem; }
.team-card{ text-align:center; padding:28px; }
.team-card img{ width:96px; height:96px; border-radius:50%; object-fit:cover; margin:0 auto 16px; }
.team-card h4{ font-size:1rem; }
.team-card .role{ color: var(--brand); font-size:.82rem; font-weight:600; margin-top:2px; }

/* breadcrumbs */
.breadcrumbs{ display:flex; gap:8px; align-items:center; font-size:.85rem; color: var(--ink-faint); margin-bottom:20px; }
.breadcrumbs a{ color: var(--ink-soft); font-weight:600; }
.breadcrumbs a:hover{ color: var(--brand); }
.page-hero{ padding: calc(var(--nav-h) + 56px) 0 64px; text-align:center; background: radial-gradient(600px 320px at 50% -10%, var(--brand-tint), transparent 65%); }
.page-hero p{ color: var(--ink-soft); max-width:560px; margin:14px auto 0; }

/* error page */
.error-page{ min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:40px 24px; }
.error-code{ font-family:'JetBrains Mono',monospace; font-size:clamp(5rem,14vw,9rem); font-weight:700; background: linear-gradient(135deg,var(--brand),var(--accent)); -webkit-background-clip:text; background-clip:text; color:transparent; line-height:1; }

/* legal pages */
.legal-body{ max-width:760px; margin:0 auto; }
.legal-body h2{ font-size:1.3rem; margin:36px 0 12px; }
.legal-body p,.legal-body li{ color: var(--ink-soft); font-size:.96rem; margin-bottom:14px; }
.legal-body ul{ padding-left:20px; list-style:disc; }

/* custom cursor (desktop only, respects reduced motion) */
.cursor-dot{ position:fixed; width:8px; height:8px; border-radius:50%; background: var(--accent); pointer-events:none; z-index:2100; transform:translate(-50%,-50%); transition: opacity .2s ease; }
.cursor-ring{ position:fixed; width:34px; height:34px; border-radius:50%; border:1.5px solid var(--brand); pointer-events:none; z-index:2099; transform:translate(-50%,-50%); transition: transform .15s ease, opacity .2s ease; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--brand); outline-offset:2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .stats-strip{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 920px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ height:380px; margin-top:20px; }
  .grid-2{ grid-template-columns:1fr; }
  .pricing-grid{ grid-template-columns:1fr; }
  .price-card.popular{ transform:none; }
  .timeline{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .timeline::before{ display:none; }
  .form-row{ grid-template-columns:1fr; }
  .cursor-dot,.cursor-ring{ display:none; }
}
@media (max-width: 620px){
  .section{ padding:72px 0; }
  .grid-4,.grid-3{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .stats-strip{ grid-template-columns:1fr 1fr; }
  .timeline{ grid-template-columns:1fr; }
  .compare-table{ font-size:.8rem; }
  .newsletter{ padding:36px 22px; }
  .newsletter-form{ flex-direction:column; }
  .filter-row{ flex-direction:column; align-items:stretch; }
}
