/* ════════════════════════════════════════════════════════
   GLASSIT — Public Stylesheet v2
   Font: Playfair Display + Outfit
   Colors: injected from admin via <style> in <head>
════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent2); }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: .75rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .4rem; }
p  { margin-bottom: 1rem; color: var(--muted); }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .7rem 1.6rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
}
.btn-accent         { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover   { background: var(--accent2); color: #fff; border-color: var(--accent2); }
.btn-outline-green  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-green:hover { background: var(--accent); color: #fff; }
.btn-white          { background: #fff; color: var(--text); border-color: #fff; }
.btn-white:hover    { background: var(--accent-light); }
.btn-wa-outline     { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-wa-outline:hover { background: rgba(255,255,255,.1); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  padding: .3rem .9rem;
  background: var(--accent-light);
  border-radius: 50px;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(20,83,45,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav ul { display: flex; align-items: center; gap: .1rem; margin-right: 1rem; }
.main-nav ul a {
  color: var(--text2);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .8rem;
  border-radius: 6px;
  transition: all .2s;
}
.main-nav ul a:hover { background: var(--accent-light); color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Left panel */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5vw;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: .35rem 1rem;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-left > p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}

.trust-item span {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
}

/* Right panel */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--surface) 60%, var(--border) 100%);
  position: relative;
  padding: 3rem 2rem;
}

.hero-glass-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 48px rgba(22,163,74,.12), 0 2px 12px rgba(22,163,74,.06);
}

.glass-reflection {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.product-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}
.product-chip:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(22,163,74,.1); }
.product-chip svg { color: var(--accent); flex-shrink: 0; }
.product-chip em { margin-left: auto; font-style: normal; font-size: .78rem; color: var(--accent); font-weight: 600; background: var(--accent-light); padding: .15rem .5rem; border-radius: 4px; }

.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 8px;
  padding: .6rem 1rem;
}
.hero-badge svg { flex-shrink: 0; }

.hero-dots {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  opacity: .4;
}

/* ── Section Header ─────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-bottom: .5rem; }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── Products Grid ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(22,163,74,.1); border-color: var(--border2); }

.product-card-img { aspect-ratio: 16/9; background: var(--accent-light); overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-img { background: linear-gradient(135deg, var(--accent-light), var(--border)); }

.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); font-weight: 600; margin-bottom: .25rem; }
.product-card-body h3 { color: var(--text); margin-bottom: .4rem; font-size: 1.05rem; }
.product-card-body p { color: var(--muted); font-size: .9rem; flex: 1; margin-bottom: .75rem; }
.product-price { display: inline-block; background: var(--accent-light); color: var(--accent); border-radius: 5px; padding: .2rem .6rem; font-size: .82rem; font-weight: 600; margin-bottom: .75rem; }
.card-cta { font-size: .85rem; color: var(--accent); font-weight: 600; margin-top: auto; }

/* ── Why Section ────────────────────────────────────────── */
.why-section { background: var(--text); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text .eyebrow { background: rgba(74,222,128,.15); color: var(--accent3); border-color: rgba(74,222,128,.3); }
.why-text h2 { color: #fff; }
.why-text > p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

.why-list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.why-list li { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.check { background: var(--accent); color: #fff; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; margin-top: 2px; }
.why-list li strong { color: #fff; }

.pricing-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.75rem;
}
.pricing-card-head { margin-bottom: 1.25rem; }
.pricing-card-head span { display: block; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .2rem; }
.pricing-card-head em { font-style: normal; font-size: .8rem; color: rgba(255,255,255,.5); }

.pricing-rows { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .1rem; }
.pricing-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.8); font-size: .93rem; }
.pricing-row strong { color: var(--accent3); font-size: 1rem; }
.pricing-row.custom { color: var(--accent2); }
.pricing-row.custom a { color: var(--accent2); font-weight: 600; }

/* ── Blog Grid ──────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(22,163,74,.09); }
.post-card-img { aspect-ratio: 16/9; background: var(--accent-light); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-date { font-size: .78rem; color: var(--muted2); margin-bottom: .4rem; display: block; }
.post-card-body h3 { color: var(--text); margin-bottom: .5rem; font-size: 1.05rem; }
.post-card-body p { color: var(--muted); font-size: .9rem; flex: 1; }

/* ── CTA Strip ──────────────────────────────────────────── */
.cta-strip { background: var(--accent); padding: 3.5rem 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; margin-bottom: .4rem; }
.cta-strip p  { color: rgba(255,255,255,.85); margin: 0; }
.cta-strip-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: var(--text);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22,163,74,.12), transparent);
  clip-path: polygon(20% 0,100% 0,100% 100%,0 100%);
}
.page-hero .eyebrow { background: rgba(74,222,128,.15); color: var(--accent3); }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; margin: 0; }

