/* style.css */
:root{
  --bg: #0b1220;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --brand: #f7931e;

  --card: rgba(255,255,255,.06);
  --card-strong: rgba(11,18,32,.80);
  --card-hover: rgba(11,18,32,.90);
  --border: rgba(148,163,184,.18);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --header-bg: rgba(11,18,32,.72);
  --soft-bg: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  --body-glow-one: rgba(59,130,246,.16);
  --body-glow-two: rgba(148,163,184,.12);
  --control-bg: rgba(255,255,255,.04);
  --chip-bg: rgba(11,18,32,.72);
  --footer-bg: rgba(0,0,0,.10);
  --catalog-card: rgba(15,23,42,.78);
  --catalog-media: rgba(255,255,255,.06);

  --radius: 18px;
  --radius2: 24px;

  --container: 1120px;
}

html.light{
  --bg: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --accent: #2563eb;
  --brand: #f7931e;
  --card: rgba(255,255,255,.82);
  --card-strong: rgba(255,255,255,.88);
  --card-hover: rgba(255,255,255,.96);
  --border: rgba(15,23,42,.10);
  --shadow: 0 18px 44px rgba(15,23,42,.10);
  --header-bg: rgba(255,255,255,.78);
  --soft-bg: linear-gradient(180deg, rgba(15,23,42,.035), rgba(255,255,255,.45));
  --body-glow-one: rgba(247,147,30,.12);
  --body-glow-two: rgba(37,99,235,.10);
  --control-bg: rgba(15,23,42,.045);
  --chip-bg: rgba(255,255,255,.82);
  --footer-bg: rgba(255,255,255,.55);
  --catalog-card: rgba(255,255,255,.96);
  --catalog-media: #f8fafc;
}

*{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  color-scheme: dark;
}
html.light{ color-scheme: light; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 500px at 20% -5%, var(--body-glow-one), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, var(--body-glow-two), transparent 60%),
              var(--bg);
  color:var(--text);
  transition: background-color .35s ease, color .35s ease;
}

body,
.header,
.nav-link,
.theme-toggle,
.btn,
.stat,
.card-visual,
.section-soft,
.about-media,
.about-box,
.card,
.product,
.tag,
.meta li,
.cta-inner,
.footer,
.social-btn{
  transition:
    background-color .35s ease,
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    transform .2s ease;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

a:focus-visible,
button:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--accent) 65%, white);
  outline-offset: 3px;
}

.container{
  width: min(100% - 32px, var(--container));
  margin-inline:auto;
}

.bg-glow{
  position:fixed;
  inset:-200px;
  pointer-events:none;
  background:
    radial-gradient(700px 400px at 15% 20%, var(--body-glow-one), transparent 60%),
    radial-gradient(600px 400px at 85% 10%, var(--body-glow-two), transparent 60%);
  filter: blur(10px);
  opacity:.9;
  z-index:-1;
}

/* Header / Navbar */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}


.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}



.nav-links{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-link{
  padding:10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:600;
  font-size:14px;
  transition: .2s ease;
  border:1px solid transparent;
}
.nav-link:hover{
  color: var(--text);
  border-color: var(--border);
  background: var(--control-bg);
}
.nav-link.active{
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.nav-cta{
  margin-left: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight:800;
  font-size:14px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 96%, white), color-mix(in srgb, var(--brand) 78%, black));
  color: #111827;
  border: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--brand) 20%, transparent);
  transition: transform .15s ease;
}
.nav-cta:hover{ transform: translateY(-1px); }

.theme-toggle{
  width:44px;
  height:44px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--control-bg);
  color: var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.theme-toggle:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent) 18%, transparent);
}
.theme-icon{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
html.dark .theme-icon-sun,
html.light .theme-icon-moon{ display:block; }
html.dark .theme-icon-moon,
html.light .theme-icon-sun{ display:none; }

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: var(--control-bg);
  color:var(--text);
  cursor:pointer;
}
.nav-toggle .bar{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
}

