/* ===== DIGITAL ENVISIONED — Global Styles ===== */
:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --dark: #0f172a;
  --dark-mid: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --light: #f1f5f9;
  --lighter: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,64,175,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,64,175,.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-success {
  background: var(--success);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16,185,129,.35);
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16,185,129,.45);
  color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: .9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(6,182,212,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59,130,246,.15) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero-split { position: relative; z-index: 1; }
.hero-split .hero-content { max-width: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  padding: 8px 16px; border-radius: 50px;
  font-size: .85rem; color: var(--accent);
  font-weight: 500; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat h3 {
  font-size: 2rem; font-weight: 800;
  color: var(--white);
}
.hero-stat p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-header p { font-size: 1.1rem; color: var(--text-light); }

/* ===== PAIN POINTS ===== */
.pain-section { background: var(--lighter); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid #e2e8f0;
  transition: all .3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.pain-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(30,64,175,.1), rgba(6,182,212,.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.pain-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin-bottom: 12px;
}
.pain-card p { color: var(--text-light); font-size: .95rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.service-card p { font-size: .9rem; color: var(--text-light); }

/* ===== PRICING ===== */
.pricing-section { background: var(--dark); color: var(--white); }
.pricing-section .section-label { color: var(--accent); }
.pricing-section .section-header h2 { color: var(--white); }
.pricing-section .section-header p { color: rgba(255,255,255,.6); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all .3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(6,182,212,.15);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(6,182,212,.08);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: .75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 50px;
  letter-spacing: 1px;
}
.pricing-card h3 {
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 3rem; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.pricing-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.5); }
.pricing-desc {
  font-size: .9rem; color: rgba(255,255,255,.5);
  margin-bottom: 32px;
  min-height: 40px;
}
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  padding: 8px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all .3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  height: 180px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.9);
}
.product-body { padding: 24px; }
.product-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--primary-light);
  background: rgba(59,130,246,.1);
  padding: 4px 10px; border-radius: 50px;
  margin-bottom: 12px;
}
.product-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.product-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 1.4rem; font-weight: 800;
  color: var(--dark);
}
.product-price .original {
  font-size: .9rem; color: var(--text-light);
  text-decoration: line-through; margin-right: 6px;
  font-weight: 400;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section { background: var(--lighter); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #e2e8f0;
}
.testimonial-stars { color: var(--warning); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .9rem;
}
.testimonial-name { font-weight: 600; color: var(--dark); font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: var(--text-light); }

/* ===== RESULTS / STATS ===== */
.results-section { background: var(--gradient-dark); color: var(--white); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.result-item h3 {
  font-size: 2.5rem; font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.result-item p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ===== CTA ===== */
.cta-section {
  background: var(--gradient);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-section .btn-dark { font-size: 1.1rem; padding: 18px 44px; }

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--lighter); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem; font-weight: 700;
  color: var(--dark); margin-bottom: 16px;
}
.contact-info p { margin-bottom: 32px; color: var(--text-light); }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(30,64,175,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--dark); font-size: .95rem; }
.contact-item span { color: var(--text-light); font-size: .9rem; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600;
  font-size: .9rem; color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.8; max-width: 300px; }
.footer h4 {
  color: var(--white);
  font-size: .95rem; font-weight: 600;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color .2s;
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  opacity: .3;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800; font-size: 1.25rem;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.step-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.step-card p { font-size: .9rem; color: var(--text-light); max-width: 280px; margin: 0 auto; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-toggle { display: block; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 1.5rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== HERO SPLIT LAYOUT (with Joshua's photo) ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 3px solid rgba(255,255,255,.1);
}
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-image { order: -1; }
  .hero-image img { max-width: 320px; }
  .hero-btns { justify-content: center; }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  padding: 80px 0;
  background: var(--lighter);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.founder-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.founder-text .section-label {
  display: inline-block;
  margin-bottom: 12px;
}
.founder-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.founder-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.founder-creds {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.founder-cred img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
}
.founder-cred-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-text h2 { font-size: 1.5rem; }
  .founder-creds { flex-direction: column; text-align: center; }
}

/* ===== WORK SHOWCASE ===== */
.work-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.work-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-item-wide {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .work-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .work-item-wide { grid-row: span 1; }
  .work-item img { max-height: 400px; }
}

/* ===== PRODUCT HERO BANNER ===== */
.product-hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.product-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.product-hero-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 768px) {
  .product-hero-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-hero-img img { height: 240px; }
}

/* ===== CTA SPLIT LAYOUT ===== */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.cta-text h2 {
  color: var(--dark);
}
.cta-text p {
  color: var(--text-light);
}
@media (max-width: 768px) {
  .cta-split {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .cta-image { order: -1; }
  .cta-image img { max-width: 300px; margin: 0 auto; display: block; }
}
