/* =========================================================
   Outdoor Kitchen Türkiye — Design System
   Palet: Derin orman yeşili + köz turuncusu + taş nötrleri
   ========================================================= */

:root {
  /* Renkler */
  --forest-900: #14241d;
  --forest-800: #1e3a2f;
  --forest-700: #2a4d3f;
  --ember-600: #d2572b;
  --ember-700: #b8481f;
  --stone-50:  #fafaf7;
  --stone-100: #f2f1ec;
  --stone-200: #e5e3da;
  --ink-900:   #1c211e;
  --ink-600:   #4d564f;
  --ink-400:   #7c857e;
  --white:     #ffffff;

  /* Tipografi */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Ölçüler */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 36, 29, .06), 0 2px 8px rgba(20, 36, 29, .05);
  --shadow-md: 0 4px 12px rgba(20, 36, 29, .08), 0 12px 32px rgba(20, 36, 29, .08);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--stone-50);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
abbr { text-decoration: none; color: var(--ember-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--ember-600);
  outline-offset: 2px;
  border-radius: 4px;
}

.skipLink {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--forest-900);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}
.skipLink:focus { left: 12px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: 860px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest-800); color: #fff; }
.btn--primary:hover { background: var(--forest-700); box-shadow: var(--shadow-sm); }

.btn--accent { background: var(--ember-600); color: #fff; }
.btn--accent:hover { background: var(--ember-700); box-shadow: 0 6px 18px rgba(210, 87, 43, .35); }

.btn--ghost {
  background: transparent;
  border-color: var(--stone-200);
  color: var(--forest-900);
}
.btn--ghost:hover { border-color: var(--forest-800); background: var(--white); }

.btn--light { background: var(--white); color: var(--forest-900); }
.btn--light:hover { box-shadow: var(--shadow-sm); }

.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--forest-900);
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.topbar__left { display: flex; align-items: center; gap: 14px; }
.topbar__sep {
  width: 1px; height: 14px;
  background: rgba(255, 255, 255, .25);
}
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.topbar__phone:hover { color: #f4b08f; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled {
  border-bottom-color: var(--stone-200);
  box-shadow: 0 2px 12px rgba(20, 36, 29, .06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__logo { width: 44px; height: 44px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--forest-900);
}
.brand__text small { font-size: .74rem; color: var(--ink-400); }

.nav { display: flex; gap: 26px; }
.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: .94rem;
  color: var(--ink-600);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav a:hover { color: var(--forest-900); border-bottom-color: var(--ember-600); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--stone-200);
  border-radius: 10px;
  padding: 10px;
}
.navToggle span {
  display: block;
  height: 2px;
  background: var(--forest-900);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.navToggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navToggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navToggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(210, 87, 43, .14), transparent 60%),
    linear-gradient(170deg, var(--forest-900) 0%, var(--forest-800) 70%, #234436 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(56px, 7vw, 88px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  color: #f29d72;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0 0 22px;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f29d72;
  box-shadow: 0 0 0 0 rgba(242, 157, 114, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(242, 157, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 157, 114, 0); }
}
.hero__lead {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, .78);
  max-width: 54ch;
  margin: 0 0 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(20px, 4vw, 44px);
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stats dt {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.hero__stats dd {
  margin: 2px 0 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

.hero__visual { display: grid; gap: 18px; }
.hero__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .12);
}
.hero__photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.hero__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero__points li {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
}
.hero__points strong {
  display: block;
  font-family: var(--font-display);
  font-size: .92rem;
  color: #fff;
  margin-bottom: 2px;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ember-600);
  color: #fff;
  overflow: hidden;
  padding: 11px 0;
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  padding: 0 28px;
  position: relative;
}
.marquee__track span::after {
  content: "◆";
  position: absolute;
  right: -7px;
  opacity: .5;
  font-size: .6rem;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Bölümler ---------- */
.section { padding: clamp(60px, 7vw, 96px) 0; }
.section--alt { background: var(--stone-100); }
.section--dark { background: var(--forest-900); color: rgba(255, 255, 255, .85); }

.sectionHead {
  max-width: 640px;
  margin: 0 auto clamp(36px, 4vw, 52px);
  text-align: center;
}
.sectionHead p { color: var(--ink-600); margin: 0; }
.sectionHead--light h2 { color: #fff; }
.sectionHead--light p { color: rgba(255, 255, 255, .65); }

.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember-600);
  margin: 0 0 10px;
}

/* ---------- Kategori filtreleri ---------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.pill {
  background: var(--white);
  border: 1.5px solid var(--stone-200);
  border-radius: 999px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-600);
  transition: all .18s var(--ease);
}
.pill:hover { border-color: var(--forest-800); color: var(--forest-900); }
.pill.is-active {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: #fff;
}

/* ---------- Ürün kartları ---------- */
.productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.productCard {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.productCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.productCard__media { position: relative; }
.productCard__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
}
.badge--green { background: var(--forest-800); }
.badge--ember { background: var(--ember-600); }
.badge--dark  { background: var(--ink-900); }
.badge--new   { background: #b8860b; }

.productCard__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.productCard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.productCard__head h3 { margin: 0 0 2px; font-size: 1.12rem; }
.productCard__sub { margin: 0; font-size: .8rem; color: var(--ink-400); }
.price { margin: 0; text-align: right; }
.price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ember-600);
  white-space: nowrap;
}
.price span { font-size: .72rem; color: var(--ink-400); }

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  font-size: .88rem;
  color: var(--ink-600);
}
.checks li {
  padding-left: 24px;
  position: relative;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--forest-800);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.2 14.4-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4-7 7Z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm-1.2 14.4-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4-7 7Z"/></svg>') center / contain no-repeat;
}
.productCard__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

