/* ============================================
   DigitalFloww Agency — style.css
   ============================================ */

:root {
  --green: #1a9e6e;
  --green-dark: #0d6b49;
  --dark: #0e0e0e;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --border: rgba(255,255,255,0.08);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--dark); color: #fff; overflow-x: hidden; }

/* PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; padding-top: 70px; }

/* FADE ANIMATION */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes shake { 0%,100%{transform:translateX(0);} 20%{transform:translateX(-8px);} 40%{transform:translateX(8px);} 60%{transform:translateX(-6px);} 80%{transform:translateX(6px);} }
.lp-box.shake { animation: shake 0.4s ease; }

/* COMMON */
section { padding: 88px 80px; }
.container { max-width: 1500px; margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-head); }
h2 { font-size: clamp(30px,3.5vw,52px); font-weight: 700; line-height: 1.12; color: white; }
.h2-sub { font-size: 18px; color: #666; margin-top: 14px; font-weight: 300; }
.section-hidden { display: none !important; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--green);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(26,158,110,0.3); padding: 6px 14px;
  border-radius: 50px; margin-bottom: 22px; font-family: var(--font-head);
}
.tag::before { content: ''; width: 7px; height: 7px; background: var(--green); border-radius: 50%; }

/* BUTTONS */
.btn-primary {
  background: var(--green); color: white; padding: 15px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  font-family: var(--font-head); display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.2s; text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.2); color: white; padding: 15px 32px;
  border-radius: 50px; font-size: 15px; background: none; cursor: pointer;
  font-family: var(--font-head); display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.2s; text-decoration: none; font-weight: 500;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }

/* ===== POPUP ===== */
#lead-popup {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.88); z-index: 99999;
  align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.4s ease;
}
#lead-popup.open { display: flex; }
.lp-box {
  background: #111; border: 1px solid rgba(26,158,110,0.35);
  border-radius: 20px; padding: 40px 36px; max-width: 500px; width: 100%;
  position: relative; animation: slideUp 0.4s ease;
}
.lp-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), #0d6b49); border-radius: 20px 20px 0 0; }
.lp-close { position: absolute; top: 14px; right: 14px; background: #1a1a1a; border: 1px solid #333; color: #666; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.lp-close:hover { background: #222; color: #aaa; }
.lp-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(26,158,110,0.3); padding: 5px 12px; border-radius: 50px; margin-bottom: 14px; }
.lp-tag::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.lp-title { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: white; line-height: 1.25; margin-bottom: 8px; }
.lp-title span { color: var(--green); }
.lp-sub { font-size: 14px; color: #666; margin-bottom: 24px; line-height: 1.5; }
.lp-row { margin-bottom: 13px; }
.lp-row label { display: block; font-size: 11px; color: #666; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.lp-row input { width: 100%; background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px 15px; color: white; font-family: var(--font-body); font-size: 14px; outline: none; transition: all 0.2s; }
.lp-row input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,158,110,0.1); }
.lp-row input::placeholder { color: #444; }
.lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-submit { width: 100%; background: var(--green); color: white; border: none; padding: 14px; border-radius: 50px; font-size: 15px; font-weight: 700; font-family: var(--font-head); cursor: pointer; transition: all 0.25s; margin-top: 8px; }
.lp-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,158,110,0.3); }
.lp-success { text-align: center; padding: 20px 0; }
.lp-success .s-icon { font-size: 52px; margin-bottom: 18px; }
.lp-success h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: white; margin-bottom: 10px; }
.lp-success p { font-size: 15px; color: #666; line-height: 1.6; }

/* ===== PRIVACY MODAL ===== */
#privacy-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.88); z-index: 9998; overflow-y: auto; padding: 40px 20px; }
#privacy-modal.open { display: flex; align-items: flex-start; justify-content: center; }
.pm-box { background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 52px; max-width: 820px; width: 100%; position: relative; margin: auto; }
.pm-close { position: absolute; top: 18px; right: 18px; background: #222; border: 1px solid #333; color: #aaa; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 17px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.pm-close:hover { background: #333; color: white; }
.pm-box h2 { font-family: var(--font-head); font-size: 28px; color: white; margin-bottom: 8px; }
.pm-date { font-size: 14px; color: #555; margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pm-sec { margin-bottom: 28px; }
.pm-sec h3 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--green); margin-bottom: 12px; }
.pm-sec p { font-size: 15px; color: #888; line-height: 1.8; margin-bottom: 8px; }
.pm-sec ul { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.pm-sec ul li { font-size: 15px; color: #888; line-height: 1.6; }
.pm-sec a { color: var(--green); text-decoration: none; }
.pm-highlight { background: rgba(26,158,110,0.08); border: 1px solid rgba(26,158,110,0.2); border-radius: 10px; padding: 16px 20px; margin-top: 12px; }
.pm-highlight p { color: #aaa; margin: 0; }

/* ===== NAV ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 12px 80px; background: rgba(14,14,14,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: white; cursor: pointer; }
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links li a { font-size: 14px; color: #aaa; cursor: pointer; transition: color 0.2s; font-weight: 400; text-decoration: none; }
.nav-links li a:hover, .nav-links li a.nav-active { color: white; }
.nav-cta { background: var(--green); color: white; padding: 11px 26px; border-radius: 50px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; display: flex; align-items: center; gap: 7px; font-family: var(--font-head); }
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
#hamburger { display: none; background: none; border: 1px solid rgba(255,255,255,0.15); color: white; width: 38px; height: 38px; border-radius: 8px; cursor: pointer; font-size: 17px; margin-left: 10px; align-items: center; justify-content: center; }

/* ===== HERO ===== */
#hero { padding-top: 120px; padding-bottom: 90px; position: relative; overflow: hidden; }
#services-intro { padding-top: 120px; padding-bottom: 20px; }
.hero-bg { position: absolute; top: -200px; right: -200px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(26,158,110,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 460px; gap: 70px; align-items: center; }
.hero-eyebrow { font-size: 13px; color: var(--green); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head); }
h1 { font-size: clamp(40px,4.5vw,66px); font-weight: 800; line-height: 1.08; margin-bottom: 24px; color: white; }
h1 .accent { color: var(--green); }
.hero-sub { font-size: 18px; color: #888; line-height: 1.75; margin-bottom: 38px; font-weight: 300; max-width: 580px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-platforms { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 40px; align-items: center; }
.hero-platforms span { font-size: 12px; color: #555; }
.platform-badge { font-size: 12px; padding: 5px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); color: #888; }
.hero-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 32px; position: relative; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green), transparent); }
.hero-card-title { font-size: 13px; color: #555; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; font-family: var(--font-head); }
.stat-row { display: flex; flex-direction: column; gap: 14px; }
.stat-item { display: flex; align-items: center; gap: 18px; padding: 18px 20px; background: var(--dark3); border-radius: 14px; transition: all 0.25s; }
.stat-item:hover { background: #2a2a2a; transform: translateX(4px); }
.stat-icon { width: 52px; height: 52px; background: rgba(26,158,110,0.15); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.stat-num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: white; }
.stat-label { font-size: 14px; color: #666; margin-top: 3px; }
.stat-change { margin-left: auto; font-size: 13px; color: var(--green); background: rgba(26,158,110,0.1); padding: 5px 12px; border-radius: 4px; font-weight: 600; }

/* ===== RESULTS ===== */
#results { background: var(--dark2); }
.results-hd { text-align: center; margin-bottom: 42px; }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: 18px; overflow: hidden; }
.metric-card { background: var(--dark3); padding: 44px 28px; text-align: center; transition: all 0.25s; }
.metric-card:hover { background: var(--dark2); transform: scale(1.02); }
.metric-num { font-family: var(--font-head); font-size: 48px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 10px; }
.metric-label { font-size: 15px; color: #666; line-height: 1.4; }
.results-note { text-align: center; margin-top: 22px; font-size: 13px; color: #444; font-style: italic; }

/* ===== SERVICES ===== */
#services { background: var(--dark2); }
.services-hd { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-bottom: 56px; align-items: end; }
.services-desc { font-size: 16px; color: #666; line-height: 1.7; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc-card { background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 36px 30px; transition: all 0.25s; position: relative; overflow: hidden; cursor: pointer; }
.svc-card:hover { border-color: rgba(26,158,110,0.5); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(26,158,110,0.08); }
.svc-card.feat { border-color: rgba(26,158,110,0.3); background: linear-gradient(135deg, rgba(26,158,110,0.08), var(--dark3)); }
.svc-icon { width: 58px; height: 58px; background: rgba(26,158,110,0.12); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 27px; margin-bottom: 20px; }
.svc-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: white; margin-bottom: 12px; }
.svc-desc { font-size: 15px; color: #666; line-height: 1.65; margin-bottom: 20px; }
.svc-badge { position: absolute; top: 16px; right: 16px; font-size: 11px; padding: 4px 10px; background: rgba(26,158,110,0.15); color: var(--green); border-radius: 4px; font-weight: 600; }
.learn-more-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--green); font-family: var(--font-head); background: none; border: none; cursor: pointer; padding: 0; transition: gap 0.2s; }
.learn-more-btn:hover { gap: 11px; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail { padding-top: 130px; padding-bottom: 90px; }
.sdback { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #888; cursor: pointer; font-family: var(--font-head); font-weight: 500; margin-bottom: 44px; transition: color 0.2s; background: none; border: none; }
.sdback:hover { color: white; }
.sd-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: 68px; }
.sd-img { border-radius: 22px; overflow: hidden; background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; }
.sd-img .big-emoji { font-size: 100px; position: relative; z-index: 1; }
.sd-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,158,110,0.1), transparent); }
.sd-content h1 { font-size: clamp(28px,3.5vw,46px); margin-bottom: 18px; }
.sd-content p { font-size: 16px; color: #888; line-height: 1.8; margin-bottom: 22px; }
.benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; }
.b-check { width: 26px; height: 26px; background: rgba(26,158,110,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 1px; color: var(--green); font-weight: 700; }
.b-text { font-size: 15px; color: #bbb; line-height: 1.5; }
.sd-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.feat-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 26px 24px; transition: all 0.25s; }
.feat-card:hover { border-color: rgba(26,158,110,0.3); transform: translateY(-3px); }
.feat-icon { font-size: 30px; margin-bottom: 12px; }
.feat-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: white; margin-bottom: 7px; }
.feat-desc { font-size: 13px; color: #666; line-height: 1.5; }
.sd-cta { background: var(--dark2); border-radius: 22px; padding: 48px; text-align: center; margin-top: 56px; border: 1px solid rgba(255,255,255,0.06); }
.sd-cta h3 { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: white; margin-bottom: 12px; }
.sd-cta p { font-size: 16px; color: #666; margin-bottom: 28px; }
.sd-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== STRATEGY ===== */
#strategy { }
.strategy-hd { text-align: center; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 16px; }
.steps-bot { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.step-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 26px; position: relative; transition: all 0.25s; }
.step-card:hover { border-color: rgba(26,158,110,0.3); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
.step-card.uniq { background: linear-gradient(135deg, rgba(26,158,110,0.14), var(--dark2)); border-color: rgba(26,158,110,0.4); }
.step-num { font-size: 12px; color: var(--green); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 12px; font-family: var(--font-head); }
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: white; margin-bottom: 9px; line-height: 1.3; }
.step-desc { font-size: 14px; color: #666; line-height: 1.6; }
.step-star { position: absolute; top: 12px; right: 12px; font-size: 11px; background: var(--green); color: white; padding: 3px 7px; border-radius: 4px; font-weight: 700; }

/* ===== WHY ===== */
#why { background: var(--dark2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 46px; height: 46px; background: rgba(26,158,110,0.1); border: 1px solid rgba(26,158,110,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; margin-top: 2px; }
.why-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: white; margin-bottom: 5px; }
.why-desc { font-size: 14px; color: #666; line-height: 1.5; }
.why-box { background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 36px; transition: all 0.25s; }
.why-box:hover { border-color: rgba(26,158,110,0.25); transform: translateY(-3px); }
.why-quote { font-family: var(--font-head); font-size: 23px; font-weight: 700; color: white; line-height: 1.3; margin-bottom: 20px; }
.why-quote span { color: var(--green); }
.why-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.why-tag { font-size: 12px; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; color: #888; font-family: var(--font-head); font-weight: 500; }

/* ===== PRICING ===== */
#pricing { }
.pricing-hd { text-align: center; margin-bottom: 42px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.price-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 36px 30px; position: relative; transition: all 0.25s; cursor: pointer; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); border-color: rgba(26,158,110,0.35); }
.price-card.pop { border-color: var(--green); background: linear-gradient(160deg, rgba(26,158,110,0.08), var(--dark2)); }
.pop-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 50px; white-space: nowrap; font-family: var(--font-head); }
.plan-name { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 9px; font-family: var(--font-head); font-weight: 600; }
.plan-price { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: white; margin-bottom: 5px; }
.plan-price span { font-size: 15px; font-weight: 400; color: #555; }
.plan-platform { font-size: 13px; color: var(--green); margin-bottom: 20px; font-weight: 500; }
.plan-div { height: 1px; background: rgba(255,255,255,0.06); margin: 20px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan-features li { font-size: 14px; color: #888; display: flex; align-items: center; gap: 9px; }
.plan-features li::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.plan-cta { display: block; text-align: center; margin-top: 24px; padding: 14px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.12); color: white; background: none; font-family: var(--font-head); width: 100%; transition: all 0.2s; }
.price-card.pop .plan-cta { background: var(--green); border-color: var(--green); }
.plan-cta:hover { background: var(--green); border-color: var(--green); transform: translateY(-1px); }

/* ===== CONTACT ===== */
#contact { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-left h2 { margin-bottom: 16px; }
.contact-left p { font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 30px; font-weight: 300; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.cinfo-row { display: flex; align-items: center; gap: 14px; font-size: 15px; color: #888; }
.cinfo-icon { width: 40px; height: 40px; background: var(--dark3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.wa-btn { display: flex; align-items: center; gap: 11px; background: #25D366; color: white; padding: 14px 26px; border-radius: 50px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; width: fit-content; font-family: var(--font-head); position: relative; overflow: hidden; }
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.contact-form { background: var(--dark3); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 40px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; color: #666; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; font-family: var(--font-head); }
.form-row input, .form-row select, .form-row textarea { width: 100%; background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: 11px; padding: 13px 16px; color: white; font-family: var(--font-body); font-size: 15px; outline: none; transition: all 0.2s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,158,110,0.1); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row select { cursor: pointer; }
.form-row select option { background: var(--dark3); }
.form-submit { width: 100%; background: var(--green); color: white; border: none; padding: 15px; border-radius: 50px; font-size: 15px; font-weight: 700; font-family: var(--font-head); cursor: pointer; transition: all 0.2s; margin-top: 6px; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(26,158,110,0.25); }

/* ===== ABOUT ===== */
.about-hero { padding-top: 120px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; padding: 40px; position: relative; overflow: hidden; transition: all 0.25s; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green), transparent); }
.about-card:hover { border-color: rgba(26,158,110,0.2); }
.about-quote { font-family: var(--font-head); font-size: 21px; font-weight: 700; line-height: 1.4; color: white; margin-bottom: 22px; }
.about-quote span { color: var(--green); }
.about-founder { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.06); }
.founder-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: white; flex-shrink: 0; }
.founder-name { font-weight: 600; font-size: 15px; color: white; font-family: var(--font-head); }
.founder-role { font-size: 13px; color: #666; margin-top: 2px; }
.about-float { background: var(--dark); border: 1px solid rgba(26,158,110,0.3); border-radius: 16px; padding: 18px 24px; margin-top: 18px; display: inline-block; }
.float-num { font-family: var(--font-head); font-size: 34px; font-weight: 800; color: var(--green); }
.float-label { font-size: 13px; color: #666; margin-top: 3px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { font-size: 16px; color: #888; line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.value-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 20px; transition: all 0.25s; }
.value-card:hover { border-color: rgba(26,158,110,0.2); background: rgba(26,158,110,0.04); }
.value-icon { font-size: 24px; margin-bottom: 10px; }
.value-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: white; margin-bottom: 5px; }
.value-desc { font-size: 13px; color: #666; line-height: 1.4; }
.about-cta-sec { background: var(--dark2); padding: 64px 80px; text-align: center; }
.about-cta-sec h2 { margin-bottom: 16px; }
.about-cta-sec p { color: #666; font-size: 16px; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: #080808; border-top: 1px solid rgba(255,255,255,0.04); padding: 80px 80px 50px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: white; margin-bottom: 10px; }
.footer-logo span { color: var(--green); }
.footer-tagline { font-size: 16px; color: #444; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 14px; color: #555; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 600; font-family: var(--font-head); }
.footer-col a { display: block; font-size: 16px; color: #444; text-decoration: none; margin-bottom: 10px; transition: all 0.2s; cursor: pointer; }
.footer-col a:hover { color: #ccc; padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 15px; color: #333; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 15px; color: #333; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-legal a:hover { color: #888; }
.footer-social { display: flex; gap: 14px; align-items: center; }
.social-icon { color: #444; transition: color 0.2s, transform 0.2s; display: flex; align-items: center; }
.social-icon:hover { color: #fff; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) and (min-width: 769px) {
  nav { padding: 18px 40px; }
  section { padding: 64px 40px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  h1 { font-size: 38px; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .sd-features { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-bot { max-width: 100%; }
  .why-grid, .about-grid, .contact-grid, .sd-hero { grid-template-columns: 1fr; }
  .services-hd { grid-template-columns: 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 44px 40px 26px; }
}
@media (max-width: 768px) {
  #hamburger { display: flex !important; }
  nav { padding: 14px 20px; }
  .nav-links { display: none; position: fixed; top: 57px; left: 0; right: 0; background: rgba(14,14,14,0.98); flex-direction: column; padding: 20px; gap: 2px; border-bottom: 1px solid rgba(255,255,255,0.07); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 15px; padding: 11px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; }
  .nav-cta { display: none; }
  section { padding: 48px 22px; }
  .hero-grid, .about-grid, .why-grid, .contact-grid, .sd-hero { grid-template-columns: 1fr; }
  h1 { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .metric-num { font-size: 32px; }
  .services-hd { grid-template-columns: 1fr; }
  .services-grid, .sd-features { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-bot { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .contact-form { padding: 24px 18px; }
  .wa-btn { width: 100%; justify-content: center; }
  footer { padding: 40px 22px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pm-box { padding: 30px 20px; }
  h2 { font-size: 24px; }
  .about-values { grid-template-columns: 1fr; }
  .about-cta-sec { padding: 48px 22px; }
  .lp-box { padding: 30px 22px; }
  .lp-grid { grid-template-columns: 1fr; }
  .sd-cta-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 26px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-num { font-size: 26px; }
  .metric-card { padding: 24px 14px; }
  .steps-grid { grid-template-columns: 1fr; }
  section { padding: 38px 16px; }
  .footer-top { grid-template-columns: 1fr; }
}
