/*
Theme Name:  Aplaton
Theme URI:   https://aplaton.com
Author:      Aplaton
Author URI:  https://aplaton.com
Description: Premium lead generation one-page theme for Aplaton.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aplaton
Tags:        one-page, landing-page, dark, minimal
*/

/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #080b10;
  --bg2:       #0d1219;
  --bg3:       #111820;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #e8edf5;
  --muted:     #7a8799;
  --accent:    #00d4ff;
  --accent2:   #0099cc;
  --gold:      #f0c060;
  --green:     #00e5a0;
  --card:      rgba(255,255,255,0.035);
  --card-h:    rgba(255,255,255,0.06);
  --shadow:    0 20px 60px rgba(0,0,0,0.5);
  --radius:    14px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(0,212,255,0.25); color: #fff; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; position: relative; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-family: var(--font-head);
  font-size: 15px; font-weight: 700; cursor: pointer; border: none;
  transition: all 0.25s ease; white-space: nowrap; letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #000; box-shadow: 0 0 40px rgba(0,212,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 0 60px rgba(0,212,255,0.5);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover {
  background: var(--card-h); border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== NAV ===== */
nav#aplaton-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all 0.35s ease;
}
nav#aplaton-nav.scrolled {
  background: rgba(8,11,16,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(8,11,16,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 28px; padding: 4px; line-height: 1; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  overflow: hidden; padding: 120px 0 80px;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,212,255,0.12) 0%, transparent 65%);
}
.hero-glow2 {
  position: absolute; bottom: 0; right: -100px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,150,100,0.07) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 2; text-align: center; }

/* Hero eyebrow — clean text indicator, no pill */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); font-weight: 600;
  margin-bottom: 32px; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite;
}
.hero-eyebrow-line {
  display: block; width: 28px; height: 1px; background: var(--border2);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(44px, 7vw, 80px); line-height: 1.06;
  letter-spacing: -0.03em; margin-bottom: 28px;
  color: #fff;
}
.h1-line2 {
  background: linear-gradient(90deg, var(--accent) 0%, var(--green) 60%, var(--accent) 120%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% } 100% { background-position: 200% } }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px); color: var(--muted); font-weight: 400;
  max-width: 580px; margin: 0 auto 48px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; margin-top: 72px; justify-content: center;
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--card); backdrop-filter: blur(10px);
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-stat {
  flex: 1; padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== TRUST ===== */
#trust { padding: 80px 0; border-bottom: 1px solid var(--border); }
.trust-label { text-align: center; font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 40px; }
.trust-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; }
.trust-logo-pill {
  background: var(--card); border: 1px solid var(--border);
  padding: 12px 28px; border-radius: 8px; font-family: var(--font-head);
  font-size: 14px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em;
  transition: all 0.3s; cursor: default;
}
.trust-logo-pill:hover { color: var(--text); border-color: var(--border2); background: var(--card-h); }
.trust-note { text-align: center; margin-top: 44px; color: var(--muted); font-size: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.trust-note strong { color: var(--text); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.1;
  letter-spacing: -0.025em; color: #fff; margin-bottom: 20px;
}
.section-desc { color: var(--muted); font-size: 18px; max-width: 560px; line-height: 1.7; margin-bottom: 60px; }

/* ===== WHAT WE DO ===== */
#what { padding: 120px 0; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.what-visual {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px;
  padding: 48px; position: relative; overflow: hidden;
}
.what-visual::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.flow-steps { display: flex; flex-direction: column; }
.flow-step {
  display: flex; align-items: flex-start; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.flow-icon svg { width: 22px; height: 22px; }
.flow-icon-1 { background: rgba(0,212,255,0.12); color: var(--accent); }
.flow-icon-2 { background: rgba(0,229,160,0.12); color: var(--green); }
.flow-icon-3 { background: rgba(240,192,96,0.12); color: var(--gold); }
.flow-step-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 4px; }
.flow-step-desc { font-size: 14px; color: var(--muted); }
.what-points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.what-point { display: flex; gap: 16px; align-items: flex-start; }
.check {
  width: 22px; height: 22px; background: rgba(0,229,160,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check svg { width: 12px; height: 12px; color: var(--green); }
.what-point-text strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 4px; }
.what-point-text span { font-size: 14px; color: var(--muted); }

/* ===== VERTICALS ===== */
#verticals { padding: 120px 0; background: var(--bg2); }
.verticals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vertical-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; cursor: default; transition: all 0.3s ease; position: relative;
  overflow: hidden;
}
.vertical-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0; border-radius: var(--radius);
  transition: opacity 0.3s;
  background: radial-gradient(ellipse at top left, rgba(0,212,255,0.08), transparent 60%);
}
.vertical-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.vertical-card:hover::after { opacity: 1; }
.vertical-icon { color: var(--accent); margin-bottom: 16px; line-height: 0; }
.vertical-icon svg { width: 28px; height: 28px; }
.vertical-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 8px; }
.vertical-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.vertical-tag {
  display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px;
  border-radius: 4px; background: rgba(0,212,255,0.1); color: var(--accent);
}

