/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,42,53,0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(34,42,53,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-text {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  background: white;
  border-radius: 9999px;
  box-shadow: var(--shadow-btn-ghost);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.hero-badge .mono {
  color: var(--mid-gray);
  font-size: 11px;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  text-wrap: balance;
}

.hero-title .ink {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero-title .ink::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: -4px;
  left: -4px;
  height: 16px;
  background: var(--primary);
  opacity: 0.25;
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-8deg);
}

.hero-title .arrow-deco {
  display: inline-block;
  color: var(--primary);
  margin: 0 6px;
}

.hero-sub {
  font-size: 18px;
  color: var(--mid-gray);
  margin-top: 22px;
  line-height: 1.7;
  max-width: 480px;
  text-wrap: pretty;
}

.hero-sub strong {
  color: var(--charcoal);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars > div {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  border: 2px solid var(--bg);
  font-family: 'Vazirmatn';
}
.hero-trust-avatars > div:nth-child(2) { background: var(--success); }
.hero-trust-avatars > div:nth-child(3) { background: var(--charcoal); }
.hero-trust-avatars > div:nth-child(4) { background: var(--mid-gray); }

.hero-trust-text {
  font-size: 13px;
  color: var(--mid-gray);
}
.hero-trust-text strong {
  color: var(--charcoal);
  font-weight: 700;
}

/* ===== TERMINAL ===== */
.terminal-wrap {
  position: relative;
  perspective: 1200px;
}

.terminal {
  background: #161616;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 60px rgba(34, 42, 53, 0.25),
    0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s ease;
  font-family: 'Roboto Mono', monospace;
  position: relative;
  z-index: 2;
}

.terminal-wrap:hover .terminal {
  transform: rotateY(0deg) rotateX(0deg);
}

.terminal-header {
  background: #1f1f1f;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}
.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}
.pulse-dot.green { background: var(--success); }
.pulse-dot.orange { background: var(--primary); }
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: pulse 1.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.terminal-body {
  padding: 24px 20px;
  min-height: 400px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  background:
    radial-gradient(ellipse at top, rgba(255,107,43,0.06) 0%, transparent 50%),
    #161616;
  direction: ltr;
  text-align: left;
}

.line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 1px 0;
}
.line.err { color: #FCA5A5; }
.line.err-detail { color: rgba(252, 165, 165, 0.7); padding-left: 12px; font-size: 12px;}
.line.fix-ok { color: #86EFAC; padding-left: 12px; font-size: 12px;}

.prompt {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  flex-shrink: 0;
}
.prompt.dr { color: var(--primary); font-weight: 600; }

.cmd { color: white; font-weight: 500; }

.cursor {
  color: var(--primary);
  animation: blink 1s step-end infinite;
  margin-left: 1px;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.error-block {
  margin: 12px 0 16px;
  padding: 12px 14px;
  background: rgba(239, 68, 68, 0.08);
  border-left: 2px solid #EF4444;
  border-radius: 4px;
}

.err-tag {
  background: #EF4444;
  color: white;
  padding: 1px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.err-msg {
  color: #FCA5A5;
  direction: rtl;
  font-family: 'Vazirmatn';
  font-size: 13px;
}

.doctor-line {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

.fix-block {
  margin-top: 14px;
}

.fix-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 8px;
}

.spinner {
  color: var(--primary);
  font-size: 14px;
  display: inline-block;
  width: 14px;
}

.fix-head span:nth-child(2) {
  font-family: 'Vazirmatn';
  flex: 1;
}

.progress-num {
  color: rgba(255,255,255,0.5);
}

.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--success));
  border-radius: 2px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(255,107,43,0.5);
}

.fix-success {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(62, 201, 106, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.success-badge {
  background: var(--success);
  color: white;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Vazirmatn';
}

.dim { color: rgba(255,255,255,0.4); }

/* Floating cards around terminal */
.float-card {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow-3);
  width: 220px;
  z-index: 3;
  font-family: 'Vazirmatn';
}

.float-card-tl {
  top: 32px;
  left: -32px;
  animation: floatA 6s ease-in-out infinite;
}

.float-card-br {
  bottom: 32px;
  right: -32px;
  animation: floatB 7s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(8px) rotate(3deg); }
}

.float-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.float-card-body {
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.5;
}

.mini-bar {
  height: 4px;
  background: rgba(255,107,43,0.1);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.mini-fill {
  height: 100%;
  background: var(--primary);
  width: 0;
  border-radius: 2px;
  animation: fill 3s ease-in-out infinite;
}
@keyframes fill {
  0% { width: 0; }
  70% { width: 78%; }
  100% { width: 100%; }
}

/* ===== HIGHLIGHT TYPE ===== */
.highlight-orange {
  position: relative;
  white-space: nowrap;
}
.highlight-orange::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--primary);
  opacity: 0.2;
  z-index: -1;
  transform: skewX(-6deg);
}

.highlight-green {
  position: relative;
  white-space: nowrap;
  color: var(--success-dark);
}
.highlight-green::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--success);
  border-radius: 2px;
}