/* Hero */
.hero{
  position:relative;
  isolation:isolate;
  padding: 36px 0 64px;
  overflow:hidden;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:-1;
}
.hero::before{
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  right: -140px;
  top: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 66%);
  filter: blur(14px);
  opacity:.9;
}
.hero::after{
  width: min(36vw, 460px);
  height: min(36vw, 460px);
  left: -160px;
  bottom: -180px;
  border-radius: 999px;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--brand) 16%, transparent), transparent 68%);
  filter: blur(18px);
  opacity:.75;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr .95fr;
  gap: 28px;
  align-items:center;
}
.hero-content{
  max-width: 680px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--control-bg);
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.badge .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 16%, transparent);
}

.hero h1{
  margin: 14px 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}
.hero .accent{
  color: var(--brand);
}

.lead{
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 62ch;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom: 12px;
  padding-bottom: 4px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{
  transform: translateY(-2px);
}
.btn-primary{
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 96%, white), color-mix(in srgb, var(--brand) 78%, black));
  color:#111827;
  border-color: color-mix(in srgb, var(--brand) 40%, transparent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--brand) 22%, transparent);
}
.btn-ghost{
  background: var(--control-bg);
  color: var(--text);
  border-color: var(--border);
}
.btn-sm{
  padding: 10px 14px;
  font-size: 14px;
}

.hero-stats{
  display:grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}
.stat{
  display:flex;
  align-items:center;
  height:100%;
  min-height: 112px;
  gap:14px;
  padding: 18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: var(--card-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  box-sizing:border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.stat:hover{
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: var(--card-hover);
  box-shadow: 0 20px 45px color-mix(in srgb, var(--accent) 16%, transparent);
}
.stat-num{
  width:48px;
  height:48px;
  flex:0 0 48px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
}
.stat-icon{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.stat-text{ min-width:0; }
.stat-text strong{
  display:block;
  line-height:1.25;
  font-size:15px;
}
.stat-text span{
  display:block;
  color: var(--muted);
  font-size: 13px;
  line-height:1.45;
  margin-top: 7px;
}

/* Hero Visual */
.hero-visual{ position:relative; }
.card-visual{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  position:relative;
}
.card-visual-track{
  display:flex;
  width:300%;
  animation: cardVisualTranslate 8s infinite ease-in-out;
}
.card-visual-slide{
  position:relative;
  flex:0 0 33.333%;
  width:33.333%;
}
.card-visual img{
  height:390px;
  width:100%;
  display:block;
  object-fit:cover;
  opacity:.96;
}
@keyframes cardVisualTranslate{
  0%, 26%{ transform: translateX(0); }
  33%, 59%{ transform: translateX(-33.333%); }
  66%, 92%{ transform: translateX(-66.666%); }
  100%{ transform: translateX(0); }
}
.card-visual-overlay{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--chip-bg);
  border:1px solid rgba(148,163,184,.30);
  color: var(--text);
  font-weight:700;
  font-size:12px;
  backdrop-filter: blur(10px);
}

/* Sections */
.section{
  padding: 58px 0;
}
.section-soft{
  background: var(--soft-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 22px;
}
.section-head h2{
  margin:0;
  font-size: 28px;
  letter-spacing: -0.5px;
}
.section-head p{
  margin:0;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.7;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items:stretch;
}
.about-media{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--catalog-media);
  box-shadow: var(--shadow);
  min-height: 420px;
  padding: 18px;
}
.about-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  opacity:.98;
  border-radius: 18px;
}
.about-card{
  display:none;
}
.about-content{
  display:grid;
  gap: 12px;
}
.about-box{
  padding: 16px 16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: var(--card);
}
.about-box h3{ margin: 0 0 8px; font-size: 16px; }
.about-box p{ margin: 0; color: var(--muted); line-height: 1.7; }

.checklist{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 6px;
}

/* Services cards */
.grid.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 18px 18px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 34%, transparent);
}
.card-icon{
  width:46px;height:46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  margin-bottom: 10px;
}
.card h3{ margin: 0 0 6px; font-size: 16px; }
.card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.7; }
.card-foot{
  font-size: 12px;
  color: rgba(148,163,184,.92);
  padding-top: 10px;
  border-top: 1px solid rgba(148,163,184,.15);
}

