/* ── VARIABLES & RESET ──────────────────────────────────── */
:root {
  --green-dark:  #115030;
  --green-main:  #1a7043;
  --green-light: #2ecc71;
  --green-pale:  #f0fdf4;
  --white:       #ffffff;
  --bg:          #f5f5f5;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 50px rgba(26,112,67,0.14);
  --radius:      16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }

a { text-decoration: none; }

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(36px); }
  to   { opacity:1; transform:translateY(0);    }
}
@keyframes bgShift {
  0%   { background-position: 0%   60%; }
  50%  { background-position: 100% 40%; }
  100% { background-position: 0%   60%; }
}
@keyframes orbFloat {
  0%,100% { transform:translateY(0)   scale(1);    }
  50%      { transform:translateY(-28px) scale(1.04); }
}
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0   rgba(46,204,113,0.45); }
  70%      { box-shadow: 0 0 0 10px rgba(46,204,113,0);    }
}
@keyframes gridScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}
@keyframes counterUp {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0);    }
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1),
              transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.active { opacity:1; transform:translateY(0); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2%;
  background: var(--green-main);
  transition: padding 0.3s, box-shadow 0.3s;
}
.nav .nav-links { position: absolute; left: 50%; transform: translateX(-50%); }
.nav .nav-cta { margin-left: 0; }
.nav-scrolled {
  padding: 0.65rem 2%;
  box-shadow: 0 2px 18px rgba(17,80,48,0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo svg { flex-shrink:0; }
.op-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: #fff;
  border-radius: 9px;
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.op-logo-pill img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-logo .op-logo-pill { width: 28px; height: 28px; border-radius: 7px; }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.65);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--green-main);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(-45deg, #0d3d25, var(--green-dark), var(--green-main), #1e9955, var(--green-dark));
  background-size: 500% 500%;
  animation: bgShift 18s ease infinite;
  padding-top: 90px;
}

/* scrolling grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridScroll 8s linear infinite;
}

/* ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.hero-orb-1 {
  width: 520px; height: 520px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(46,204,113,0.25), transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  left: 30%; bottom: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  animation: orbFloat 13s ease-in-out infinite reverse;
}

/* hero content */
.hero-inner {
  z-index: 2;
  animation: fadeUp 0.9s ease-out forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: badgePulse 2.5s infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-shimmer {
  background: linear-gradient(
    100deg,
    rgba(255,255,255,1) 10%,
    rgba(46,204,113,0.95) 40%,
    rgba(255,255,255,1) 70%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3.5s linear infinite;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.4rem;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: var(--white);
  color: var(--green-main);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  background: var(--green-pale);
}

/* hero browser mockup */
.hero-mockup-wrap {
  z-index: 2;
  animation: fadeUp 0.9s 0.25s ease-out both;
}

.hero-mockup {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s;
}
.hero-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }

.hero-iframe-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* height set by JS */
}
.hero-iframe {
  width: 1280px;
  height: 760px;
  border: none;
  display: block;
  transform-origin: top left;
  pointer-events: none;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}
.mdot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.mdot.r { background: #ff5f57; }
.mdot.y { background: #ffbd2e; }
.mdot.g { background: #28c840; }
.mockup-url {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: monospace;
}
.mockup-screen { display:block; width:100%; }

/* ── STATS BAND ─────────────────────────────────────────── */
.stats-band {
  background: var(--green-dark);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3.5rem;
  animation: counterUp 0.6s ease-out;
}
.stat-item:nth-child(1) { animation-delay:0.1s; }
.stat-item:nth-child(3) { animation-delay:0.2s; }
.stat-item:nth-child(5) { animation-delay:0.3s; }
.stat-item:nth-child(7) { animation-delay:0.4s; }

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}
.stat-div {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── FEATURES ───────────────────────────────────────────── */
.features {
  padding: 110px 5%;
  background: var(--white);
}

.features-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}
.features-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin: 0.75rem 0 1rem;
}
.features-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: var(--green-pale);
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* feature rows: alternate text-left/right */
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 100px;
}
.feat-row:last-child { margin-bottom: 0; }

.feat-row-reverse { direction: rtl; }
.feat-row-reverse > * { direction: ltr; }

.feat-text { max-width: 460px; }

.feat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  border: 1px solid rgba(26,112,67,0.2);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.feat-text h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}

