/* ============================================
   IDC — Imprenta Digital Creativa
   Landing WOW — Merchandising Corporativo
   Mazatlán, Sinaloa
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1E3F6E;
  --orange: #EA9D4A;
  --blue: #2B7EC5;
  --cyan: #1A8FC4;
  --magenta: #C45BAE;
  --purple: #5B3D8F;
  --dark: #FFFFFF;
  --dark-2: #F7F8FA;
  --dark-3: #FFFFFF;
  --light: #1A1A2E;
  --light-70: rgba(26, 26, 46, 0.65);
  --light-50: rgba(26, 26, 46, 0.45);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(30, 63, 110, 0.1);
  --gradient-logo: linear-gradient(135deg, #1E3F6E, #2B7EC5, #EA9D4A, #C45BAE, #5B3D8F);
  --gradient-cta: linear-gradient(135deg, #2B7EC5, #EA9D4A);
  --gradient-text: linear-gradient(135deg, #1E3F6E, #2B7EC5, #C45BAE);
  --max-width: 1200px;
  --section-pad: 6rem 1.5rem;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section base --- */
.section {
  padding: var(--section-pad);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title .gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-70);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Animations (reveal on scroll) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-logo span {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-70);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--light); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--gradient-cta);
  color: #fff !important;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(43, 126, 197, 0.3);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  padding: 0.5rem;
}

.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.5);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 11, 20, 0.95) 0%,
    rgba(10, 11, 20, 0.85) 40%,
    rgba(10, 11, 20, 0.4) 100%
  );
}

/* Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: var(--blue);
  opacity: 0.12;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  background: var(--magenta);
  opacity: 0.08;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: #F5F5F7;
}

.hero .hero-sub,
.hero .hero-trust-item,
.hero .hero-badge {
  color: rgba(245, 245, 247, 0.7);
}

.hero h1 {
  color: #F5F5F7;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #4AADE4, #EA9D4A, #C45BAE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #F5F5F7;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-70);
  background: var(--card-bg);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--light-70);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 126, 197, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--card-bg);
  color: var(--light);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--card-border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(30, 63, 110, 0.25);
  background: rgba(30, 63, 110, 0.05);
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-50);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   PAIN → SOLUTION
   ============================================ */
.pain-section {
  background: var(--dark-2);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pain-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pain-card:hover {
  border-color: rgba(30, 63, 110, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pain-icon svg {
  width: 22px;
  height: 22px;
}

.pain-icon.red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.pain-icon.green {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.pain-before {
  font-size: 0.82rem;
  color: rgba(239, 68, 68, 0.8);
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pain-after {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1.4;
}

.pain-after-label {
  font-size: 0.75rem;
  color: rgba(34, 197, 94, 0.8);
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.package-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.package-card:hover {
  border-color: rgba(30, 63, 110, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
  border-color: rgba(234, 157, 74, 0.35);
  background: linear-gradient(180deg, rgba(234, 157, 74, 0.06) 0%, #FFFFFF 50%);
  box-shadow: 0 4px 20px rgba(234, 157, 74, 0.1);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--gradient-cta);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.package-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.package-desc {
  font-size: 0.85rem;
  color: var(--light-70);
  margin-bottom: 1.25rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.package-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-70);
}

.package-items {
  list-style: none;
  margin: 1.25rem 0;
  flex-grow: 1;
}

.package-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--light-70);
}

.package-items li svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

.package-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: auto;
}

.package-card.featured .package-cta {
  background: var(--gradient-cta);
  color: #fff;
}

.package-card:not(.featured) .package-cta {
  background: #FFFFFF;
  color: var(--navy);
  border: 1px solid rgba(30, 63, 110, 0.15);
}

.package-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(43, 126, 197, 0.25);
}

.packages-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--light-50);
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  border-color: transparent;
  background-image: linear-gradient(#FFFFFF, #FFFFFF),
    var(--gradient-logo);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(43, 126, 197, 0.1);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--light-70);
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--magenta));
  border-radius: 1px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.step-1 .step-number {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 0 30px rgba(43, 126, 197, 0.3);
}

.step-2 .step-number {
  background: linear-gradient(135deg, var(--orange), #d4832e);
  box-shadow: 0 0 30px rgba(234, 157, 74, 0.3);
}

.step-3 .step-number {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  box-shadow: 0 0 30px rgba(196, 91, 174, 0.3);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--light-70);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--blue), var(--orange), var(--magenta));
  }

  .process-step {
    text-align: left;
    padding-left: 90px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

  .process-step p { margin: 0; }
}

/* ============================================
   TRUST
   ============================================ */
.trust-section {
  background: var(--dark-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.trust-item:hover {
  border-color: rgba(30, 63, 110, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 157, 74, 0.1);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.trust-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.78rem;
  color: var(--light-50);
  line-height: 1.5;
}

.trust-stat {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.trust-stat blockquote {
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--light-70);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.trust-stat cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--light-50);
  font-style: normal;
}

/* ============================================
   CTA + FORM
   ============================================ */
.cta-section {
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 126, 197, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.cta-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 126, 197, 0.06);
  border: 1px solid rgba(30, 63, 110, 0.1);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--light-70);
}

.contact-item strong {
  display: block;
  color: var(--light);
  font-weight: 600;
}

.cta-form-card {
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.1);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.cta-form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cta-form-card .form-sub {
  font-size: 0.85rem;
  color: var(--light-70);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light-70);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(30, 63, 110, 0.15);
  border-radius: 10px;
  color: #1A1A2E;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(26, 26, 46, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #FFFFFF;
  color: #1A1A2E;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 126, 197, 0.35);
}

@media (max-width: 768px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid rgba(30, 63, 110, 0.1);
  background: var(--dark-2);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo span {
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--light-50);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--light); }

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.75rem;
  color: var(--light-50);
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F7F8FA; }
::-webkit-scrollbar-thumb { background: rgba(30, 63, 110, 0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 63, 110, 0.25); }
