:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --surface-2: #f0f5f1;
  --text: #122118;
  --muted: #5d6a62;
  --line: rgba(18, 33, 24, 0.08);
  --green: #1d8f4e;
  --green-dark: #0f2a1d;
  --red: #d84d3f;
  --gold: #d7a148;
  --shadow: 0 18px 55px rgba(16, 32, 23, 0.10);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-soft { background: linear-gradient(180deg, #ffffff, #f4f7f4); }
.section-dark, .hta-section {
  color: #fff;
  background: radial-gradient(circle at top right, rgba(216,77,63,0.22), transparent 30%), linear-gradient(135deg, #0e2419, #122b1f 55%, #193624);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 16px;
}
.eyebrow.green { color: var(--green); }
.eyebrow.light { color: #d4f4df; }
h1, h2, h3, .brand span { font-family: 'Manrope', sans-serif; letter-spacing: -.03em; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1.03; margin: 0 0 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; margin: 0 0 18px; }
h3 { font-size: 1.35rem; margin: 0 0 10px; }
p { margin: 0 0 16px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { display: block; font-weight: 800; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: .84rem; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-weight: 600; }
.desktop-nav a:hover { color: var(--green-dark); }
.menu-toggle { display: none; border: 0; background: #fff; box-shadow: var(--shadow); width: 44px; height: 44px; border-radius: 14px; font-size: 1.2rem; }
.mobile-menu { display: none; padding: 0 16px 18px; }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 600; border-top: 1px solid var(--line); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 22px; border-radius: 999px;
  font-weight: 700; border: 1px solid transparent; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green), #4bbd77); color: #fff; box-shadow: 0 18px 35px rgba(29,143,78,.24); }
.btn-secondary { background: #fff; color: var(--green-dark); border-color: rgba(255,255,255,.25); }
.btn-outline { background: #fff; color: var(--green-dark); border-color: var(--line); }
.btn-accent { background: linear-gradient(135deg, var(--gold), #f0c46f); color: #1b180e; box-shadow: 0 16px 32px rgba(215,161,72,.28); }
.hero { position: relative; overflow: hidden; padding: 58px 0 88px; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,17,12,.84), rgba(9,17,12,.45)), url('assets/images/hero.jpg') center/cover no-repeat;
  opacity: .22;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center;
}
.hero-text { font-size: 1.08rem; max-width: 760px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 34px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.hero-stats div { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.hero-stats strong { display: block; margin-bottom: 6px; }
.hero-stats span { display: block; color: rgba(255,255,255,.74); font-size: .92rem; }
.hero-card { position: relative; }
.hero-visual img { border-radius: 30px; box-shadow: 0 24px 65px rgba(0,0,0,.3); aspect-ratio: 4/5; object-fit: cover; }
.glass-panel {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  padding: 20px; border-radius: 24px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(16px);
}
.badge { display: inline-block; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; margin-bottom: 10px; font-size: .84rem; font-weight: 700; }
.partners-strip { padding: 18px 0; background: #fff; border-bottom: 1px solid var(--line); }
.logos-line { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; justify-content: center; color: var(--muted); font-weight: 700; }
.logos-line span { color: var(--green); }
.section-head { max-width: 840px; margin-bottom: 32px; }
.problem-grid, .proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.card, .proof-card, .pricing-card, .hta-card, .contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card, .proof-card, .hta-card { padding: 28px; }
.icon {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(29,143,78,.12), rgba(216,77,63,.08)); margin-bottom: 18px;
}
.two-col { display: grid; grid-template-columns: 1fr .9fr; gap: 42px; align-items: center; }
.trust-inline { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-weight: 600; margin: 22px 0; }
.info-banner { padding: 16px 18px; background: rgba(29,143,78,.08); color: #134029; border-radius: 18px; border: 1px solid rgba(29,143,78,.12); }
.image-stack { position: relative; min-height: 460px; }
.main-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.floating-photo { position: absolute; width: 46%; right: -10px; bottom: -28px; border-radius: 22px; border: 8px solid #fff; box-shadow: var(--shadow); }
.pricing-wrap { margin-top: 56px; }
.pricing-table { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card { padding: 30px; position: relative; }
.pricing-card.featured { background: linear-gradient(180deg,#fff,#f2fbf6); border-color: rgba(29,143,78,.22); transform: translateY(-10px); }
.featured-tag {
  position: absolute; top: 18px; right: 18px; padding: 8px 12px; border-radius: 999px;
  background: rgba(29,143,78,.12); color: var(--green); font-size: .78rem; font-weight: 800;
}
.plan { color: var(--green); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
.pricing-card h3 { font-size: 2rem; margin-bottom: 18px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.pricing-card li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.deliverable { margin: 18px 0 22px; font-weight: 700; color: var(--green-dark); }
.plan-btn { width: 100%; }
.hta-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: start; }
.hta-cards { display: grid; gap: 20px; }
.hta-card { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.12); }
.reassurance-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.partner-logo { width: 160px; object-fit: contain; }
.pill-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pill-row span { padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); font-weight: 700; color: var(--green-dark); }
.client-strip { margin-top: 28px; padding: 28px; background: #fff; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.client-strip p { font-weight: 800; margin-bottom: 18px; }
.client-logos { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; align-items: center; }
.client-logos img { width: 100%; height: 68px; object-fit: contain; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.gallery-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: center; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery img { height: 340px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-boxes { display: grid; gap: 14px; margin-top: 26px; }
.contact-boxes div { padding: 18px 20px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-boxes span { display: block; color: var(--muted); margin-bottom: 4px; }
.contact-form { padding: 28px; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
label { display: block; font-weight: 700; margin-bottom: 16px; }
input, select, textarea {
  width: 100%; margin-top: 8px; border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px;
  font: inherit; background: #fff; color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(29,143,78,.16); border-color: rgba(29,143,78,.32); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.form-note { margin-top: 12px; color: var(--muted); font-size: .92rem; }
.site-footer { padding: 28px 0 40px; background: #fff; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-wrap img { width: 62px; margin-bottom: 10px; }
.floating-wa { position: fixed; right: 18px; bottom: 18px; z-index: 60; }
.floating-wa a {
  display: flex; flex-direction: column; gap: 2px; padding: 14px 18px; color: #fff;
  background: linear-gradient(135deg, #15a34a, #28c76f); border-radius: 18px; box-shadow: 0 22px 45px rgba(21,163,74,.32);
}
.floating-wa span { font-size: .8rem; opacity: .9; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
@media (max-width: 1100px) {
  .hero-grid, .two-col, .hta-wrap, .gallery-grid, .contact-wrap { grid-template-columns: 1fr; }
  .problem-grid, .proof-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-table { grid-template-columns: 1fr; }
  .client-logos { grid-template-columns: repeat(3,1fr); }
  .hero-stats { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .desktop-nav, .nav-wrap > .btn { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .mobile-menu.open { display: block; }
  .hero { padding-top: 30px; }
  .section { padding: 72px 0; }
}
@media (max-width: 680px) {
  .problem-grid, .proof-grid, .gallery { grid-template-columns: 1fr; }
  .form-row, .client-logos { grid-template-columns: 1fr; }
  .floating-photo { position: static; width: 68%; margin: -30px 0 0 auto; }
  .reassurance-top, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .hero-actions, .form-actions { flex-direction: column; }
  .btn, .plan-btn { width: 100%; }
}
