/* ═══════════════════════════════════════════════
   KlickDok — Hoofdstijl (Mobile First)
   Kleurenpalet: groen + warm accent
   Font: Outfit (Google Fonts)
   ═══════════════════════════════════════════════ */

:root {
  --green:      #4A7C6F;
  --green-deep: #2E5449;
  --green-lt:   #EAF2F0;
  --green-mid:  #C4DDD8;
  --accent:     #C8956C;
  --accent-lt:  #FDF6F0;
  --accent-deep:#A06B3F;
  --warm:       #F5E6D3;
  --white:      #FFFFFF;
  --off-white:  #F7F9F8;
  --ink:        #141F1C;
  --mid:        #6B7E7A;
  --border:     #DDE8E5;
  --font:       'Outfit', sans-serif;
  --radius:     16px;
  --px:         5%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ── NAVIGATIE ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 60px; display: flex; align-items: center;
  padding: 0 var(--px); justify-content: space-between;
}
.logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 28px; height: 28px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Mobile: hamburger */
.nav-toggle { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }

nav ul {
  list-style: none; display: none; flex-direction: column;
  position: absolute; top: 60px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 16px var(--px); gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
nav ul.open { display: flex; }
nav ul li { width: 100%; }
nav ul a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--mid); transition: color 0.18s; display: block; padding: 10px 0; }
nav ul a:hover { color: var(--ink); }
.btn-nav { background: var(--ink) !important; color: white !important; padding: 10px 22px; border-radius: 8px; font-weight: 600 !important; font-size: 0.85rem !important; transition: background 0.18s !important; display: inline-block !important; margin-top: 8px; text-align: center; }
.btn-nav:hover { background: var(--green-deep) !important; color: white !important; }

/* ── HERO ── */
.hero { display: flex; flex-direction: column-reverse; min-height: auto; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 40px var(--px) 48px; }
.eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
h1 { font-size: 2rem; font-weight: 700; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 20px; }
.hero-body { font-size: 0.95rem; color: var(--mid); line-height: 1.7; max-width: 400px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; }

