/* =============================================
   BRAINFLOW — Global Stylesheet
   ============================================= */

:root {
  --bg: #070d1a;
  --bg2: #0d1525;
  --bg3: #111d30;
  --accent: #00d4ff;
  --accent2: #7c5cbf;
  --white: #f0f4ff;
  --muted: #7a8ba8;
  --dim: #3a4a62;
  --border: rgba(255,255,255,0.07);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
em { font-style: normal; color: var(--accent); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 14px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 0.5px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

/* ---- NAVBAR ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(7,13,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 14px 40px; }
.logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  flex-direction: column;
  padding: 20px 32px;
  gap: 18px;
}
.mobile-menu a { font-size: 16px; color: var(--muted); }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mob-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  width: fit-content;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 64px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, transparent 40%, var(--bg) 100%);
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 0.5px solid rgba(0,212,255,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title { color: var(--white); margin-bottom: 20px; }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.hero-proof strong { color: var(--white); }
.proof-avatars { display: flex; }
.pa {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
}
.pa:not(:first-child) { margin-left: -8px; }
.pa1 { background: #0f2a3a; }
.pa2 { background: #1a1f3a; }
.pa3 { background: #1f2a1a; }

.hero-visual {
  position: relative;
  height: 420px;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}
.orb1 { width: 280px; height: 280px; background: var(--accent); top: 10%; left: 20%; }
.orb2 { width: 200px; height: 200px; background: var(--accent2); bottom: 10%; right: 10%; }

.hero-card {
  position: absolute;
  background: rgba(13,21,37,0.9);
  border: 0.5px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}
.hc1 { top: 8%; left: 0; animation-delay: 0s; }
.hc2 { top: 42%; right: 0; animation-delay: 1.3s; }
.hc3 { bottom: 8%; left: 10%; animation-delay: 2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hc-icon { font-size: 22px; }
.hc-text { display: flex; flex-direction: column; }
.hc-text strong { font-size: 13px; font-weight: 600; color: var(--white); }
.hc-text span { font-size: 11px; color: var(--muted); }

/* ---- STATS BAND ---- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-div {
  width: 0.5px;
  background: var(--border);
  margin: 16px 0;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.stat-detail { font-size: 12px; color: var(--muted); }

/* ---- PROBLEM SECTION ---- */
.problem-section {
  padding: 96px 0;
  background: var(--bg2);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.problem-card:hover { border-color: rgba(0,212,255,0.25); }
.problem-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(0,212,255,0.07);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.problem-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(239,68,68,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  margin-bottom: 18px;
}
.problem-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.problem-solution { font-size: 13px; color: var(--accent); font-weight: 500; }

/* ---- SERVICES ---- */
.services-section { padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc-card {
  display: block;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.2s;
  cursor: pointer;
}
.svc-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
}
.svc-featured {
  border-color: rgba(0,212,255,0.2);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(0,50,70,0.4) 100%);
}
.svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.svc-icon-box {
  width: 46px; height: 46px;
  background: rgba(0,212,255,0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.svc-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,212,255,0.12);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  border: 0.5px solid rgba(0,212,255,0.25);
}
.svc-card h3 { font-size: 19px; margin-bottom: 6px; }
.svc-promise { font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 12px; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.svc-tags span {
  font-size: 11px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  color: var(--muted);
  padding: 4px 11px;
  border-radius: 20px;
}
.svc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- PROCESS ---- */
.process-section {
  padding: 96px 0;
  background: var(--bg2);
}
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 22px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 0.5px;
  background: rgba(0,212,255,0.2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.p-step { text-align: center; padding: 0 16px; }
.p-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg3);
  border: 0.5px solid rgba(0,212,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 18px;
}
.p-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ---- TESTIMONIALS ---- */
.testimonial-section { padding: 96px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; color: var(--muted); line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,212,255,0.12);
  border: 0.5px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ---- WHY ---- */
.why-section { padding: 96px 0; background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.why-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.why-card p { font-size: 14px; color: var(--muted); }

/* ---- CTA/CONTACT SECTION ---- */
.cta-section { padding: 96px 0; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  background: var(--bg2);
  border: 0.5px solid rgba(0,212,255,0.18);
  border-radius: 20px;
  padding: 52px;
}
.cta-left h2 { margin-bottom: 14px; }
.cta-left p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.cta-reassurances { display: flex; flex-direction: column; gap: 10px; }
.cta-r { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.r-check { color: var(--accent); font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg3);
  border: 0.5px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0,212,255,0.4);
}
.contact-form select { appearance: none; }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--dim); }
.form-btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.8; }
.form-note a { color: var(--accent); }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 56px; height: 56px;
  background: rgba(0,212,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin: 0 auto 16px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--muted); }

/* ---- FOOTER ---- */
.footer {
  padding: 56px 0 28px;
  border-top: 0.5px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin: 12px 0 16px; max-width: 300px; }
.footer-contacts { display: flex; flex-direction: column; gap: 6px; }
.footer-contacts a { font-size: 14px; color: var(--accent); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--dim);
}

/* ---- SERVICE PAGE SHARED ---- */
.service-hero {
  padding: 140px 0 80px;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
}
.service-hero .breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-hero .breadcrumb a { color: var(--accent); }
.service-hero .breadcrumb a:hover { text-decoration: underline; }
.service-hero h1 { margin-bottom: 16px; }
.service-hero .hero-sub { max-width: 600px; }
.service-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.service-content { padding: 80px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.25s;
}
.feature-card:hover { border-color: rgba(0,212,255,0.25); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.pricing-section { padding: 80px 0; background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.pricing-card.featured {
  border-color: rgba(0,212,255,0.3);
  background: linear-gradient(140deg, var(--bg3), rgba(0,40,55,0.6));
}
.pricing-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pricing-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 14px; color: var(--muted); font-weight: 400; }
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 0.5px solid var(--border); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pf { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.pf::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; }
.pricing-btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: 0.2s;
  border: none;
  font-family: var(--font-body);
}
.pricing-btn-accent { background: var(--accent); color: var(--bg); }
.pricing-btn-accent:hover { opacity: 0.88; }
.pricing-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 0.5px solid var(--border) !important;
  border: none;
}
.pricing-btn-ghost:hover { background: rgba(255,255,255,0.05); }

.faq-section { padding: 80px 0; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-q span { flex: 1; }
.faq-chevron { color: var(--accent); font-size: 18px; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }

.cta-service-section { padding: 80px 0; }
.cta-service-box {
  background: var(--bg2);
  border: 0.5px solid rgba(0,212,255,0.2);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-service-box h2 { margin-bottom: 14px; }
.cta-service-box p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.cta-service-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    text-align: center;
  }
  .hero-sub, .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-div { display: none; }
  .problem-grid, .services-grid, .testi-grid, .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .cta-box { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav { padding: 18px 24px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 90px 20px 50px; }
  .cta-box { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-service-box { padding: 36px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 110px 0 60px; }
}
