/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:      #0D4A3A;
  --forest-dark: #083328;
  --forest-mid:  #155c49;
  --mint:        #4ADE80;
  --mint-soft:   #86EFAC;
  --cream:       #F8FAF9;
  --white:       #ffffff;
  --ink:         #0A1A14;
  --gray:        #6b7280;
  --gray-light:  #e5e7eb;
  --gray-bg:     #f3f4f6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,74,58,0.08);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  transition: box-shadow 0.2s;
}
.nav-logo-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--forest);
}
.nav-logo-name span { color: var(--mint); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-fallback { font-weight: 800; font-size: 18px; color: var(--forest); }
.nav-logo-fallback span { color: var(--mint); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--forest); background: var(--cream); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--forest);
  text-decoration: none; padding: 9px 18px; border-radius: 9px;
  border: 1.5px solid var(--forest); transition: all 0.2s;
}
.btn-ghost:hover { background: var(--forest); color: white; }

.btn-primary {
  font-size: 14px; font-weight: 700; color: white;
  text-decoration: none; padding: 9px 20px; border-radius: 9px;
  background: var(--forest); transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(13,74,58,0.25);
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn-primary.w-full, .btn-ghost.w-full { display: block; text-align: center; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px; align-items: center;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.hamburger:hover {
  background: var(--cream);
  border-color: var(--forest);
}
.bar {
  display: block; width: 22px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw);
  height: 100vh; height: 100dvh; background: white; z-index: 300;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transition: right 0.3s ease;
  padding: 0;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-light);
}
.mobile-drawer-header .nav-logo-img { height: 32px; }

.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--gray); padding: 6px;
  border-radius: 8px; transition: background 0.2s;
}
.drawer-close:hover { background: var(--gray-bg); }

.mobile-drawer-links {
  flex: 1; display: flex; flex-direction: column;
  padding: 8px 16px;
}
.mobile-drawer-links a {
  font-size: 15px; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 11px 16px; border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer-links a:hover { background: var(--cream); color: var(--forest); }

.mobile-drawer-actions {
  padding: 12px 16px 24px;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--gray-light);
}
.mobile-drawer-actions .btn-ghost,
.mobile-drawer-actions .btn-primary {
  display: block;
  text-align: center;
  top: -30rem;
  padding: 10px 16px;
  font-size: 13px;
}

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 250; display: none; opacity: 0; transition: opacity 0.3s;
}
.drawer-overlay.visible { display: block; opacity: 1; }
/* Screenshot below hero split */
.hero-screenshot-wrap {
  max-width: 1100px; margin: 80px auto 0;
  position: relative; padding-bottom: 32px;
}
.screenshot-browser {
  background: #1a2420; border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.screenshot-bar {
  background: #111c18; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.screenshot-dots { display: flex; gap: 6px; }
.screenshot-dots span { width: 10px; height: 10px; border-radius: 50%; }
.screenshot-dots span:nth-child(1) { background: #ff5f57; }
.screenshot-dots span:nth-child(2) { background: #febc2e; }
.screenshot-dots span:nth-child(3) { background: #28c840; }
.screenshot-url {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px;
  padding: 5px 12px; font-size: 11px; color: rgba(255,255,255,0.4);
  font-family: monospace;
}
.screenshot-img { width: 100%; display: block; }
.screenshot-placeholder {
  padding: 60px 24px; color: rgba(255,255,255,0.3);
  font-size: 14px; text-align: center;
}
.screenshot-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: white;
  font-size: 15px; font-weight: 700;
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(13,74,58,0.4);
  transition: all 0.2s; white-space: nowrap;
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
}
.screenshot-cta-btn:hover { transform: translateX(-50%) translateY(-2px); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
/* ══════════════════════════════
   HERO — SPLIT LAYOUT
══════════════════════════════ */
.hero {
  padding: 100px 48px 80px;
  background: linear-gradient(160deg, #f0fdf4 0%, white 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* LEFT */
.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,74,58,0.07); border: 1px solid rgba(13,74,58,0.14);
  color: var(--forest); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  letter-spacing: 0.02em; width: fit-content;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1; color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--forest); }

.hero-sub {
  font-size: 17px; color: var(--gray);
  line-height: 1.7; margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}
.btn-big {
  font-size: 15px; font-weight: 700; color: white;
  text-decoration: none; padding: 14px 28px; border-radius: 12px;
  background: var(--forest);
  box-shadow: 0 4px 20px rgba(13,74,58,0.3); transition: all 0.2s;
}
.btn-big:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn-outline-big {
  font-size: 15px; font-weight: 600; color: var(--forest);
  text-decoration: none; padding: 14px 28px; border-radius: 12px;
  border: 2px solid var(--forest); transition: all 0.2s;
}
.btn-outline-big:hover { background: var(--forest); color: white; }

/* Stats row */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.hero-stat-num {
  font-size: 24px; font-weight: 900; color: var(--forest);
}
.hero-stat-label {
  font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 2px;
}
.hero-stat-divider {
  width: 1px; height: 36px; background: var(--gray-light);
}

/* RIGHT */
.hero-right { position: relative; }

.hero-img-wrap {
  position: relative; border-radius: 20px; overflow: visible;
}
.hero-photo {
  width: 100%; border-radius: 20px; display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  object-fit: cover; height: 520px;
}
.hero-photo-placeholder {
  width: 100%; height: 520px; border-radius: 20px;
  background: var(--gray-bg); border: 2px dashed var(--gray-light);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gray); text-align: center; gap: 12px;
}
.hero-photo-placeholder p { font-size: 14px; color: var(--gray); }
.hero-photo-placeholder small { color: var(--gray); opacity: 0.7; }

/* Floating cards */
.hero-float-card {
  position: absolute; bottom: 32px; left: -32px;
  background: white; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 180px;
  animation: floatUp 3s ease-in-out infinite alternate;
}
.hero-float-top {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--gray); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px;
}
.hero-float-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
}
.hero-float-amount {
  font-size: 22px; font-weight: 900; color: var(--forest);
}
.hero-float-sub {
  font-size: 11px; color: #059669; font-weight: 600; margin-top: 4px;
}