.hero-right {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 40px var(--px);
  min-height: 280px;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.35;
}
.product-stage {
  position: relative; z-index: 1; width: 260px; height: 280px;
  background: white; border-radius: 20px; border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-carousel { position: relative; width: 100%; height: 100%; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s ease; z-index: 1; pointer-events: none; }
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-tabs { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 4px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border-radius: 8px; padding: 3px; border: 1px solid var(--border); }
.carousel-tab { font-family: var(--font); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3px; padding: 5px 12px; border: none; border-radius: 6px; background: transparent; color: var(--mid); cursor: pointer; transition: all 0.18s; white-space: nowrap; }
.carousel-tab.active { background: white; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.carousel-tab:hover:not(.active) { color: var(--ink); }
.product-stage img { width: 100%; height: 100%; object-fit: cover; }
.product-stage .model-tag {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: var(--warm); border-top: 1px solid #E8D5C0;
  padding: 10px 16px; display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; cursor: pointer; transition: background 0.15s;
}
.product-stage .model-tag:hover { background: #EFD9C0; }
.model-tag span { font-size: 0.7rem; font-weight: 600; color: var(--accent-deep); }
.compat-dot { width: 8px; height: 8px; background: #2ECC71; border-radius: 50%; box-shadow: 0 0 0 3px rgba(46,204,113,0.2); }

/* ── STRIP ── */
.strip { background: var(--green-deep); padding: 16px var(--px); display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; }
.strip-item { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.strip-item::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ── KNOPPEN ── */
.btn-primary { background: var(--accent); color: white; padding: 14px 28px; border-radius: 8px; font-family: var(--font); font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.18s, transform 0.15s; width: 100%; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost { font-size: 0.875rem; font-weight: 500; color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.18s; text-align: center; }
.btn-ghost:hover { color: var(--ink); }
.btn-white { background: white; color: var(--green-deep); padding: 14px 28px; border-radius: 8px; font-family: var(--font); font-size: 0.9rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── SECTIES ALGEMEEN ── */
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
h2 { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px; }

/* ── PROBLEEM / BEFORE-AFTER ── */
.problem-section { padding: 64px var(--px); max-width: 1100px; margin: 0 auto; }
.problem-section .intro { font-size: 0.95rem; color: var(--mid); line-height: 1.7; max-width: 580px; margin-bottom: 36px; }
.before-after { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.ba-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.ba-label { padding: 12px 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.ba-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ba-label.before { background: #FEF3CD; color: #92600A; border-bottom: 1px solid #F5DFA0; }
.ba-label.after  { background: var(--green-lt); color: var(--green-deep); border-bottom: 1px solid var(--green-mid); }
.ba-img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; max-height: 320px; }
.ba-img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--green-lt); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.ba-img-placeholder p { font-size: 0.8rem; color: var(--mid); text-align: center; padding: 0 20px; line-height: 1.5; }
.ba-caption { padding: 14px 16px; background: white; }
.ba-caption p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* ── FEATURES GRID ── */
.features { padding: 0 var(--px) 64px; max-width: 1100px; margin: 0 auto; }
.features-intro { color: var(--mid); line-height: 1.7; font-size: 0.9rem; max-width: 560px; margin-bottom: 32px; }
.features-header { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.feature-cell { background: var(--white); padding: 28px 24px; }
.feature-cell:nth-child(even) { background: var(--off-white); }
.feature-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; color: var(--green); margin-bottom: 14px; display: block; }
.feature-cell h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.feature-cell p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ── COMPAT ── */
.compat { background: var(--accent-lt); border-top: 1px solid #E8D5C0; border-bottom: 1px solid #E8D5C0; padding: 56px var(--px); }
.compat-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.compat p { color: var(--mid); line-height: 1.7; }
.model-plate { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; }
.model-plate .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.model-plate .model { font-size: 1.1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; margin-bottom: 4px; }
.model-plate .sub { font-size: 0.75rem; color: var(--mid); }
.compat-status { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; background: #E8F8EE; border-radius: 100px; padding: 6px 14px; font-size: 0.75rem; font-weight: 600; color: #1A7A4A; }
.compat-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2ECC71; }

/* ── MONTAGE STAPPEN ── */
.steps-section { padding: 64px var(--px); max-width: 1100px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.step { border-top: 2px solid var(--accent); padding-top: 24px; }
.step-n { font-size: 0.72rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; letter-spacing: 1px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.step p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ── FAQ ── */
.faq-section { padding: 0 var(--px) 64px; max-width: 1100px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { background: var(--white); }
.faq-item summary { padding: 20px 24px; font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background 0.15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; font-weight: 400; color: var(--mid); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { background: var(--off-white); }
.faq-item p { padding: 0 24px 20px; font-size: 0.88rem; color: var(--mid); line-height: 1.7; }

/* ── BLOG LISTING ── */
.blog-section { padding: 64px var(--px); max-width: 1100px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform 0.15s, box-shadow 0.15s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; color: var(--ink); }
.blog-card-body p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }
.blog-card-meta { font-size: 0.72rem; color: var(--mid); font-weight: 500; display: flex; gap: 16px; }

/* ── BLOG ARTICLE ── */
.breadcrumbs { padding: 16px var(--px); max-width: 1100px; margin: 0 auto; font-size: 0.75rem; color: var(--mid); display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--mid); text-decoration: none; transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { color: var(--border); }
.article-header { padding: 32px var(--px) 0; max-width: 680px; margin: 0 auto; }
.article-header h1 { font-size: 1.8rem; font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 12px; }
.article-meta { font-size: 0.78rem; color: var(--mid); display: flex; gap: 16px; margin-bottom: 32px; }
.article-content { padding: 0 var(--px) 64px; max-width: 680px; margin: 0 auto; }
.article-content h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; }
.article-content p { font-size: 0.95rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.article-content p:last-child { margin-bottom: 0; }
.article-cta { margin-top: 40px; padding: 28px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); }
.article-cta p { color: var(--mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.article-cta a { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent); transition: opacity 0.15s; }
.article-cta a:hover { opacity: 0.7; }

/* ── WAITLIST ── */
.waitlist-form { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; max-width: 420px; width: 100%; }
.waitlist-name-row { display: flex; gap: 8px; }
.waitlist-name-row .waitlist-input { flex: 1; min-width: 0; }

/* QR code section */
.qr-section { padding: 48px 20px; text-align: center; background: var(--off-white); border-top: 1px solid var(--border); }
.qr-section .container { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qr-code { border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.qr-text { color: var(--mid); font-size: 0.9rem; max-width: 280px; line-height: 1.5; }
.waitlist-row { display: flex; gap: 8px; }
.waitlist-input { flex: 1; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; background: rgba(255,255,255,0.08); color: white; font-family: var(--font); font-size: 0.88rem; outline: none; transition: border-color 0.15s; }
.waitlist-input::placeholder { color: rgba(255,255,255,0.35); }
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input:disabled { opacity: 0.5; }
.waitlist-btn { padding: 14px 24px; border: none; border-radius: 8px; background: var(--accent); color: white; font-family: var(--font); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.15s, transform 0.15s; white-space: nowrap; flex-shrink: 0; }
.waitlist-btn:hover:not(:disabled) { background: var(--accent-deep); transform: translateY(-1px); }
.waitlist-btn:disabled { opacity: 0.7; cursor: default; }
.waitlist-btn.sent { background: #2ECC71; }
.waitlist-msg { font-size: 0.78rem; min-height: 1.2em; }
.waitlist-msg.success { color: #2ECC71; }
.waitlist-msg.error { color: #E74C3C; }

.hero .waitlist-form { max-width: 420px; }
.hero .waitlist-input { background: var(--off-white); border: 1px solid var(--border); color: var(--ink); }
.hero .waitlist-input::placeholder { color: var(--mid); }
.hero .waitlist-input:focus { border-color: var(--accent); }
.hero .waitlist-msg.success { color: var(--green); }

/* ── PRODUCT CARDS ── */
.products-section { padding: 0 var(--px) 64px; max-width: 1100px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
.product-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: var(--green-mid); }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 60%; }
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 4px; }
.product-card-body .product-subtitle { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.product-card-body .product-price { font-size: 1.4rem; font-weight: 700; color: var(--accent); letter-spacing: -0.5px; }
.product-card-body .product-price-sub { font-size: 0.75rem; color: var(--mid); margin-top: 2px; }

/* ── CTA ── */
.cta-section { padding: 0 var(--px) 64px; max-width: 1100px; margin: 0 auto; }
.cta-inner { background: linear-gradient(135deg, var(--green-deep) 0%, #1D3D32 100%); border-radius: 16px; padding: 40px 28px; display: flex; flex-direction: column; gap: 32px; position: relative; overflow: hidden; }
.cta-inner::after { content: ''; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(200,149,108,0.08); pointer-events: none; }
.cta-inner h2 { font-size: 1.5rem; color: white; letter-spacing: -0.8px; line-height: 1.2; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
.cta-right { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; position: relative; z-index: 1; }
.price { font-size: 2.2rem; font-weight: 700; letter-spacing: -1.5px; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.incl { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 24px var(--px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
footer p { font-size: 0.78rem; color: var(--mid); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.78rem; color: var(--mid); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--ink); }

/* ── TAALKIEZER ── */
.lang-switcher { display: flex; gap: 2px; background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: 2px; }
.lang-btn { font-family: var(--font); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.5px; padding: 4px 8px; border: none; border-radius: 4px; background: transparent; color: var(--mid); cursor: pointer; transition: all 0.15s; }
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: white; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

/* ── OVER PAGINA ── */
.over-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }

/* ── ANIMATIES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.55s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }
.hero-right { animation: fadeUp 0.55s ease 0.2s both; }

/* ═══════════════════════════════════════════════
   TABLET (≥ 640px)
   ═══════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --px: 6%; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }

  .before-after { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-actions { flex-direction: row; }
  .btn-primary { width: auto; }

  .compat-inner { flex-direction: row; align-items: center; gap: 48px; }

  footer { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════════
   DESKTOP (≥ 960px)
   ═══════════════════════════════════════════════ */
@media (min-width: 960px) {
  :root { --px: 7%; }

  nav { height: 68px; }
  .nav-toggle { display: none; }
  nav ul {
    display: flex !important; flex-direction: row; position: static;
    background: none; border: none; padding: 0; gap: 36px;
    box-shadow: none;
  }
  nav ul li { width: auto; }
  nav ul a { padding: 0; font-size: 0.875rem; }
  .btn-nav { margin-top: 0 !important; }

  h1 { font-size: clamp(2.4rem, 3.5vw, 3.4rem); letter-spacing: -1.5px; }
  h2 { font-size: clamp(2rem, 2.8vw, 2.6rem); }

  .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 68px); max-height: 780px; flex-direction: row; }
  .hero-left { padding: 80px 7%; }
  .hero-right { border-bottom: none; border-left: 1px solid var(--border); padding: 0; min-height: auto; }
  .product-stage { width: 340px; height: 360px; border-radius: 24px; }

  .problem-section { padding: 100px 7%; }
  .features { padding: 0 7% 100px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-section { padding: 100px 7%; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }

  .faq-section { padding: 0 7% 100px; }
  .blog-section { padding: 100px 7%; }
  .article-header h1 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); }
  .cta-section { padding: 0 7% 100px; }
  .cta-inner { padding: 64px 72px; flex-direction: row; align-items: center; border-radius: 20px; gap: 60px; }
  .cta-inner h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

  .compat-inner { gap: 80px; }

  .over-grid { grid-template-columns: 1fr 1fr; gap: 80px; }

  .strip { gap: 56px; }
}