.strike {
  position: relative;
  display: inline-block;
}
.strike::after {
  content: '';
  position: absolute;
  top: 55%;
  left: -4px;
  right: -4px;
  height: 4px;
  background: var(--primary);
  transform: rotate(-2deg);
}

/* ===== SECTION HEADS ===== */
.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head.center-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: none;
  gap: 32px;
}

.eyebrow-light {
  color: var(--primary);
}

.section-title.light {
  color: white;
}

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

.service-card {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-2);
  transition: all 0.25s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-green::before { background: var(--success); }

.service-num {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 13px;
  color: var(--mid-gray);
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 107, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-green .service-icon {
  background: rgba(62, 201, 106, 0.08);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  color: var(--mid-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tag {
  background: rgba(34, 42, 53, 0.04);
  color: var(--charcoal);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }
.service-green .service-link { color: var(--success-dark); }

/* ===== PROCESS (dark section) ===== */
.section-dark {
  background: var(--midnight);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.process-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  transition: all 0.25s ease;
}

.process-card:hover {
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 0 0 1px rgba(255,107,43,0.3);
}

.process-num {
  display: inline-block;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 10px;
  background: rgba(255,107,43,0.1);
  border-radius: 9999px;
}

.process-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.process-arrow {
  position: absolute;
  left: -18px;
  top: 36px;
  background: var(--midnight);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(255,107,43,0.3);
  z-index: 2;
}

/* ===== CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}

.case-mock {
  background: linear-gradient(180deg, #fafafa 0%, white 100%);
  padding: 16px;
  border-bottom: 1px solid rgba(34,42,53,0.06);
}

.case-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.case-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.case-client {
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.case-industry {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

.case-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 12px 0;
  border-top: 1px solid rgba(34,42,53,0.06);
  border-bottom: 1px solid rgba(34,42,53,0.06);
}

.case-metric {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.case-metric-label {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 4px;
}

.case-duration {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.case-duration-num {
  font-size: 11px;
  color: var(--mid-gray);
}

.case-summary {
  font-size: 13.5px;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ===== STATS ===== */
.section-stats {
  padding: 48px 0;
  background:
    linear-gradient(135deg, rgba(255,107,43,0.05) 0%, rgba(62,201,106,0.04) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  color: var(--primary);
  font-size: 36px;
  margin-right: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--mid-gray);
  margin-top: 8px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--charcoal);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.code-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.code-rain span {
  position: absolute;
  top: -30px;
  font-size: 13px;
  color: rgba(255,107,43,0.25);
  font-weight: 600;
  animation: rain linear infinite;
  white-space: nowrap;
}

@keyframes rain {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(400px); opacity: 0; }
}

.cta-banner-content {
  position: relative;
  max-width: 640px;
}

.cta-banner-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 16px;
  letter-spacing: -0.02em;
}

.cta-banner-content h2 .highlight-orange::after {
  background: var(--primary);
  opacity: 0.4;
}

.cta-banner-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.cta-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-2);
}

.testimonial-quote {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin: 16px 0 24px;
  text-wrap: pretty;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(34,42,53,0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}

.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--success); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--charcoal); }

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ===== FOOTER SOCIAL ===== */
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.social-icon:hover {
  background: var(--primary);
  color: white;
}

/* ===== HERO VARIATIONS ===== */
.hero.variant-form .hero-inner {
  grid-template-columns: 1fr 1fr;
}

.diagnose-form {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-3);
  position: relative;
}

.diagnose-form::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.diagnose-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.diagnose-form p {
  color: var(--mid-gray);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: white;
  box-shadow: 0 0 0 1px rgba(34,42,53,0.12), 0 1px 2px rgba(0,0,0,0.06);
  font-family: 'Vazirmatn';
  font-size: 14px;
  color: var(--charcoal);
  transition: box-shadow 0.15s ease;
  direction: rtl;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--focus), 0 1px 2px rgba(0,0,0,0.06);
}

.form-input.textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Vazirmatn';
}

.problem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.problem-chip {
  padding: 7px 14px;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 0 0 1px rgba(34,42,53,0.12);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: 'Vazirmatn';
  border: none;
}

.problem-chip:hover {
  box-shadow: 0 0 0 1px var(--primary);
  color: var(--primary);
}

.problem-chip.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 1px var(--primary), 0 2px 8px rgba(255,107,43,0.3);
}

/* Stats hero variant */
.hero.variant-stats .hero-inner {
  grid-template-columns: 1fr 0.9fr;
}

.stats-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-tile {
  background: white;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.stat-tile.dark {
  background: var(--charcoal);
  color: white;
}

.stat-tile-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-tile.dark .stat-tile-num { color: var(--primary); }

.stat-tile-label {
  color: var(--mid-gray);
  font-size: 13px;
  margin-top: 8px;
}

.stat-tile.dark .stat-tile-label { color: rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .services-grid, .cases-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card { display: none; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner-content h2 { font-size: 32px; }
  .section-title { font-size: 30px; }
}