.hero-float-alert {
  position: absolute; top: 24px; right: -24px;
  background: var(--forest); color: white;
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(13,74,58,0.3);
  white-space: nowrap;
  animation: floatUp 3s ease-in-out 1s infinite alternate;
}

@keyframes floatUp {
  from { transform: translateY(0px); }
  to   { transform: translateY(-8px); }
}
/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section { padding: 96px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: 12px; font-weight: 700; color: var(--forest);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.eyebrow.light { color: var(--mint-soft); }

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15; color: var(--ink); margin-bottom: 14px;
}
.section-title.light { color: white; }

.section-sub {
  font-size: 17px; color: var(--gray);
  max-width: 580px; line-height: 1.7; margin-bottom: 52px;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════
   USE CASES
══════════════════════════════ */
.use-cases { background: var(--cream); padding-top: 128px; }

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.use-case-card {
  background: white; border-radius: 16px; padding: 28px;
  border: 1px solid var(--gray-light);
  transition: box-shadow 0.25s, transform 0.25s;
}
.use-case-card:hover { box-shadow: 0 8px 32px rgba(13,74,58,0.1); transform: translateY(-3px); }

.uc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 18px;
}

.use-case-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.use-case-card p  { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }

.uc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.uc-tags span {
  font-size: 11px; font-weight: 600; color: var(--forest);
  background: rgba(13,74,58,0.08); padding: 3px 10px; border-radius: 20px;
}

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features-section { background: white; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  padding: 24px; border-radius: 14px;
  border: 1.5px solid var(--gray-light);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 20px rgba(13,74,58,0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(13,74,58,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest); margin-bottom: 14px;
}
.feature-card h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.pricing-section { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; align-items: start;
}
.pricing-card {
  background: white; border-radius: 20px; padding: 36px 32px;
  border: 1.5px solid var(--gray-light);
  position: relative;
}
.pricing-card.popular {
  border-color: var(--forest);
  box-shadow: 0 8px 40px rgba(13,74,58,0.12);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--forest); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 12px; font-weight: 700; color: var(--forest); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.plan-price { font-size: 38px; font-weight: 900; color: var(--ink); margin-bottom: 4px; letter-spacing: -1px; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--gray); letter-spacing: 0; }
.custom-price { font-size: 30px; }
.plan-desc { font-size: 13px; color: var(--gray); margin-bottom: 28px; line-height: 1.6; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink); padding: 7px 0;
  border-bottom: 1px solid var(--gray-bg);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features svg { color: var(--forest); flex-shrink: 0; }