/* ---------- Özellikler ---------- */
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.featureBox {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.featureBox:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.featureBox__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--stone-100);
  color: var(--forest-800);
  margin-bottom: 16px;
}
.featureBox__icon svg { width: 26px; height: 26px; }
.featureBox h3 { font-size: 1.08rem; }
.featureBox p { margin: 0; color: var(--ink-600); font-size: .92rem; }

/* ---------- CTA ---------- */
.ctaBox {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(210, 87, 43, .25), transparent 60%),
    var(--forest-800);
  color: #fff;
  border-radius: calc(var(--radius-lg) + 6px);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
}
.ctaBox h2 { color: #fff; }
.ctaBox p {
  max-width: 56ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .75);
}
.ctaBox__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- Blog ---------- */
.blogGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blogPost {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blogPost:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blogPost img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.blogPost__body { padding: 22px; }
.blogPost__meta { font-size: .78rem; color: var(--ink-400); margin: 0 0 8px; }
.blogPost__body h3 { font-size: 1.06rem; }
.blogPost__body h3 a { text-decoration: none; }
.blogPost__body h3 a:hover { color: var(--ember-600); }
.blogPost__body > p { margin: 0; font-size: .9rem; color: var(--ink-600); }

/* ---------- Yorumlar ---------- */
.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.reviewCard {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reviewCard__stars { color: #e0a31d; letter-spacing: 3px; font-size: .95rem; }
.reviewCard blockquote {
  margin: 0;
  font-size: .94rem;
  color: var(--ink-600);
  flex: 1;
}
.reviewCard figcaption {
  border-top: 1px solid var(--stone-200);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
}
.reviewCard figcaption strong { font-size: .94rem; color: var(--forest-900); }
.reviewCard figcaption span { font-size: .8rem; color: var(--ink-400); }

/* ---------- SSS ---------- */
.faqList { display: grid; gap: 12px; }
.faqItem {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-900);
  position: relative;
  transition: background .15s;
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ember-600);
  border-bottom: 2px solid var(--ember-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faqItem[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faqItem summary:hover { background: var(--stone-50); }
.faqItem p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-600);
  font-size: .94rem;
}

/* ---------- SEO içerik ---------- */
.seoBox {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.seoContent h3 { margin-top: 1.6em; }
.seoContent ul, .seoContent ol { padding-left: 22px; color: var(--ink-600); }
.seoContent p { color: var(--ink-600); }
.seoContent.is-collapsed {
  max-height: 320px;
  overflow: hidden;
  position: relative;
}
.seoContent.is-collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--white));
}
.seoToggle { text-align: center; margin-top: 20px; }

/* ---------- İletişim ---------- */
.contactGrid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 30px;
  align-items: start;
}
.contactForm {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 38px);
  color: var(--ink-900);
}
.contactForm h3 { margin-bottom: 22px; }
.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.formField { margin-bottom: 16px; }
.formField label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--forest-900);
}
.formField input,
.formField select,
.formField textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--stone-200);
  border-radius: 10px;
  background: var(--stone-50);
  font: inherit;
  color: var(--ink-900);
  transition: border-color .15s, background .15s;
}
.formField input:focus,
.formField select:focus,
.formField textarea:focus {
  outline: none;
  border-color: var(--forest-800);
  background: var(--white);
}
.formField textarea { resize: vertical; min-height: 110px; }

.formCheckbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
}
.formCheckbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--forest-800); }
.formCheckbox label { margin: 0; font-weight: 400; color: var(--ink-600); }
.formCheckbox a { color: var(--ember-600); font-weight: 600; }
.formNote {
  margin: 14px 0 0;
  text-align: center;
  font-size: .82rem;
  color: var(--ink-400);
}

.contactInfo {
  display: grid;
  gap: 6px;
  align-content: start;
}
.contactInfo h3 { color: #fff; margin-bottom: 14px; }
.contactItem {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
a.contactItem:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
}
.contactItem strong {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #f29d72;
}
.contactItem span { color: rgba(255, 255, 255, .85); font-size: .94rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, .7);
  padding: clamp(48px, 6vw, 72px) 0 28px;
  font-size: .9rem;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: rgba(255, 255, 255, .5); }
.footerCol--brand p { margin: 16px 0 0; line-height: 1.7; }
.footerCol h4 {
  color: #fff;
  font-size: .92rem;
  margin-bottom: 14px;
}
.footerCol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footerCol ul a { text-decoration: none; transition: color .15s; }
.footerCol ul a:hover { color: #f29d72; }

.footerBottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}
.footerBottom p { margin: 0; }
.footerLinks { display: flex; gap: 18px; }
.footerLinks a { text-decoration: none; }
.footerLinks a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.waFloat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.waFloat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .5);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .productGrid, .featureGrid, .blogGrid, .reviewGrid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 620px; }
  .footerGrid { grid-template-columns: 1fr 1fr; }
  .contactGrid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topbar__left .topbar__item:last-child,
  .topbar__sep { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--stone-50);
    border-bottom: 1px solid var(--stone-200);
    box-shadow: 0 16px 32px rgba(20, 36, 29, .12);
    padding: 8px 22px 16px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--stone-200);
    font-size: 1rem;
  }
  .navToggle { display: flex; }
  .header__actions .btn--ghost { display: none; }

  .productGrid, .featureGrid, .blogGrid, .reviewGrid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero__points { grid-template-columns: 1fr; }
  .formRow { grid-template-columns: 1fr; gap: 0; }
  .footerGrid { grid-template-columns: 1fr; gap: 28px; }
  .footerBottom { flex-direction: column; align-items: center; text-align: center; }
  .waFloat span { display: none; }
  .waFloat { padding: 14px; }
}
