/* ============================================================ */
/* PPC ADVERTISING SERVICES - CUSTOM SECTIONS (DARK THEME)      */
/* ============================================================ */

:root {
  --navy: #090A0F;
  --navy-mid: #13151D;
  --teal: #8A2BE2;           /* Primary purple accent */
  --teal-mid: #a85dfc;
  --teal-light: rgba(138, 43, 226, 0.1);
  --gold: #E8A020;           /* Accent Gold */
  --gold-light: rgba(232, 160, 32, 0.1);
  --off-white: #13151D;
  --white: #FFFFFF;
  --text-dark: #FFFFFF;
  --text-body: #e1e1e1;
  --text-muted: #8a94a6;
  --border: #202433;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* ─── TYPOGRAPHY SCOPED FOR PPC SECTIONS ─── */
.ppc-container h1, 
.ppc-container h2, 
.ppc-container h3, 
.ppc-container h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ppc-container p, 
.ppc-container li {
  font-family: var(--font-body);
  color: var(--text-body);
}

/* ─── SECTION CONTAINERS ─── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  background-color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}

.section-teal {
  background: linear-gradient(135deg, #0e0a1b 0%, #170f2c 100%);
  border-bottom: 1px solid var(--border);
}

/* ─── EYEBROW BADGE ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
  background: var(--teal-light);
  border: 1px solid rgba(138, 43, 226, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-mid);
  border-radius: 50%;
}

/* ─── BUTTONS OVERRIDES ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.btn-primary:hover {
  background: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 0 15px rgba(230, 0, 51, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-light);
  text-decoration: none;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: #e6e6e6;
  text-decoration: none;
}

.btn-gold {
  background: rgba(138, 43, 226, 0.12);
  color: var(--white);
  border: 1.5px solid var(--teal);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--teal);
  border-color: var(--teal);
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* ─── HERO SECTION ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e1335 100%);
  padding: 140px 0 80px; /* Extra top padding for sticky nav */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.35);
  color: #d4a3ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero h1 span {
  color: var(--primary-red);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Hero card (Audit Form) */
.hero-card {
  background: rgba(19, 21, 29, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.audit-field {
  margin-bottom: 14px;
}

.audit-field label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audit-field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(9, 10, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.18s;
}

.audit-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.audit-field input:focus {
  border-color: var(--teal);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.hero-card .privacy-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 30px 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.trust-pill {
  background: rgba(19, 21, 29, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(138, 43, 226, 0.25);
  border-radius: 50px;
  padding: 20px 40px;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 960px;
  margin: 0 auto;
}

.trust-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(138, 43, 226, 0.35);
  border-color: rgba(138, 43, 226, 0.5);
}

/* Animated shine effect */
@keyframes trustShine {
  0% { left: -100%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.trust-pill::before {
  content: '';
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(138, 43, 226, 0.2), rgba(255, 255, 255, 0.1), rgba(138, 43, 226, 0.2), transparent);
  transform: skewX(-30deg);
  animation: trustShine 5s infinite ease-in-out;
  pointer-events: none;
  left: -100%;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.trust-item:hover {
  color: var(--white);
  transform: scale(1.05);
}

.trust-icon {
  font-size: 18px;
}

.trust-divider {
  height: 1px;
  background: rgba(138, 43, 226, 0.2);
  margin: 15px auto;
  width: 80%;
}

.trust-address {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, transform 0.2s;
}

.trust-address:hover {
  color: var(--white);
  transform: scale(1.05);
}

/* ─── PROBLEM SECTION ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 43, 226, 0.4);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2), var(--shadow-sm);
  background: rgba(19, 21, 29, 0.8);
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── SERVICES GRID ─── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

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

.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(138, 43, 226, 0.4);
}

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

.service-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 255, 102, 0.12);
  color: var(--accent-green);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

/* ─── PROCESS (HOW WE WORK) ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--primary-red));
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  border: 4px solid #0e0a1b; /* Matches section-teal background strictly */
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.9);
  background: var(--primary-red);
  border-color: var(--primary-purple);
}

.process-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── SPECIALTIES ─── */
.specialties-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 48px;
  padding: 15px 0;
}

.specialties-carousel::before,
.specialties-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.specialties-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.specialties-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

.specialties-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: specialties-marquee 35s linear infinite;
}

.specialties-carousel-track:hover {
  animation-play-state: paused;
}

.specialties-carousel-track .specialty-card {
  width: 295px;
  flex-shrink: 0;
  margin-bottom: 0;
}

@keyframes specialties-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-295px * 6 - 20px * 6));
  }
}