.plan-cta {
  display: block; text-align: center; font-size: 14px; font-weight: 700;
  padding: 13px; border-radius: 10px; text-decoration: none; transition: all 0.2s;
}
.plan-cta.solid  { background: var(--forest); color: white; }
.plan-cta.solid:hover  { background: var(--forest-dark); }
.plan-cta.outline { border: 2px solid var(--forest); color: var(--forest); }
.plan-cta.outline:hover { background: var(--forest); color: white; }
.plan-cta.wa { background: #25D366; color: white; }
.plan-cta.wa:hover { background: #1da855; }

/* ══════════════════════════════
   FAQ — centred
══════════════════════════════ */
.faq-section { background: white; }

.faq-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.faq-inner .section-sub { margin-left: auto; margin-right: auto; }

.faq-list { text-align: left; }
.faq-item { border-bottom: 1px solid var(--gray-light); }

.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 16px; font-weight: 600; color: var(--ink);
  transition: color 0.2s; font-family: 'Inter', sans-serif; gap: 16px;
}
.faq-q:hover { color: var(--forest); }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; color: var(--forest);
}
.faq-item.open .faq-icon { background: var(--forest); color: white; }
.faq-item.open .icon-plus  { display: none !important; }
.faq-item.open .icon-minus { display: block !important; }

.faq-a {
  font-size: 15px; color: var(--gray); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ══════════════════════════════
   FEEDBACK
══════════════════════════════ */
.feedback-section { background: var(--cream); }

.feedback-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.feedback-inner .section-sub { margin-left: auto; margin-right: auto; }

.feedback-form {
  text-align: left;
  display: flex; flex-direction: column; gap: 14px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.feedback-form input,
.feedback-form select,
.feedback-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-light); border-radius: 10px;
  font-size: 14px; color: var(--ink); font-family: 'Inter', sans-serif;
  background: white; outline: none; transition: border-color 0.2s;
}
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--forest); }
.feedback-form textarea { resize: vertical; min-height: 120px; }

.form-submit-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--forest); color: white;
  font-size: 15px; font-weight: 700;
  padding: 15px 32px; border-radius: 10px; border: none;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
  align-self: flex-start;
}
.form-submit-btn:hover { background: var(--forest-dark); transform: translateY(-1px); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { background: var(--forest); }
.contact-section .eyebrow { color: var(--mint-soft); }
.contact-section .section-title { color: white; }
.contact-section .section-sub { color: rgba(255,255,255,0.65); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.contact-left .section-sub { margin-bottom: 32px; }

.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.07); border-radius: 14px;
  padding: 18px 20px; border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none; transition: background 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.12); }
.cc-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cc-icon.wa    { background: #25D366; }
.cc-icon.email { background: rgba(255,255,255,0.15); }
.cc-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.cc-value { font-size: 15px; font-weight: 600; color: white; margin-top: 2px; }

.contact-right .contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-right .contact-form input,
.contact-right .contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: white;
}
.contact-right .contact-form input::placeholder,
.contact-right .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-right .contact-form input:focus,
.contact-right .contact-form textarea:focus { border-color: var(--mint); }
.contact-right .contact-form textarea { min-height: 100px; resize: vertical; }
.contact-right .form-submit-btn { background: var(--mint); color: var(--forest-dark); align-self: stretch; }
.contact-right .form-submit-btn:hover { background: #22c55e; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: var(--forest-dark); padding: 56px 24px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.footer-brand { max-width: 240px; }
.footer-logo-img { height: 32px; margin-bottom: 12px; }
.footer-logo-text { font-weight: 800; font-size: 18px; color: white; margin-bottom: 12px; }
.footer-logo-text span { color: var(--mint); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #25D366; text-decoration: none;
}
.footer-wa:hover { color: #4ADE80; }

/* ══════════════════════════════
   MODALS
══════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 400;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: white; border-radius: 20px; padding: 40px 36px;
  max-width: 420px; width: 100%; text-align: center;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon.success { background: #f0fdf4; color: var(--forest); }
.modal-box h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.modal-box p  { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 24px; }
.modal-box button {
  background: var(--forest); color: white; border: none;
  padding: 12px 32px; border-radius: 10px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s;
}
.modal-box button:hover { background: var(--forest-dark); }
.footer-social-icons { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.2s;
}
.social-icon:hover {
    background: var(--forest-mid);
    color: var(--mint);
    border-color: var(--mint);
    transform: translateY(-2px);
}
/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-ghost, .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-photo { height: 300px; }
  .hero-photo-placeholder { height: 300px; }
  .hero-float-card { left: 16px; bottom: -16px; }
  .hero-float-alert { right: 16px; top: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 640px) {
   nav { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-big, .btn-outline-big { text-align: center; }
  .hero-stats { gap: 16px; margin-left: 1.3rem;}
  .hero-float-alert { display: none; }
  .section { padding: 72px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr; }
  .screenshot-cta-btn {
      position: static;
      transform: none;
      width: 100%;
      justify-content: center;
      margin-top: 16px;
      font-size: 13px;
      padding: 13px 20px;
      border-radius: 12px;
      white-space: normal;
      text-align: center;
    }
    .screenshot-cta-btn:hover { transform: none; }
    .hero-screenshot-wrap { padding-bottom: 0; }
}