
/* ═══════════════════════════════════════════════
   NELO SOLUTIONS — style.css
   Brand: dark forest green · neon green accents
   ══════════════════════════════════════════════ */

:root {
  --bg:        #06100a;
  --bg2:       #0a1a0f;
  --bg3:       #0d2115;
  --card:      #0c1c10;
  --border:    #1a3322;
  --border2:   #265038;
  --green:     #2ecc71;
  --green2:    #1db954;
  --green-dim: #175c35;
  --glow:      rgba(46,204,113,.10);
  --glow2:     rgba(46,204,113,.05);
  --text:      #f0f8f2;
  --text2:     #7fa88a;
  --text3:     #415c4b;
  --gold:      #f5a623;
  --fh:        'Space Grotesk', sans-serif;
  --fb:        'Inter', sans-serif;
  --r:         10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-dim); border-radius: 3px; }

/* ── Stars canvas ── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .7;
}

/* ── Utility ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5vw;
}
.accent { color: var(--green); }
.center { text-align: center; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

/* ── Bilingual ── */
body.fr [data-en] { display: none !important; }
body.en [data-fr] { display: none !important; }

/* ═══════════ NAV ═══════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(6,16,10,.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
nav.scrolled {
  background: rgba(6,16,10,.96);
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-badge {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-weight: 700; font-size: 17px;
  color: var(--bg);
}
.logo-badge.sm { width: 28px; height: 28px; font-size: 14px; }
.logo-text {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.logo-text em { color: var(--green); font-style: normal; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-center a {
  color: var(--text2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-center a:hover { color: var(--text); background: var(--glow2); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-pill {
  display: flex;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
}
.lang-pill button {
  padding: 5px 13px;
  background: transparent;
  border: none;
  color: var(--text3);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .2s;
}
.lang-pill button.active {
  background: var(--green);
  color: var(--bg);
  border-radius: 30px;
}

.btn-nav {
  background: var(--green);
  color: var(--bg);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-nav:hover { background: #27ae60; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 66px; left: 0; right: 0;
  z-index: 199;
  background: rgba(6,16,10,.98);
  border-bottom: 1px solid var(--border);
  padding: 12px 5vw;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mob-menu a:last-child { border: none; }

/* ═══════════ HERO ═══════════ */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 5vw 80px;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,.08);
  border: 1px solid rgba(46,204,113,.2);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:.4; transform:scale(.8);} }

/* BIG WORDS */
.hero-h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--fh);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 32px;
}
.hero-h1 .line { display: block; }
.hero-h1 .accent { color: var(--green); }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* GSWorld-style inline email form */
.hero-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto 14px;
}
.hero-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14.5px;
  padding: 10px 18px;
  min-width: 0;
}
.hero-form input::placeholder { color: var(--text3); }
.hero-form button {
  background: var(--green);
  color: var(--bg);
  border: none;
  border-radius: 40px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .1s;
}
.hero-form button:hover { background: #27ae60; }

.hero-micro {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 60px;
  letter-spacing: .03em;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.3;height:40px;} 50%{opacity:1;height:60px;} }

/* Fade-in classes */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .6s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ TICKER ═══════════ */
.ticker-wrap {
  position: relative;
  z-index: 2;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 0 32px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-track {
  flex: 1;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-inner span {
  font-family: var(--fh);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
  opacity: .55;
  transition: opacity .3s;
}
.ticker-inner span:hover { opacity: 1; }
.ticker-inner .dot { color: var(--green); font-size: 20px; opacity: 1 !important; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════ SECTIONS ═══════════ */
section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.section-h2 {
  font-family: var(--fh);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.center.section-sub { margin-left: auto; margin-right: auto; }

/* ═══════════ ABOUT ═══════════ */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-l {
  font-size: 12px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-big {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 36px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: var(--green-dim); transform: translateX(3px); }
.pillar-icon { font-size: 18px; }

/* ═══════════ STATEMENT ═══════════ */
#statement {
  background: var(--bg);
  padding: 90px 0;
}
.big-quote {
  font-family: var(--fh);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: var(--text2);
  max-width: 900px;
  margin: 0 auto;
  font-style: normal;
  border: none;
}
.big-quote .accent { color: var(--green); }

/* ═══════════ SERVICES ═══════════ */
#services { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.p-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.p-card:hover {
  border-color: var(--green-dim);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(46,204,113,.09);
}
.p-card.featured {
  border-color: var(--green);
  background: linear-gradient(145deg, #0e2a1a 0%, #0c1c10 100%);
  box-shadow: 0 0 0 1px var(--green), 0 20px 60px rgba(46,204,113,.16);
}
.p-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
}
.p-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.p-num {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: .1em;
}
.p-tag {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.p-price {
  font-family: var(--fh);
  font-size: 38px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.p-price sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--text3);
  vertical-align: baseline;
}
.p-note {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 22px;
}
.p-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.p-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 28px;
}
.p-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.4;
}
.p-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.p-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  transition: all .2s;
}
.p-btn:hover { border-color: var(--green); color: var(--green); }
.featured-btn {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}
.featured-btn:hover { background: #27ae60; color: var(--bg); border-color: #27ae60; }

/* ═══════════ WORK ═══════════ */
#work { background: var(--bg); }
.work-featured {
  margin: 48px 0;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: center;
  transition: border-color .3s;
}
.work-featured:hover { border-color: var(--green-dim); }
.wf-meta { display: flex; flex-direction: column; gap: 10px; }
.wf-num {
  font-family: var(--fh);
  font-size: 64px;
  font-weight: 800;
  color: var(--border2);
  line-height: 1;
}
.wf-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.wf-title {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.wf-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}
.wf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(46,204,113,.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.wf-link:hover { border-color: var(--green); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.w-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .3s, transform .25s, box-shadow .25s;
}
.w-card:hover {
  border-color: var(--green-dim);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(46,204,113,.09);
}
.w-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w-icon { font-size: 24px; }
.w-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(46,204,113,.08);
  border: 1px solid rgba(46,204,113,.18);
  padding: 4px 10px;
  border-radius: 20px;
}
.w-name {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
}
.w-sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
}
.w-desc { font-size: 13px; color: var(--text2); line-height: 1.55; flex: 1; }
.w-url { font-size: 12px; color: var(--text3); transition: color .2s; }
.w-card:hover .w-url { color: var(--green); }

