/* ============================================
   BrandonSaSSWebsite — Vibrant Growth Agency
   ============================================ */

:root {
  /* Vibrant palette: electric coral, hot magenta, sun gold, vivid teal */
  --coral: #FF4D4D;
  --coral-dark: #E63946;
  --magenta: #FF2E9F;
  --gold: #FFB800;
  --teal: #00D4AA;
  --teal-dark: #00B894;
  --violet: #7C3AED;
  --electric-blue: #3B82F6;

  /* Gradient combos */
  --grad-primary: linear-gradient(135deg, var(--coral), var(--magenta), var(--violet));
  --grad-warm: linear-gradient(135deg, var(--gold), var(--coral));
  --grad-cool: linear-gradient(135deg, var(--teal), var(--electric-blue));
  --grad-full: linear-gradient(135deg, var(--coral), var(--magenta), var(--violet), var(--electric-blue), var(--teal));

  /* Dark base with depth */
  --bg-primary: #0A0A0F;
  --bg-card: #111118;
  --bg-card-hover: #1A1A24;
  --bg-elevated: #16161F;

  /* Text */
  --text-primary: #F5F5F7;
  --text-secondary: #9CA3B0;
  --text-muted: #5C6370;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Satoshi', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Headers ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
}
.section-header {
  margin-bottom: 60px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { width: 100%; }
.nav__link--cta {
  background: var(--grad-primary);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { opacity: 0.9; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: var(--coral);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: var(--violet);
  bottom: -10%;
  left: -10%;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: var(--teal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -8s;
  opacity: 0.25;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.hero__noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.5;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}
.hero__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero__title-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--grad-primary);
  border-radius: 3px;
  opacity: 0.4;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 77, 77, 0.25);
}
.btn--primary:hover { box-shadow: 0 12px 40px rgba(255, 77, 77, 0.35); }
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn--full { width: 100%; justify-content: center; }
.btn__arrow { font-size: 1.15em; transition: transform 0.3s; }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }

/* Hero Stats */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 5vw, 60px);
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-suffix {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero scroll */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 25px; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
.marquee__content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.marquee__dot {
  color: var(--coral);
  font-size: 0.5rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--coral);
}
.service-card:nth-child(2) .service-card__icon { color: var(--magenta); }
.service-card:nth-child(3) .service-card__icon { color: var(--teal); }
.service-card:nth-child(4) .service-card__icon { color: var(--electric-blue); }
.service-card:nth-child(5) .service-card__icon { color: var(--gold); }
.service-card:nth-child(6) .service-card__icon { color: var(--violet); }
.service-card__title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.service-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Clash Display', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}

/* ============================================
   RESULTS
   ============================================ */
.results {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.4s, border-color 0.4s;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.result-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}
.result-card:nth-child(2) .result-card__category { color: var(--magenta); }
.result-card:nth-child(3) .result-card__category { color: var(--gold); }
.result-card__title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.result-card__metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}
.result-card__metric-val {
  display: block;
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.result-card__metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.result-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.result-card__bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.result-card__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--grad-primary);
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--section-pad) 0;
}
.process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), var(--magenta), var(--violet), var(--teal));
  border-radius: 2px;
}
.process__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  position: relative;
}
.process__step::after {
  content: '';
  position: absolute;
  left: 33px;
  top: 48px;
  width: 16px;
  height: 16px;
  background: var(--bg-primary);
  border: 3px solid var(--coral);
  border-radius: 50%;
  z-index: 1;
}
.process__step:nth-child(2)::after { border-color: var(--magenta); }
.process__step:nth-child(3)::after { border-color: var(--violet); }
.process__step:nth-child(4)::after { border-color: var(--teal); }
.process__step-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 80px;
  text-align: center;
  padding-top: 4px;
}
.process__step-content {
  flex: 1;
}
.process__step-content h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process__step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
}
.process__step-icon {
  width: 40px;
  height: 40px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}
.process__step:nth-child(2) .process__step-icon { color: var(--magenta); }
.process__step:nth-child(3) .process__step-icon { color: var(--violet); }
.process__step:nth-child(4) .process__step-icon { color: var(--teal); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.4s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: normal;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card:nth-child(2) .testimonial-card__avatar { background: var(--grad-cool); }
.testimonial-card:nth-child(3) .testimonial-card__avatar { background: var(--grad-warm); }
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.92rem;
}
.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}
.contact__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--coral);
  top: -20%;
  right: -10%;
}
.contact__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--violet);
  bottom: -20%;
  left: -10%;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.contact__detail svg { color: var(--coral); flex-shrink: 0; }

/* Form */
.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__group:not(.form__row .form__group) {
  margin-bottom: 16px;
}
.form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form__input::placeholder { color: var(--text-muted); }
.form__input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__textarea { resize: vertical; min-height: 100px; }
.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: var(--radius-sm);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 500;
}
.form__success.show { display: flex; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}
.footer__links {
  display: flex;
  gap: 60px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--text-primary); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a { color: var(--text-muted); transition: color 0.3s; }
.footer__bottom-links a:hover { color: var(--text-primary); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 32px;
  }
  .process__timeline::before { left: 20px; }
  .process__step::after { left: 13px; }
  .process__step-num { min-width: 50px; font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }
  .nav__links.open { right: 0; }
  .nav__burger { display: flex; z-index: 1001; }

  .services__grid,
  .results__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__scroll { display: none; }

  .process__step-icon { display: none; }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
