/* ============================================
   CORPORATE-V1 — Axiom Digital
   Premium Corporate Agency Demo
   ============================================ */

/* --- Custom Properties --- */
:root {
  --slate-950: #020617;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --indigo-700: #4338CA;
  --indigo-600: #4F46E5;
  --indigo-500: #6366F1;
  --indigo-400: #818CF8;
  --indigo-300: #A5B4FC;
  --green-500: #22C55E;
  --red-400: #F87171;
  --white: #FFFFFF;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,.18);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.25);
  --shadow-glow: 0 0 30px rgba(99,102,241,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--slate-300);
  background: var(--slate-900);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(.72rem,.75rem + .1vw,.82rem);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--indigo-400);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.7rem, 2vw + 1rem, 2.7rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle { font-size: clamp(.95rem,1vw + .4rem,1.08rem); color: var(--slate-400); max-width: 560px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-600));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(99,102,241,.5); }
.btn--outline {
  background: transparent;
  color: var(--slate-200);
  border: 1.5px solid var(--slate-600);
}
.btn--outline:hover { border-color: var(--indigo-400); color: var(--indigo-400); }
.btn--full { width: 100%; }

/* --- Animations --- */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.animate-in.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0,0,0,.3);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__logo-icon { color: var(--indigo-400); font-size: 1rem; margin-right: 2px; }
.nav__logo-accent { color: var(--indigo-400); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-300);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--indigo-400);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta-btn {
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-600)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav__cta-btn::after { display: none !important; }
.nav__cta-btn:hover { box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--slate-200);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--slate-950) 0%, var(--slate-900) 40%, #131b2e 100%);
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
}
.hero__mesh {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.hero__badge {
  display: inline-block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--indigo-300);
  border: 1px solid rgba(99,102,241,.25);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(99,102,241,.06);
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw + 1rem, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__rotating-wrapper {
  display: inline-block;
  position: relative;
  color: var(--indigo-400);
  min-width: 180px;
}
.hero__rotating {
  display: inline-block;
  transition: opacity .4s, transform .4s;
}
.hero__rotating.fade-out { opacity: 0; transform: translateY(12px); }
.hero__subtitle {
  font-size: clamp(.98rem, 1vw + .4rem, 1.15rem);
  color: var(--slate-400);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 2vw + .5rem, 2.2rem);
  color: var(--white);
}
.hero__stat-label { font-size: .82rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 100px 0; background: var(--slate-900); }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.service-card {
  background: rgba(30,41,59,.55);
  border: 1px solid rgba(99,102,241,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(99,102,241,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service-card__icon { font-size: 2rem; margin-bottom: 16px; }
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card__desc { font-size: .92rem; color: var(--slate-400); margin-bottom: 18px; line-height: 1.7; }
.service-card__list { display: flex; flex-direction: column; gap: 8px; }
.service-card__list li {
  font-size: .85rem;
  color: var(--slate-300);
  padding-left: 18px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--indigo-400);
  border-radius: 50%;
}

/* ============================================
   RESULTS / CASE STUDIES
   ============================================ */
.results { padding: 100px 0; background: var(--slate-950); }
.results__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.result-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.result-card:hover { border-color: var(--indigo-500); box-shadow: var(--shadow-glow); }
.result-card__category {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--indigo-400);
  margin-bottom: 8px;
}
.result-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}
.result-card__desc { font-size: .9rem; color: var(--slate-400); margin-bottom: 24px; }
.result-card__metrics { display: flex; flex-direction: column; gap: 16px; }
.result-card__metric { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 12px; }
.result-card__metric-label { font-size: .82rem; color: var(--slate-400); }
.result-card__metric-bar {
  height: 6px;
  background: var(--slate-700);
  border-radius: 100px;
  overflow: hidden;
}
.result-card__metric-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--indigo-500), var(--indigo-400));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.result-card__metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  min-width: 60px;
  text-align: right;
}
.result-card__metric-value--up { color: var(--green-500); }
.result-card__metric-value--down { color: var(--red-400); }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process { padding: 100px 0; background: var(--slate-900); }
.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-left: 40px;
}
.process__line {
  position: absolute;
  left: 14px; top: 20px; bottom: 20px;
  width: 3px;
  background: var(--slate-700);
  border-radius: 100px;
}
.process__line-fill {
  width: 100%; height: 0;
  background: linear-gradient(180deg, var(--indigo-500), var(--indigo-300));
  border-radius: 100px;
  transition: height 1.5s cubic-bezier(.4,0,.2,1);
}
.process__step { position: relative; }
.process__step-dot {
  position: absolute;
  left: -40px; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--slate-800);
  border: 2px solid var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}
