/* DLTechGroup Website Styles */
/* Theme: Tech-Forward Modern (2026) */
/* Color Palette: Deep Slate + Electric Teal */

:root {
  /* Primary Colors - Dark Slate */
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-mid: #334155;

  /* Accent Colors - Electric Teal */
  --accent: #06b6d4;
  --accent-hover: #22d3ee;
  --accent-glow: rgba(6, 182, 212, 0.4);

  /* Text Colors */
  --text: #1e293b;
  --text-light: #94a3b8;
  --text-on-dark: #f1f5f9;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #030712;

  /* Borders */
  --border: #e2e8f0;
  --border-dark: rgba(6, 182, 212, 0.2);

  /* Utility */
  --white: #ffffff;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 4px 14px var(--accent-glow);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==================== HEADER ==================== */
header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #0891b2 100%);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  border-bottom: none !important;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-san-diego.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--primary); /* Fallback */
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.85) 40%,
    rgba(6, 182, 212, 0.2) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  line-height: 1.1;
}

.hero p {
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0891b2 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==================== SECTION STYLES ==================== */

/* Light Section */
.section-light {
  background: var(--white);
  color: var(--text);
  padding: 5rem 0;
}

/* Alt Light Section */
.section-alt {
  background: var(--bg-alt);
  color: var(--text);
  padding: 5rem 0;
}

/* Dark Section */
.section-dark {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--text-light);
}

/* ==================== SERVICES GRID ==================== */
.services {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Service Card - Light Theme */
.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent);
}

.service-card .service-img {
  width: calc(100% + 4rem);
  height: 160px;
  object-fit: cover;
  margin: -2rem -2rem 1.5rem -2rem;
  border-radius: 16px 16px 0 0;
}

/* Service Card - Dark Theme */
.service-card-dark {
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
}

.service-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-dark h3,
.service-card-dark h4 {
  color: var(--white);
}

.service-card-dark p {
  color: var(--text-light);
}

.service-card h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .icon {
  font-size: 1.5rem;
}

.service-card ul {
  list-style: none;
  margin: 1rem 0;
}

.service-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-card li::before {
  content: "\2713";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.service-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}

.service-card.featured::before {
  content: "Best Value";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #0891b2 100%);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ==================== WHO WE HELP (INDUSTRIES) ==================== */
.who-we-help {
  padding: 5rem 0;
}

.who-we-help h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.who-we-help > .container > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.industry-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.industry-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.industry-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.industry-item:hover h4 {
  color: var(--white);
}

.industry-item .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col p {
  color: var(--text-light);
}

.footer-col a {
  color: var(--text-light);
  display: block;
  padding: 0.35rem 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.page-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0.5rem auto 0;
  font-size: 1.125rem;
}

/* ==================== SERVICE DETAIL (Services Page) ==================== */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) {
  background: var(--bg-alt);
}

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.service-detail .service-content {
  order: 1;
}

.service-detail .service-image {
  order: 2;
}

.service-detail .service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.service-detail:nth-child(even) .service-content {
  order: 2;
}

.service-detail:nth-child(even) .service-image {
  order: 1;
}

@media (max-width: 768px) {
  .service-detail .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail .service-content,
  .service-detail:nth-child(even) .service-content {
    order: 2;
  }

  .service-detail .service-image,
  .service-detail:nth-child(even) .service-image {
    order: 1;
  }
}

.service-detail h2 {
  margin-bottom: 1rem;
}

.service-detail .price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #0891b2 100%);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.service-detail ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-detail li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.service-detail li:last-child {
  border-bottom: none;
}

.service-detail li::before {
  content: "\2713";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.25rem;
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-values {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.value-item .number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-light);
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.contact-form {
  background: var(--bg-alt);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid var(--border);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  nav a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-light,
  .section-dark,
  .section-alt,
  .services,
  .who-we-help,
  .cta-section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .service-card,
  .service-card-dark {
    padding: 1.5rem;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }

/* Animation utility */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: var(--primary-light);
  padding: 3rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-item .label {
  color: var(--text-light);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.section-tag {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
}

.process-step .step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.process-step h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ==================== TESTIMONIAL SECTION ==================== */
.testimonial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.testimonial-card {
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-info .name {
  color: var(--white);
  font-weight: 600;
}

.testimonial-author-info .title {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ==================== ARROW LINKS ==================== */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.arrow-link:hover {
  gap: 0.75rem;
}

.arrow-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

/* ==================== RESPONSIVE - NEW SECTIONS ==================== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item .number {
    font-size: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .process-step .step-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .testimonial-quote::before {
    font-size: 3rem;
    top: -1rem;
    left: 0;
  }
}

/* ==================== AI PIVOT - NEW SECTIONS ==================== */

/* Industry AI Angle Text */
.industry-item .industry-ai-angle {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Traditional Services Callout (on services.html) */
.traditional-services-callout {
  padding: 3rem 0;
  background: var(--bg-alt);
  margin-top: 2rem;
}

.traditional-services-callout h3 {
  margin-bottom: 1rem;
}

.traditional-services-callout p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* AI Upsell Callout (on web-ads.html) */
.ai-upsell-callout {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  margin-top: 2rem;
}

.ai-upsell-callout h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.ai-upsell-callout p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ai-upsell-callout .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.ai-upsell-callout .btn-primary:hover {
  background: var(--bg-alt);
}