/* Products */
.products{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 220px;
  transition: transform .15s ease, border-color .15s ease;
}
.product:hover{
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 32%, transparent);
}
.product-media{
  position:relative;
}
.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.96;
}
.tag{
  position:absolute;
  top:12px;
  left:12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--chip-bg);
  border:1px solid rgba(148,163,184,.20);
  font-weight:800;
  font-size: 12px;
}
.product-body{
  padding: 16px 16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap: 10px;
}
.product-body h3{ margin:0; font-size: 18px; }
.product-body p{ margin:0; color: var(--muted); line-height: 1.7; }
.meta{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:0;
}
.meta li{
  font-size: 12px;
  color: rgba(148,163,184,.92);
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(148,163,184,.18);
  background: var(--control-bg);
}

/* Partners */
.partners{
  padding: 18px 0 62px;
}
.partners-marquee{
  position:relative;
  overflow:hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.partners-track{
  display:flex;
  width:max-content;
  gap: 18px;
  animation: partnersMarquee 28s linear infinite;
}
.partner-logo{
  width: 210px;
  height: 96px;
  flex:0 0 210px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
}
.partner-logo img{
  max-width:100%;
  max-height:60px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
@keyframes partnersMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-50% - 10px)); }
}

/* Product showcase pages */
.showcase-hero{
  padding: 70px 0 28px;
}
.showcase-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--control-bg);
  color: var(--muted);
  font-size:13px;
  font-weight:700;
}
.showcase-hero h1{
  margin: 16px 0 12px;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 56px);
  line-height:1.02;
  letter-spacing:-.8px;
}
.showcase-hero p{
  margin:0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height:1.75;
}
.showcase-section{
  padding: 26px 0 64px;
}
.showcase-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items:start;
}
.showcase-card{
  display:flex;
  flex-direction:column;
  min-height:auto;
  height:auto;
  overflow:hidden;
  position:relative;
  border-radius: 16px;
  border:1px solid var(--border);
  background: var(--catalog-card);
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
  color: var(--text);
}
.showcase-media{
  height:220px;
  padding:20px;
  overflow:hidden;
  background: var(--catalog-media);
}
.showcase-media img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.showcase-body{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
  padding: 18px;
  text-align:center;
}
.showcase-body h2{
  margin:0;
  color: var(--text);
  font-size:17px;
  line-height:1.3;
}
.showcase-button{
  width: fit-content;
  margin-top: auto;
}
.showcase-message{
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  text-align:center;
  font-weight:700;
}
.showcase-message-error{
  border-color: color-mix(in srgb, #ef4444 38%, transparent);
  color: #ef4444;
}

/* Product detail page */
.product-detail-section{
  padding: 64px 0;
}
.product-detail{
  display:grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items:start;
}
.product-detail-media{
  min-height: 520px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: var(--catalog-card);
  box-shadow: var(--shadow);
  display:grid;
  place-items:center;
  padding: 34px;
}
.product-detail-media img{
  width:100%;
  height:100%;
  max-height: 460px;
  object-fit:contain;
}
.product-detail-info{
  display:grid;
  gap: 18px;
}
.product-detail-info h1{
  margin:0;
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.08;
}
.product-detail-description{
  margin:0;
  color: var(--muted);
  font-size: 17px;
  line-height:1.75;
  white-space: pre-line;
}
.product-detail-label{
  margin:0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.product-detail-tags,
.product-detail-categories{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.product-detail-tags span,
.product-detail-categories span{
  padding: 8px 11px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--control-bg);
  color: var(--text);
  font-size: 13px;
  font-weight:800;
}
.whatsapp-btn{
  width:fit-content;
  background: linear-gradient(180deg, #25d366, #16a34a);
  color:#052e16;
  border-color: rgba(34,197,94,.35);
}

/* CTA */
.cta{
  padding: 38px 0;
}
.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  padding: 18px 18px;
  border-radius: var(--radius2);
  border:1px solid color-mix(in srgb, var(--brand) 28%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 14%, transparent), var(--card));
}
.cta h2{ margin:0 0 6px; letter-spacing:-.4px; }
.cta p{ margin:0; color: var(--muted); }

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 38px 0 24px;
  background: var(--footer-bg);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}