.process__step-dot span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  color: var(--slate-400);
}
.process__step.active .process__step-dot {
  border-color: var(--indigo-500);
  background: var(--indigo-600);
  box-shadow: 0 0 16px rgba(99,102,241,.4);
}
.process__step.active .process__step-dot span { color: var(--white); }
.process__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}
.process__step-desc { font-size: .9rem; color: var(--slate-400); max-width: 340px; }

/* ============================================
   TEAM
   ============================================ */
.team { padding: 100px 0; background: var(--slate-950); }
.team__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.team-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--indigo-500); transform: translateY(-4px); }
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-400));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: .82rem;
  color: var(--indigo-400);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.team-card__bio { font-size: .88rem; color: var(--slate-400); line-height: 1.7; }

/* ============================================
   BLOG
   ============================================ */
.blog { padding: 100px 0; background: var(--slate-900); }
.blog__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.blog-card {
  background: var(--slate-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-700);
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--indigo-500); transform: translateY(-4px); }
.blog-card__img {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.blog-card__cat {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  background: rgba(0,0,0,.35);
  padding: 4px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.blog-card__body { padding: 24px; }
.blog-card__meta { font-size: .78rem; color: var(--slate-500); margin-bottom: 10px; display: block; }
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card__excerpt { font-size: .88rem; color: var(--slate-400); margin-bottom: 16px; line-height: 1.7; }
.blog-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .88rem;
  color: var(--indigo-400);
}
.blog-card__link:hover { color: var(--indigo-300); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { padding: 80px 0; background: var(--slate-950); }
.newsletter__inner {
  background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(99,102,241,.04));
  border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--radius-xl);
  padding: 48px 28px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.newsletter__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 2vw + .5rem, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.newsletter__desc { font-size: .95rem; color: var(--slate-400); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter__form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin: 0 auto 16px; }
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--slate-600);
  border-radius: var(--radius-sm);
  background: var(--slate-800);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__input:focus { border-color: var(--indigo-400); }
.newsletter__input::placeholder { color: var(--slate-500); }
.newsletter__note { font-size: .78rem; color: var(--slate-500); }

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: 100px 0; background: var(--slate-900); }
.pricing__tiers { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
.pricing-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { border-color: var(--indigo-500); transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--indigo-500);
  background: linear-gradient(165deg, rgba(99,102,241,.1), var(--slate-800) 50%);
  box-shadow: var(--shadow-glow);
}
.pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo-500), var(--indigo-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .75rem;
  padding: 4px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card__header { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--slate-700); }
.pricing-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-card__currency { font-size: .5em; vertical-align: super; color: var(--indigo-400); }
.pricing-card__plus { font-size: .5em; color: var(--indigo-400); }
.pricing-card__tagline { font-size: .85rem; color: var(--slate-400); }
.pricing-card__features { margin-bottom: 28px; }
.pricing-card__features li {
  padding: 10px 0;
  font-size: .9rem;
  color: var(--slate-300);
  border-bottom: 1px solid rgba(51,65,85,.4);
  position: relative;
  padding-left: 24px;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--indigo-400);
  font-weight: 600;
}
.pricing-card__btn { width: 100%; text-align: center; }

/* Add-ons */
.pricing__addons { text-align: center; margin-bottom: 48px; }
.pricing__addons-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}
.pricing__addons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.addon-chip {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: .88rem;
  color: var(--slate-300);
  transition: all var(--transition);
}
.addon-chip:hover { border-color: var(--indigo-400); }
.addon-chip span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--indigo-400);
  margin-left: 8px;
}