.specialty-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  background: var(--navy-mid);
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.specialty-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-2px);
}

.specialty-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.specialty-card h3 {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.specialty-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  margin-top: 10px;
}

/* ─── COMPLIANCE ─── */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.compliance-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.compliance-badge {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

.compliance-badge:hover {
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.25);
  transform: translateY(-2px);
  background: rgba(138, 43, 226, 0.04);
}

.compliance-badge-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.compliance-badge h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.compliance-badge p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.compliance-right {
  background: rgba(19, 21, 29, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.compliance-right h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.compliance-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.compliance-point-icon {
  color: var(--accent-green);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compliance-point p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--navy-mid);
  position: relative;
  overflow: visible !important;
}

.pricing-card.featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-md);
  background: rgba(23, 21, 35, 0.5);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-range {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.4;
}

.pricing-features {
  margin-top: 4px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-check {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* ─── RESULTS / CASE STUDY ─── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.result-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--primary-red));
}

.result-specialty {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 12px;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.result-metric {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  border: 1px solid var(--border);
}

.result-metric .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-green);
}

.result-metric .lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.result-quote {
  font-size: 14px;
  color: var(--text-body);
  font-style: italic;
  border-left: 3px solid var(--teal);
  padding-left: 14px;
  margin-top: 16px;
}

/* ─── GEO SECTION ─── */
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.geo-map {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.geo-map-inner {
  text-align: center;
}

.geo-map-pin {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.geo-map h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.geo-map p {
  font-size: 14px;
  color: var(--text-muted);
}

.geo-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.geo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
}

.geo-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── FAQ accordion ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item.active {
  border-color: var(--teal-mid);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.25);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-num {
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 24px;
}

.faq-icon {
  min-width: 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #E60033;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 14px;
}

/* ─── CTA SECTION ─── */
.cta-inner {
  background: linear-gradient(135deg, #090a0f 0%, #151125 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-inner .btn {
  margin-right: 12px;
  margin-bottom: 10px;
}

.cta-form {
  background: rgba(19, 21, 29, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.cta-form h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-field {
  margin-bottom: 12px;
}

.cta-field input,
.cta-field select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(9, 10, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.18s;
}

.cta-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.cta-field input:focus,
.cta-field select:focus {
  border-color: var(--teal);
}

.cta-field select option {
  background: var(--navy-mid);
}

.cta-form .btn {
  width: 100%;
  justify-content: center;
  margin: 8px 0 0;
}

.cta-form .note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ─── INTERNAL LINKS STRIP ─── */
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.internal-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.internal-arrow {
  color: var(--teal-mid);
  font-weight: 700;
  font-size: 12px;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.internal-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.18s;
}

.internal-link:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
}

.internal-link:hover .internal-arrow {
  transform: translateX(3px);
}

/* ─── RESPONSIVE STYLES ─── */
@media (max-width: 900px) {
  .hero-inner,
  .services-intro,
  .compliance-grid,
  .geo-grid,
  .cta-inner,
  .results-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .services-grid,
  .problem-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

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

  .cta-inner {
    padding: 40px 28px;
  }

  .cta-form {
    max-width: 480px;
    margin: 0 auto;
  }

  .compliance-badges {
    grid-template-columns: 1fr;
  }

  .geo-areas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

  .services-grid,
  .problem-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 120px 0 56px;
  }

  .hero-stats {
    gap: 20px;
  }

  .result-metrics {
    grid-template-columns: 1fr 1fr;
  }
}