.feat-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--text);
}
.feat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  background: var(--green-pale);
  border: 1.5px solid rgba(26,112,67,0.3);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231a7043' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feat-visual {
  position: relative;
}
.feat-svg {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,112,67,0.08);
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.5s;
}
.feat-visual:hover .feat-svg {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 72px rgba(26,112,67,0.2);
}

.feat-mockup-frame {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,112,67,0.08);
  transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.5s;
}
.feat-visual:hover .feat-mockup-frame {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 72px rgba(26,112,67,0.2);
}

.feat-iframe-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* height set by JS */
}
.feat-iframe {
  width: 1280px;
  height: 720px;
  border: none;
  display: block;
  transform-origin: top left;
  pointer-events: none;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: 110px 5%;
  background: var(--green-pale);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.contact-text .section-tag { margin-bottom: 1.2rem; }

.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}
.contact-text > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info { display:flex; flex-direction:column; gap:0.9rem; }
.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.info-item svg { color: var(--green-main); flex-shrink:0; }

/* contact form */
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(26,112,67,0.1);
  border: 1px solid rgba(26,112,67,0.1);
}

.form-row { margin-bottom: 1rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.93rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8b4c0; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(26,112,67,0.12);
  background: var(--white);
}

.submit-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,112,67,0.38);
}
.submit-btn:disabled { opacity:0.65; cursor:not-allowed; transform:none; }

.contact-status {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.contact-status.success { background:#f0fdf4; color:var(--green-main); border:1px solid rgba(26,112,67,0.25); }
.contact-status.error   { background:#fef2f2; color:#dc2626;           border:1px solid rgba(220,38,38,0.25);  }
.hidden { display:none !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--green-dark);
  padding: 2.5rem 5%;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-inner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-cta {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}
.footer-cta:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

/* ── NAV LINKS & BURGER ─────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link-active { color: #fff; }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: .28rem; padding: 0;
  transition: color .2s;
}
.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn { color: #fff; }
.nav-dd-arrow { font-size: .55rem; transition: transform .18s; display: inline-block; }
.nav-dropdown.open .nav-dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border-radius: 12px; padding: .35rem;
  min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  z-index: 2000;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; animation: ddIn .14s ease; }
@keyframes ddIn {
  from { opacity:0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}
.nav-dd-item {
  display: flex; align-items: center; gap: .55rem;
  padding: .5rem .8rem; border-radius: 8px;
  font-size: .85rem; font-weight: 600; color: #1e293b;
  text-decoration: none; transition: background .12s;
}
.nav-dd-item:hover { background: #f0fdf4; color: #15803d; }
.nav-dd-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-burger:hover { background: rgba(255,255,255,0.12); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feat-row,
  .feat-row.feat-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 3rem;
  }
  .feat-text { max-width: 100%; }
  .feat-row-reverse .feat-visual { order: 1; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-inner { display: flex; flex-direction: column; align-items: center; }
  .hero-badge { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-mockup-wrap { display:none; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stats-band {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-div { width:60px; height:1px; }
  .stat-item { padding: 0.5rem 2rem; }
}

@media (max-width: 700px) {
  /* Hamburger nav */
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5%;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }

  .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }
  .nav-cta {
    margin-top: 0.85rem;
    text-align: center;
    padding: 0.7rem 1.4rem;
  }
}

@media (max-width: 600px) {
  .nav { padding: 0.9rem 4%; }

  .hero { padding: 80px 5% 50px; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 2.5rem); letter-spacing: -0.5px; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.8rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }

  .btn-primary { padding: 0.85rem 1.6rem; font-size: 0.95rem; width: 100%; justify-content: center; }

  .features { padding: 60px 5%; }
  .feat-row { margin-bottom: 50px; gap: 2rem; }
  .features-header { margin-bottom: 50px; }

  .contact { padding: 60px 5%; }
  .contact-form { padding: 1.5rem; }
  .form-row.two-col { grid-template-columns: 1fr; }

  .footer-inner { flex-direction:column; align-items:center; text-align:center; gap:0.75rem; }

  .stat-num { font-size: 2.4rem; }
  .stat-suffix { font-size: 2rem; }

  .pricing-grid { gap: 1.2rem; }
}

/* ── ABOUT SECTION (SEO) ─────────────────────────────────── */
.about-section {
  background: var(--green-pale);
  padding: 60px 6%;
  border-top: 1px solid #bbf7d0;
}
.about-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-inner h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.about-inner p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.about-links {
  margin-top: 1.25rem;
}
.about-links a {
  color: var(--green-main);
  font-weight: 600;
  text-decoration: none;
}
.about-links a:hover {
  text-decoration: underline;
}