/* ── Product single ─────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.product-detail-img { border-radius: 12px; overflow: hidden; background: var(--accent-light); aspect-ratio: 4/3; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-features { margin: 1.5rem 0; }
.product-features h3 { margin-bottom: .75rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.feature-list-items { display: flex; flex-direction: column; gap: .4rem; }
.feature-list-items li { padding: .35rem 0 .35rem 1.2rem; position: relative; color: var(--muted); font-size: .95rem; border-bottom: 1px solid var(--border); }
.feature-list-items li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.product-sidebar { position: sticky; top: 100px; }
.product-price-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }
.price-big { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: .25rem; }
.price-note-small { font-size: .82rem; color: var(--muted); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 780px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 1.1rem 1.25rem; text-align: left; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--accent); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-filters { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: .45rem 1.1rem; border: 1.5px solid var(--border2); border-radius: 50px; background: var(--surface); color: var(--muted); font-family: 'Outfit',sans-serif; font-size: .88rem; font-weight: 500; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(20,83,45,.7)); padding: 1rem .75rem .75rem; color: #fff; font-size: .82rem; opacity: 0; transition: opacity .2s; }
.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* ── Quote form ─────────────────────────────────────────── */
.quote-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: var(--accent); }
.form-note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: .5rem; }

.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.25rem; }
.alert-success { background: var(--accent-light); border: 1px solid var(--border2); color: var(--text2); }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

.quote-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.sidebar-box h3 { margin-bottom: 1rem; font-size: 1rem; }
.sidebar-box.dark { background: var(--text); border-color: var(--text); }
.sidebar-box.dark h3 { color: #fff; }
.sidebar-box.dark p { color: rgba(255,255,255,.7); margin-bottom: 1rem; font-size: .9rem; }

/* ── Blog single ────────────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.post-content h2 { margin-top: 2rem; }
.post-content p { color: var(--muted); }
.post-content img { border-radius: 8px; margin: 1.5rem 0; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.post-content ul li, .post-content ol li { color: var(--muted); margin-bottom: .4rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

/* ── About / Contact ────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.two-col p { color: var(--muted); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.contact-card-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.contact-card h3 { margin-bottom: .4rem; }
.contact-card p { color: var(--muted); font-size: .93rem; margin-bottom: .5rem; }
.contact-card a { color: var(--text); font-weight: 500; }
.contact-card a:hover { color: var(--accent); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--text); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .logo-main { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; margin: .75rem 0 1.25rem; max-width: 260px; }
.btn-wa { display: inline-flex; align-items: center; gap: .4rem; background: #25D366; color: #fff; border-radius: 8px; padding: .55rem 1rem; font-size: .85rem; font-weight: 600; transition: background .2s; }
.btn-wa:hover { background: #20ba5a; color: #fff; }
.footer-col h3 { color: rgba(255,255,255,.5); font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-family: 'Outfit',sans-serif; margin-bottom: .85rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent3); }
.footer-col p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.8); }
.footer-col a:hover { color: var(--accent3); }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .2s; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.1rem 0; }
.footer-bottom p { text-align: center; font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--accent3); }

/* ── WhatsApp Float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  z-index: 999;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); color: #fff; }

/* ── 404 ────────────────────────────────────────────────── */
.not-found { text-align: center; padding: 7rem 1rem; }
.not-found h1 { font-size: 7rem; color: var(--accent); line-height: 1; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 420px; padding: 3rem 1.5rem; }
  .hero-left { padding: 4rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-detail, .two-col, .post-layout { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-sidebar { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); }
  .product-sidebar { position: static; }
}

@media (max-width: 768px) {
  .hero-left h1 { font-size: 2.5rem; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(20,83,45,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; margin-right: 0; }
  .main-nav ul a { display: block; padding: .6rem .5rem; }
  .nav-cta { width: 100%; text-align: center; margin-top: .5rem; }
  .site-header { position: relative; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-dots { display: none; }
}