.footer-col{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  column-gap: 36px;
  row-gap: 12px;
  align-items:start;
}
.footer-brand{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.footer-logo{
  width:44px;height:44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight:900;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
  color: var(--brand);
}
.footer-brand p{
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-info{
  list-style:none;
  padding:0;
  margin: 0 0 14px;
  display:grid;
  gap: 8px;
  color: var(--muted);
  grid-column: 2;
}
.footer-info span{ width:22px; display:inline-block; }

.social{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:flex-start;
  grid-column: 2;
}
.social-btn{
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: var(--control-bg);
  color: var(--text);
  font-weight:800;
  font-size: 13px;
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.15);
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap:wrap;
  text-align:center;
}
.footer-bottom p{ margin:0; }
.muted{ color: rgba(148,163,184,.85); }

/* Responsive */
@media (max-width: 980px){
  .hero{
    padding-bottom: 70px;
  }
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card-visual img{ height: 350px; }
  .about-grid{ grid-template-columns: 1fr; }
  .grid.cards{ grid-template-columns: repeat(2, 1fr); }
  .products{ grid-template-columns: 1fr; }
  .showcase-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-logo{
    width: 175px;
    height: 86px;
    flex-basis:175px;
    padding: 16px;
  }
  .partner-logo img{
    max-height: 54px;
  }
  .product{ grid-template-columns: 1fr; }
  .product-detail{ grid-template-columns: 1fr; }
  .product-detail-media{ min-height: 360px; }
  .product-media{ height: 240px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-col{
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-info,
  .social{
    grid-column: 1;
  }
  .footer-brand{
    grid-row:auto;
  }
  .hero-stats{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }
}
@media (max-width: 780px){
  .nav-toggle{ display:inline-block; }
  .brand-logo{ max-height: 64px; }
  .nav-links{
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius2);
    border: 1px solid var(--border);
    background: var(--header-bg);
    box-shadow: var(--shadow);
  }
  .nav-links.open{ display:flex; }
  .nav-cta{ width:100%; text-align:center; }
  .section-head{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 560px){
  .nav{ height: 72px; }
  .brand-logo{ max-height: 56px; }
  .hero{
    padding-top: 30px;
    padding-bottom: 76px;
  }
  .hero::before{
    width: 320px;
    height: 320px;
    right: -190px;
    top: 120px;
  }
  .hero::after{
    width: 280px;
    height: 280px;
    left: -180px;
    bottom: -140px;
  }
  .hero h1{
    font-size: clamp(34px, 12vw, 46px);
    letter-spacing: -0.8px;
  }
  .lead{
    margin-bottom: 28px;
  }
  .hero-actions{
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 6px;
  }
  .card-visual img{
    height: 300px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .hero-stats{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stat{
    min-height: 118px;
    padding: 20px;
  }
  .showcase-hero{ padding-top: 48px; }
  .grid.cards{ grid-template-columns: 1fr; }
  .showcase-grid{ grid-template-columns: 1fr; }
  .partners{ padding: 14px 0 44px; }
  .partners-track{ gap: 14px; animation-duration: 22s; }
  .partner-logo{
    width: 132px;
    height: 72px;
    flex-basis:132px;
    padding: 12px;
    border-radius: 14px;
  }
  .partner-logo img{
    max-height: 44px;
  }
  .product-detail-section{ padding: 42px 0; }
  .product-detail-media{ min-height: 280px; padding: 22px; }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