/* Hosting */
.pricing__hosting-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}
.pricing__hosting-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 700px; margin: 0 auto; }
.hosting-card {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.hosting-card:hover { border-color: var(--indigo-400); }
.hosting-card--managed { border-color: var(--indigo-500); background: linear-gradient(165deg, rgba(99,102,241,.08), var(--slate-800) 60%); }
.hosting-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 4px;
}
.hosting-card__price span { font-size: .5em; color: var(--slate-400); font-weight: 500; }
.hosting-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--indigo-400);
  margin-bottom: 8px;
}
.hosting-card__desc { font-size: .85rem; color: var(--slate-400); }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 100px 0; background: var(--slate-950); }
.contact__inner { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact__info p { font-size: .95rem; color: var(--slate-400); margin-top: 16px; margin-bottom: 28px; line-height: 1.8; }
.contact__perks { display: grid; grid-template-columns: 1fr; gap: 12px; }
.contact__perk {
  font-size: .9rem;
  color: var(--slate-300);
  font-weight: 500;
}
.contact__form {
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-600);
  border-radius: var(--radius-sm);
  background: var(--slate-900);
  color: var(--white);
  font-size: .92rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--indigo-400); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-500); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6 6.5-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group select option { background: var(--slate-800); color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 60px 0 28px; background: var(--slate-950); border-top: 1px solid var(--slate-800); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
.footer__brand p { font-size: .88rem; color: var(--slate-500); margin-top: 14px; max-width: 320px; line-height: 1.7; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.footer__col a { font-size: .88rem; color: var(--slate-400); transition: color var(--transition); }
.footer__col a:hover { color: var(--indigo-400); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--slate-800);
  text-align: center;
}
.footer__bottom p { font-size: .82rem; color: var(--slate-500); }
.footer__badge {
  font-size: .78rem;
  color: var(--slate-500);
  background: rgba(99,102,241,.06);
  border: 1px solid rgba(99,102,241,.15);
  padding: 8px 20px;
  border-radius: 100px;
}
.footer__badge a { color: var(--indigo-400); font-weight: 600; }
.footer__badge a:hover { color: var(--indigo-300); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--slate-800);
  border: 1px solid var(--green-500);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(120px);
  opacity: 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
  max-width: 380px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon {
  width: 36px; height: 36px;
  background: rgba(34,197,94,.15);
  color: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.toast__title { font-family: var(--font-heading); font-size: .9rem; color: var(--white); }
.toast__message { font-size: .82rem; color: var(--slate-400); margin-top: 2px; }
.toast__close {
  background: none;
  border: none;
  color: var(--slate-500);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 0 0 8px;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE: 480px+
   ============================================ */
@media (min-width: 480px) {
  .newsletter__form { flex-direction: row; }
  .newsletter__btn { flex-shrink: 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__hosting-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__perks { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE: 768px+
   ============================================ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .results__grid .result-card:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid .blog-card:last-child { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }

  /* Process horizontal */
  .process__timeline {
    grid-template-columns: repeat(4, 1fr);
    padding-left: 0;
    padding-top: 60px;
    gap: 20px;
  }
  .process__line {
    left: 10%; right: 10%; top: 14px; bottom: auto;
    width: auto; height: 3px;
  }
  .process__line-fill {
    height: 100% !important;
    width: 0;
    transition: width 1.5s cubic-bezier(.4,0,.2,1);
  }
  .process__step { text-align: center; }
  .process__step-dot {
    position: relative;
    left: auto; top: auto;
    margin: 0 auto 18px;
  }
  .process__step-desc { margin: 0 auto; }
}

/* ============================================
   RESPONSIVE: 1024px+
   ============================================ */
@media (min-width: 1024px) {
  .nav__hamburger { display: none !important; }
  .nav__links { display: flex !important; position: static; flex-direction: row; background: none; padding: 0; width: auto; }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .results__grid { grid-template-columns: repeat(3, 1fr); }
  .results__grid .result-card:last-child { grid-column: auto; max-width: 100%; justify-self: auto; }
  .blog__grid { grid-template-columns: repeat(3, 1fr); }
  .blog__grid .blog-card:last-child { grid-column: auto; max-width: 100%; justify-self: auto; }
  .team__grid { grid-template-columns: repeat(4, 1fr); }
  .pricing__tiers { grid-template-columns: repeat(3, 1fr); }
  .contact__inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================
   RESPONSIVE: Below 1024px — Mobile Nav
   ============================================ */
@media (max-width: 1023px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(15,23,42,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__cta-btn { margin-top: 8px; }
}

/* ============================================
   RESPONSIVE: 1200px+
   ============================================ */
@media (min-width: 1200px) {
  .container { padding: 0 40px; }
}