/* ═══════════ PROCESS ═══════════ */
#process { background: var(--bg2); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 18px; font-weight: 700;
  color: var(--text3);
  background: var(--bg);
  transition: all .3s;
}
.step-num.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
}
.step:hover .step-num {
  border-color: var(--green);
  color: var(--green);
}
.step-body h4 {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* ═══════════ TESTIMONIALS ═══════════ */
#testimonials { background: var(--bg); }

/* Featured hero testimonial — GSWorld big style */
.testi-hero {
  margin: 48px 0;
  padding: 64px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.testi-hero-quote {
  font-family: var(--fh);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  max-width: 820px;
  quotes: '"' '"' '«' '»';
}
.testi-hero-quote::before { content: open-quote; color: var(--green); }
.testi-hero-quote::after  { content: close-quote; color: var(--green); }
.testi-hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--glow);
  border: 2px solid rgba(46,204,113,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 15px; font-weight: 700;
  color: var(--green);
}
.testi-hero-author strong { display: block; font-size: 15px; font-weight: 700; }
.testi-hero-author span { font-size: 13px; color: var(--text3); }

/* Grid cards */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s, transform .25s;
}
.t-card:hover { border-color: var(--green-dim); transform: translateY(-4px); }
.t-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.t-quote {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--glow);
  border: 1px solid rgba(46,204,113,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 12px; font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 13.5px; font-weight: 700; }
.t-author span { display: block; font-size: 12px; color: var(--text3); }

/* ═══════════ CONTACT ═══════════ */
#contact { background: var(--bg2); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  font-size: 15px;
  color: var(--text2);
  margin: 20px 0 36px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cdet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.cdet:hover { color: var(--green); }
.cdet-icon { font-size: 20px; width: 28px; text-align: center; }

/* Form */
.cform {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cfield label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text3);
}
.cfield input,
.cfield select,
.cfield textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--fb);
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.cfield input::placeholder,
.cfield textarea::placeholder { color: var(--text3); }
.cfield input:focus,
.cfield select:focus,
.cfield textarea:focus { border-color: var(--green); }
.cfield select option { background: var(--bg2); }

.cform-btn {
  background: var(--green);
  color: var(--bg);
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.cform-btn:hover { background: #27ae60; transform: translateY(-1px); }
.cform-success {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  padding: 10px;
  background: var(--glow);
  border-radius: 8px;
  display: none;
}
.cform-success.show { display: block; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-top: 16px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fcol h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.fcol a {
  display: block;
  color: var(--text2);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color .2s;
}
.fcol a:hover { color: var(--green); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .work-grid    { grid-template-columns: 1fr 1fr; }
  .steps        { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testi-grid   { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-top   { grid-template-columns: 1fr; gap: 40px; }
  .work-featured { grid-template-columns: 1fr; }
  .wf-num       { font-size: 40px; }
}

@media (max-width: 768px) {
  .nav-center   { display: none; }
  .btn-nav      { display: none; }
  .hamburger    { display: flex; }
  .work-grid    { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr 1fr; }
  .footer-cols  { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testi-hero   { padding: 36px 24px; }
  .cform        { padding: 24px 20px; }
  .cform-row    { grid-template-columns: 1fr; }
  .hero-h1      { font-size: clamp(50px, 14vw, 80px); }
  section       { padding: 72px 0; }
  .work-featured { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .steps        { grid-template-columns: 1fr; }
  .footer-cols  { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .stat-row     { gap: 28px; }
  .hero-form    { flex-direction: column; border-radius: 12px; padding: 10px; }
  .hero-form input { padding: 10px 14px; }
  .hero-form button { border-radius: 8px; width: 100%; padding: 12px; }
}


