/* ══════════════════════════════════════════════════
   RYMDIX TECHNOLOGY — COMPLETE STYLES v2
   ══════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --lime:        #a3e635;
  --lime-dark:   #84cc16;
  --lime-dim:    rgba(163,230,53,.12);
  --black:       #0a0a0a;
  --dark:        #111111;
  --card-dark:   #161b22;
  --white:       #ffffff;
  --gray-100:    #f5f5f5;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --text:        #111827;
  --text-light:  #6b7280;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow:      0 4px 32px rgba(0,0,0,.08);
  --shadow-lg:   0 16px 64px rgba(0,0,0,.14);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── CONTAINER ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--lime); color: #000; }
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(163,230,53,.35); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-light); }
.btn-ghost:hover { color: var(--text); }
.btn-large { padding: 13px 28px; font-size: .95rem; }
.btn-ripple::after { content:''; position:absolute; width:0; height:0; background:rgba(0,0,0,.15); border-radius:50%; transform:translate(-50%,-50%); transition: width .5s, height .5s, opacity .5s; opacity:0; }
.btn-ripple.rippling::after { width: 200px; height: 200px; opacity: 1; }

/* ── SECTION TAGS ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime-dark);
  border: 1px solid rgba(163,230,53,.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 14px; }
.section-desc { color: var(--text-light); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.65; }
.text-accent { color: var(--lime-dark); }

/* ── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}
.nav-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 18px 32px;
  gap: 8px;
}
.nav-logo { display: flex; align-items: center; gap: 9px; }
.logo-mark {
  width: 30px; height: 30px;
  background: var(--lime);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900; color: #000;
}
.logo-text { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 32px; flex: 1; }
.nav-link { padding: 6px 12px; border-radius: 8px; font-size: .875rem; font-weight: 500; color: var(--text-light); transition: all var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--gray-100); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-200);
  padding: 16px 32px 24px;
  gap: 4px;
}
.mobile-menu a { padding: 10px 0; font-size: .95rem; font-weight: 500; color: var(--text-light); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .mobile-cta { margin-top: 12px; background: var(--lime); color: #000; padding: 12px 24px; border-radius: 100px; text-align: center; font-weight: 700; border: none; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(170deg, #f8fffe 0%, #ffffff 40%, #f5f9f0 100%);
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(163,230,53,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(163,230,53,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(163,230,53,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: var(--lime-dark); background: var(--lime-dim); border: 1px solid rgba(163,230,53,.3); padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.badge-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; animation: pulse-badge 2s ease infinite; }
@keyframes pulse-badge { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.7} }
.hero-headline { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: left; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.04em; color: var(--text); }
.stat-label { font-size: .72rem; color: var(--text-light); font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: var(--gray-200); }
.hero-visual { position: relative; }
.dashboard-wrapper { position: relative; }
.dashboard-glow { position: absolute; inset: -40px; background: radial-gradient(circle at center, rgba(163,230,53,.15) 0%, transparent 65%); pointer-events: none; }
.dashboard-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.dashboard-badge { position: absolute; background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); animation: float-badge 4s ease-in-out infinite; }
.db-badge-1 { top: -16px; right: -16px; animation-delay: 0s; }
.db-badge-2 { bottom: 32px; left: -24px; animation-delay: 2s; }
@keyframes float-badge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.db-icon { font-size: 1.2rem; }
.db-val { font-size: .95rem; font-weight: 800; }
.db-lbl { font-size: .65rem; color: var(--text-light); }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-light); font-size: .72rem; font-weight: 500; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gray-400)); }

/* ══════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════ */
.trust-bar { padding: 28px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); background: var(--gray-100); }
.trust-label { text-align: center; font-size: .78rem; font-weight: 500; color: var(--text-light); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
.trust-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 32px; }
.trust-logo-item { font-size: .875rem; font-weight: 700; color: var(--gray-400); letter-spacing: .02em; }

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services { padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at top right, var(--lime-dim), transparent 60%); opacity:0; transition: opacity var(--transition); border-radius: inherit; }
.service-card:hover { border-color: rgba(163,230,53,.5); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap { width: 48px; height: 48px; background: var(--lime-dim); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon { width: 24px; height: 24px; color: var(--lime-dark); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.service-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span { font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--gray-100); color: var(--text-light); }
.card-arrow { position: absolute; bottom: 28px; right: 28px; width: 28px; height: 28px; opacity: 0; transform: translateX(-4px); transition: all var(--transition); }
.card-arrow svg { width: 20px; height: 20px; color: var(--lime-dark); }
.service-card:hover .card-arrow { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   CASE STUDIES
   ══════════════════════════════════════════════════ */
.case-studies { padding: 120px 0; background: var(--gray-100); }
.cs-grid { display: flex; flex-direction: column; gap: 24px; }
.cs-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cs-card:hover { border-color: rgba(163,230,53,.4); box-shadow: var(--shadow); }
.cs-num { font-size: 3rem; font-weight: 900; color: var(--lime-dim); color: rgba(163,230,53,.25); letter-spacing: -.06em; line-height: 1; margin-bottom: 4px; }
.cs-tag { font-size: .7rem; font-weight: 700; color: var(--lime-dark); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.cs-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 28px; line-height: 1.4; max-width: 640px; }
.cs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.cs-block {}
.cs-block-label { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: 10px; }
.cs-block p { font-size: .875rem; color: var(--text-light); line-height: 1.7; }
.cs-results { display: flex; gap: 0; border-top: 1px solid var(--gray-200); padding-top: 28px; }
.cs-metric { flex: 1; text-align: center; border-right: 1px solid var(--gray-200); padding: 0 16px; }
.cs-metric:last-child { border: none; }
.cs-metric-num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--lime-dark); letter-spacing: -.05em; line-height: 1; margin-bottom: 6px; }
.cs-metric-lbl { font-size: .72rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }

/* ══════════════════════════════════════════════════
   POSITIONING
   ══════════════════════════════════════════════════ */
.positioning { padding: 120px 0; background: var(--black); }
.positioning .section-tag { background: rgba(163,230,53,.15); color: var(--lime); border-color: rgba(163,230,53,.3); }
.positioning-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.positioning-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: -.04em; line-height: 1.15; margin-bottom: 20px; }
.positioning-text p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 32px; }
.pos-grid { position: relative; width: 300px; height: 300px; margin: 0 auto; }
.pos-card { position: absolute; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 16px 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); backdrop-filter: blur(8px); transition: all var(--transition); }
.pos-card:hover { background: rgba(163,230,53,.12); border-color: rgba(163,230,53,.3); color: var(--lime); }
.pos-icon { font-size: 1.5rem; }
.pos-c1 { top: 0; left: 0; }
.pos-c2 { top: 0; right: 0; }
.pos-c3 { bottom: 0; left: 0; }
.pos-c4 { bottom: 0; right: 0; }
.pos-center-node { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; background: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 900; color: #000; box-shadow: 0 0 40px rgba(163,230,53,.4); animation: pulse-badge 3s ease infinite; }

/* ══════════════════════════════════════════════════
   WHY RYMDIX
   ══════════════════════════════════════════════════ */
.why { padding: 120px 0; }
.why-grid { display: flex; flex-direction: column; gap: 0; }
.why-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--gray-200); transition: all var(--transition); }
.why-item:last-child { border-bottom: none; }
.why-item:hover { transform: translateX(8px); }
.why-num { font-size: 1rem; font-weight: 800; color: var(--lime-dark); font-feature-settings: "tnum"; padding-top: 4px; }
.why-body h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.why-body p { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials { padding: 120px 0; background: var(--gray-100); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.testi-card:hover { border-color: rgba(163,230,53,.4); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { color: var(--lime-dark); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: #000; }
.testi-name { font-size: .875rem; font-weight: 700; }
.testi-role { font-size: .75rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════
   MARKET
   ══════════════════════════════════════════════════ */
.market { padding: 120px 0; }
.market-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.market-text .section-tag { margin-bottom: 16px; }
.market-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.15; margin-bottom: 20px; }
.market-text p { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; }
.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mstat-num { display: block; font-size: 1.5rem; font-weight: 900; color: var(--lime-dark); letter-spacing: -.04em; margin-bottom: 4px; }
.mstat-lbl { font-size: .72rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: .05em; }
.market-globe { display: flex; align-items: center; justify-content: center; }
.globe-svg-wrap { position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; }
.globe-svg { width: 320px; height: 320px; animation: globe-rotate 20s linear infinite; }
@keyframes globe-rotate { from{transform:rotateY(0)} to{transform:rotateY(360deg)} }
.globe-ping { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--lime); opacity: .7; animation: ping 2.5s ease-out infinite; }
.globe-ping-1 { top: 30%; left: 40%; animation-delay: 0s; }
.globe-ping-2 { top: 55%; left: 60%; animation-delay: 1.2s; }
@keyframes ping { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.5);opacity:0} }

/* ══════════════════════════════════════════════════
   PRODUCT SHOWCASE
   ══════════════════════════════════════════════════ */
.showcase { padding: 120px 0; background: var(--gray-100); }
.showcase-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.showcase-col { display: flex; flex-direction: column; gap: 20px; }
.showcase-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--transition); }
.showcase-card:hover { border-color: rgba(163,230,53,.4); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.showcase-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); padding: 20px 24px 0; }
.showcase-img-wrap { padding: 16px 24px; }
.showcase-img { width: 100%; border-radius: var(--radius); }
.showcase-img-mobile { display: flex; justify-content: center; }
.showcase-img-mobile img { max-width: 160px; }
.showcase-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 16px 24px; border-top: 1px solid var(--gray-100); }
.sc-tag { font-size: .68rem; font-weight: 600; background: var(--gray-100); color: var(--text-light); padding: 3px 9px; border-radius: 100px; }
.sc-credit { margin-left: auto; font-size: .68rem; font-weight: 700; color: var(--lime-dark); }
/* Analytics mock */
.showcase-analytics .showcase-img-wrap { padding: 0; }
.analytics-mock { background: #0f1117; padding: 20px; margin: 16px 24px; border-radius: var(--radius); }
.am-header { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.am-dot { width: 9px; height: 9px; border-radius: 50%; }
.am-dot.red { background: #ef4444; } .am-dot.yellow { background: #f59e0b; } .am-dot.green { background: var(--lime); }
.am-title { font-size: .68rem; color: rgba(255,255,255,.4); margin-left: 4px; }
.am-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.am-val { font-size: .95rem; font-weight: 800; color: #fff; }
.am-lbl { font-size: .6rem; color: rgba(255,255,255,.4); margin: 2px 0; }
.am-change { font-size: .6rem; font-weight: 700; }
.am-change.positive { color: var(--lime); }
.am-chart { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.am-bar { flex: 1; background: rgba(163,230,53,.25); border-radius: 3px 3px 0 0; transition: all .3s; }
.am-bar.active { background: var(--lime); }
.am-bar:hover { background: rgba(163,230,53,.5); }

/* ══════════════════════════════════════════════════
   CONTACT FORM SECTION
   ══════════════════════════════════════════════════ */
.contact-section { padding: 120px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-text .section-tag { margin-bottom: 16px; }
.contact-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.2; margin-bottom: 16px; }
.contact-text p { font-size: .95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.cinfo-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 600; color: var(--text-light); transition: color var(--transition); }
.cinfo-item svg { width: 18px; height: 18px; color: var(--lime-dark); flex-shrink: 0; }
.cinfo-item:hover { color: var(--lime-dark); }
/* Form */
.contact-form-wrap { background: var(--gray-100); border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-light); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: .875rem; font-family: var(--font); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(163,230,53,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-submit { width: 100%; border-radius: var(--radius); margin-top: 4px; }
.form-alert { padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; font-weight: 500; }
.form-alert.success { background: rgba(163,230,53,.12); border: 1px solid rgba(163,230,53,.3); color: var(--lime-dark); }
.form-alert.error   { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #dc2626; }

/* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */
.cta-section { padding: 120px 0; background: var(--black); }
.cta-section .section-tag { background: rgba(163,230,53,.12); color: var(--lime); border-color: rgba(163,230,53,.3); }
.cta-inner { text-align: center; position: relative; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(163,230,53,.12) 0%, transparent 70%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--white); letter-spacing: -.04em; margin-bottom: 20px; }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 480px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.cta-section .btn-outline:hover { border-color: var(--lime); color: var(--lime); }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,.06); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 64px; margin-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { margin-bottom: 12px; }
.footer-logo .logo-text { color: #fff; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--lime-dim); border-color: rgba(163,230,53,.3); color: var(--lime); transform: translateY(-2px); }
.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  z-index: 900;
  transition: all var(--transition);
  animation: wa-enter .5s .5s both;
}
@keyframes wa-enter { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.6);opacity:0} }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #111; color: #fff;
  font-size: .75rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity var(--transition);
}
.wa-tooltip::after { content:''; position:absolute; right:-6px; top:50%; transform:translateY(-50%); border:6px solid transparent; border-left-color:#111; border-right:none; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .positioning-inner, .market-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cs-row { grid-template-columns: 1fr; gap: 20px; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .market-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
  .cs-results { flex-wrap: wrap; }
  .cs-metric { border: none; padding: 8px 0; }
  .footer-links-group { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