/* ===== HOW IT WORKS ===== */
#how { padding: 120px 0; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 24px; font-family: var(--font-head);
  font-weight: 800; font-size: 22px; color: #fff;
  background: var(--bg2); border: 1px solid var(--border2); position: relative; z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num {
  background: linear-gradient(135deg, var(--accent), var(--green));
  color: #000; border-color: transparent; box-shadow: 0 0 40px rgba(0,212,255,0.4);
}
.step-title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-arrow { position: absolute; right: -10px; top: 26px; z-index: 2; color: var(--accent); opacity: 0.4; line-height: 0; }
.step-arrow svg { width: 18px; height: 18px; }
.step:last-child .step-arrow { display: none; }

/* ===== WHY APLATON ===== */
#why { padding: 120px 0; background: var(--bg2); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.why-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 32px; transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.why-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { color: var(--accent); margin-bottom: 20px; line-height: 0; }
.why-icon svg { width: 32px; height: 32px; }
.why-title { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 12px; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== EXPLAINER ===== */
#explainer { padding: 120px 0; }
.explainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.explainer-left h2 { margin-bottom: 24px; }
.explainer-left p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.explainer-right { display: flex; flex-direction: column; gap: 20px; }
.expl-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; transition: all 0.3s;
}
.expl-card:hover { border-color: var(--border2); background: var(--card-h); }
.expl-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.expl-num {
  width: 32px; height: 32px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--accent);
  flex-shrink: 0;
}
.expl-card-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; }
.expl-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; padding-left: 46px; }

/* ===== CTA SECTION ===== */
#cta { padding: 140px 0; position: relative; overflow: hidden; }
.cta-blob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,212,255,0.1) 0%, transparent 65%);
}
.cta-inner {
  position: relative; z-index: 2; text-align: center;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 24px; padding: 80px 60px;
  max-width: 820px; margin: 0 auto;
}
.cta-inner::before {
  content: ''; position: absolute; inset: -1px; border-radius: 24px; z-index: -1;
  background: linear-gradient(135deg, rgba(0,212,255,0.3), rgba(0,229,160,0.1), rgba(0,212,255,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,192,96,0.12); border: 1px solid rgba(240,192,96,0.25);
  padding: 6px 14px; border-radius: 100px; font-size: 12px;
  color: var(--gold); font-weight: 700; margin-bottom: 28px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cta-badge svg { width: 12px; height: 12px; }
.cta-inner h2 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 20px; }
.cta-inner p { color: var(--muted); font-size: 18px; max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.urgency { margin-top: 28px; font-size: 13px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; }
.urgency-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }

/* ===== CONTACT ===== */
#contact { padding: 120px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 40px; }
.contact-meta { display: flex; flex-direction: column; gap: 16px; }
.contact-meta-item { display: flex; align-items: center; gap: 14px; }
.contact-meta-icon {
  width: 42px; height: 42px; background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-meta-icon svg { width: 18px; height: 18px; }
.contact-meta-text strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.contact-meta-text span { font-size: 13px; color: var(--muted); }
.aplaton-form {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 20px;
  padding: 44px; display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.aplaton-form label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.03em; }
.aplaton-form input,
.aplaton-form textarea,
.aplaton-form select {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 16px; color: var(--text); font-family: var(--font-body);
  font-size: 15px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%; -webkit-appearance: none; appearance: none;
}
.aplaton-form input::placeholder,
.aplaton-form textarea::placeholder { color: rgba(122,135,153,0.6); }
.aplaton-form input:focus,
.aplaton-form textarea:focus,
.aplaton-form select:focus {
  border-color: rgba(0,212,255,0.5); box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.aplaton-form textarea { resize: vertical; min-height: 120px; }
.aplaton-form select option { background: var(--bg3); }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 17px; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer#aplaton-footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; flex-wrap: wrap; gap: 40px; }
.footer-brand .logo { font-size: 20px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 260px; line-height: 1.7; }
.footer-links-group { display: flex; gap: 80px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--text); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .what-grid, .explainer-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-row::before { display: none; }
  .step-arrow { display: none; }
  .hero-stats { flex-direction: column; border: none; background: none; }
  .hero-stat { border: 1px solid var(--border); border-radius: 12px; background: var(--card); margin-bottom: 2px; }
  .cta-inner { padding: 48px 28px; }
  .aplaton-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links-group { gap: 40px; }
}
@media (max-width: 600px) {
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  #hero { padding: 100px 0 60px; }
}
