:root {
  --bg: #ffffff;
  --text: #0d0d0d;
  --muted: #666666;
  --line: #e9e9e9;
  --surface: #fafafa;
  --surface-2: #f5f5f5;
  --primary: #ff7a00;
  --primary-light: #fff2e7;
  --secondary: #7b61ff;
  --secondary-light: #f1efff;
  --dark: #0d0d0d;
  --shadow: 0 10px 30px rgba(13, 13, 13, 0.06);
  --shadow-hover: 0 16px 40px rgba(13, 13, 13, 0.1);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1200px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 18px 0 14px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  background: var(--text);
  color: white;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-primary:hover {
  box-shadow: var(--shadow-hover);
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(13, 13, 13, 0.04);
  border-color: rgba(0, 0, 0, 0.05);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-image {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 6px rgba(123, 97, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 10px;
}

.nav-links a {
  font-size: 15px;
  color: var(--muted);
  transition: color var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  height: 44px;
  padding: 0 16px;
  cursor: pointer;
}

.hero {
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
}

.hero-copy .accent {
  color: var(--secondary);
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-card-wrap {
  position: relative;
  min-height: 560px;
}

.hero-blur {
  position: absolute;
  inset: auto;
  width: 260px;
  height: 260px;
  filter: blur(50px);
  opacity: 0.25;
  border-radius: 50%;
  z-index: 0;
}

.hero-blur.orange {
  background: rgba(255, 122, 0, 0.7);
  top: 60px;
  right: 30px;
}

.hero-blur.violet {
  background: rgba(123, 97, 255, 0.75);
  bottom: 40px;
  left: 20px;
}

.dashboard {
  position: relative;
  z-index: 2;
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.dash-dots {
  display: flex;
  gap: 7px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ececec;
}

.dash-title {
  font-size: 15px;
  font-weight: 700;
}

.dash-body {
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 24px;
  padding: 20px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  background: white;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}

.metric small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.metric strong {
  font-size: 24px;
}

.chat-box {
  display: grid;
  gap: 12px;
}

.bubble {
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
  font-size: 15px;
}

.bubble.user {
  background: white;
  border: 1px solid var(--line);
}

.bubble.ai {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.1), rgba(255, 122, 0, 0.12));
  border: 1px solid rgba(123, 97, 255, 0.12);
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  min-width: 150px;
}

.floating-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.floating-card strong {
  font-size: 22px;
}

.float-1 {
  top: 20px;
  left: -10px;
}

.float-2 {
  right: 5px;
  top: 120px;
}

.float-3 {
  left: 30px;
  bottom: 30px;
}

.steps,
.services-grid,
.product-grid,
.contact-grid,
.about-grid {
  display: grid;
  gap: 24px;
}

.steps,
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid,
.contact-grid,
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.product-showcase,
.contact-card,
.about-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3,
.product-showcase h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.card p,
.product-showcase p,
.contact-card p,
.about-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.icon-badge,
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(123, 97, 255, 0.15));
  font-weight: 700;
}

.chart {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 220px;
  margin-top: 26px;
}

.bar {
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  position: relative;
}

.bar::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
  font-size: 12px;
  color: var(--muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.muted {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(123, 97, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.info-row strong {
  display: block;
  margin-bottom: 6px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  border: 0;
  background: white;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .product-grid,
  .contact-grid,
  .about-grid,
  .steps,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-wrap {
    min-height: auto;
  }

  .dashboard {
    transform: none;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav.open .nav-links,
  .nav.mobile-open .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open .nav-actions,
  .nav.mobile-open .nav-actions {
    display: flex;
    position: absolute;
    top: calc(100% + 330px);
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
}

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

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav {
    height: 74px;
  }

  .brand-logo {
    height: 34px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .hero-copy p,
  .section-head p {
    font-size: 16px;
  }

  .metrics,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-bottom: 12px;
  }

  .dashboard {
    margin-top: 18px;
  }
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-hover);
  padding: 10px;
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--surface);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.legal-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.legal-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 26px;
  padding: 20px 0 26px;
}

.legal-footer-inner a {
  font-size: 14px;
  color: var(--muted);
}

.legal-footer-inner a:hover {
  color: var(--text);
}

.service-page .hero,
.service-page .section,
.legal-page .section {
  position: relative;
}

.service-hero {
  padding: 118px 0 92px;
  background:
    radial-gradient(circle at top right, rgba(123,97,255,0.10), transparent 30%),
    radial-gradient(circle at left center, rgba(255,122,0,0.10), transparent 28%),
    linear-gradient(180deg, #fff, #fcfcfc);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.service-hero h1 {
  margin: 18px 0 18px;
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.service-hero .accent {
  color: var(--secondary);
}

.service-lead {
  margin: 0;
  max-width: 700px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--muted);
}

.service-showcase {
  display: grid;
  gap: 18px;
}

.service-showcase-card,
.service-quote {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.service-showcase-card {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.service-mini-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.service-mini-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.service-mini-stat small { color: var(--muted); display: block; }
.service-mini-stat strong { font-size: 1.05rem; letter-spacing: -0.02em; }

.service-stack {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  gap: 16px;
}

.service-stack-item span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}

.progress {
  height: 10px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
}

.progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

.service-quote {
  padding: 24px 26px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.service-alt {
  background: var(--surface);
}

.service-three-grid,
.service-steps {
  grid-template-columns: repeat(3, 1fr);
}

.service-steps {
  display: grid;
  gap: 20px;
}

.legal-container {
  max-width: 900px;
}

.legal-title {
  margin: 18px 0 14px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-copy {
  display: grid;
  gap: 18px;
}

.legal-copy h2 {
  margin: 16px 0 0;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.legal-copy p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.9;
  color: #303030;
}

@media (max-width: 960px) {
  .service-hero-grid,
  .service-three-grid,
  .service-steps {
    grid-template-columns: 1fr;
  }

  .nav-dropdown {
    display: block;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 8px;
    min-width: 0;
    background: var(--surface);
    display: none;
  }

  .nav.mobile-open .dropdown-menu,
  .nav.mobile-open .nav-dropdown {
    display: block;
  }
}

/* ==============================================
 * SERVICE PAGE SHARED COMPONENTS
 * geo.php · agentes-ia.php · formacion-ia.php
 * ============================================== */

/* Eyebrow — dot style (overrides pill from base .eyebrow) */
.service-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.service-page .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(255,122,0,0.14);
  flex-shrink: 0;
}

/* Brand X highlight */
.brand-x { color: var(--primary); }

/* Hero proof tags */
.service-page .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-start;
}

/* Dark statement strip */
.svc-dark-strip {
  background: var(--dark);
  color: #fff;
  padding: 58px 0;
  text-align: center;
}
.svc-dark-strip .strip-lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.svc-dark-strip .strip-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

/* Checklist with orange ticks */
.geo-why-points {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.geo-why-points li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 600;
}
.geo-why-points li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

/* FAQ icon */
.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}
.faq-item.active .faq-icon {
  background: rgba(255,122,0,0.12);
  color: var(--primary);
  transform: rotate(45deg);
}

/* Pillars grid — 6 cards, 3 cols */
.geo-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.geo-pillar {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.geo-pillar::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 82px; height: 82px;
  border-radius: 0 24px 0 100%;
  background: rgba(255,122,0,0.08);
}
.geo-pillar:nth-child(2n)::after,
.geo-pillar:nth-child(5)::after { background: rgba(123,97,255,0.08); }
.geo-pillar-icon { font-size: 28px; margin-bottom: 14px; }
.geo-pillar h3 { margin: 0 0 10px; font-size: 1.28rem; letter-spacing: -0.03em; }
.geo-pillar p { margin: 0; color: var(--muted); line-height: 1.75; }

/* Method cards — 4-col process */
.geo-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.geo-method-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.geo-method-card::before {
  content: attr(data-step);
  position: absolute;
  top: -10px; right: 18px;
  font-family: 'Fraunces', serif;
  font-size: 76px;
  line-height: 1;
  color: rgba(13,13,13,0.04);
  letter-spacing: -0.05em;
}
.geo-method-card h3 { margin: 0 0 10px; font-size: 1.28rem; letter-spacing: -0.03em; }
.geo-method-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.geo-step-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(123,97,255,0.16));
  font-size: 22px;
}
.geo-method-time {
  display: block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* Service cards — 3-col catalog */
.geo-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.geo-service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.geo-service-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 22px 60px rgba(255,122,0,0.1);
}
.geo-service-top,
.geo-service-bottom { padding: 30px; }
.geo-service-divider { height: 1px; background: var(--line); margin: 0 30px; }
.geo-service-card h3 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: -0.03em;
}
.geo-service-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.geo-service-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.geo-service-card li { display: flex; gap: 10px; line-height: 1.55; }
.geo-service-card li::before {
  content: "✓";
  width: 20px; height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.geo-service-card.featured li::before { background: var(--primary); color: #fff; }

/* Badges */
.geo-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.geo-badge.soft { background: var(--primary-light); color: var(--primary); }
.geo-badge.strong { background: var(--primary); color: #fff; }
.geo-badge.alt { background: var(--secondary-light); color: var(--secondary); }

/* Dark CTA section */
.geo-dark-cta { background: var(--dark); color: #fff; }
.geo-dark-cta .section-head h2,
.geo-dark-cta h2,
.geo-dark-cta h3 { color: #fff; }
.geo-dark-cta .section-head p,
.geo-dark-cta p { color: rgba(255,255,255,0.72); }
.geo-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.geo-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}
.geo-dark-cta .geo-contact-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.geo-dark-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.geo-dark-proof-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.geo-dark-cta .btn-group { margin-top: 26px; margin-bottom: 0; }
.geo-dark-cta .btn-group .btn { min-width: 280px; justify-content: center; }

/* Chat card — Empieza hoy */
.geo-cta-chat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}
.geo-cta-chat-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  top: -80px; right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,0.22) 0%, rgba(255,122,0,0) 72%);
  pointer-events: none;
}
.geo-cta-chat-card::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  bottom: -70px; left: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,97,255,0.18) 0%, rgba(123,97,255,0) 72%);
  pointer-events: none;
}
.geo-cta-chat-head { position: relative; z-index: 1; margin-bottom: 24px; }
.geo-cta-chat-kickers { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.geo-cta-chat-kickers span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 700;
}
.geo-cta-chat-card h3 { margin: 0 0 12px; font-size: clamp(1.6rem, 2.5vw, 2rem); letter-spacing: -0.04em; }
.geo-cta-chat-card p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,0.76); line-height: 1.72; }
.geo-cta-chat-window {
  position: relative; z-index: 1;
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(9,9,11,0.56);
  backdrop-filter: blur(10px);
}
.geo-cta-chat-top {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.geo-cta-chat-top i { display: block; width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.geo-cta-chat-top i:nth-child(1) { background: rgba(255,122,0,0.45); }
.geo-cta-chat-top i:nth-child(2) { background: rgba(255,255,255,0.18); }
.geo-cta-chat-top i:nth-child(3) { background: rgba(123,97,255,0.38); }
.geo-cta-chat-top span { margin-left: 8px; color: rgba(255,255,255,0.68); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.geo-cta-chat-body { padding: 18px; display: grid; gap: 14px; }
.geo-chat-bubble,
.geo-chat-response,
.geo-chat-input { border-radius: 18px; padding: 16px 18px; }
.geo-chat-bubble { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); color: #fff; line-height: 1.65; }
.geo-chat-bubble strong,
.geo-chat-response strong,
.geo-chat-input strong { color: #fff; }
.geo-chat-label { display: inline-flex; align-items: center; margin-bottom: 10px; color: rgba(255,178,138,0.92); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.geo-chat-response { background: linear-gradient(180deg, rgba(255,122,0,0.14) 0%, rgba(255,122,0,0.08) 100%); border: 1px solid rgba(255,122,0,0.22); color: rgba(255,255,255,0.84); }
.geo-chat-metrics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.geo-chat-metrics span { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10); color: rgba(255,255,255,0.92); font-size: 12px; font-weight: 700; }
.geo-chat-input { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.60); font-size: 14px; }
.geo-chat-input .geo-send { width: 42px; height: 42px; flex-shrink: 0; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; font-size: 18px; font-weight: 800; box-shadow: 0 10px 24px rgba(255,122,0,0.22); }
.geo-chat-footnote { position: relative; z-index: 1; margin-top: 16px; color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.6; }

/* Contact section */
.geo-contact-section { background: var(--surface); }
.geo-contact-section .geo-contact-light-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.geo-contact-info-card,
.geo-contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}
.geo-contact-info-card h3,
.geo-contact-form-card h3 { margin: 0 0 12px; font-size: 1.4rem; letter-spacing: -0.03em; }
.geo-contact-info-card p,
.geo-contact-form-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.geo-contact-feature-list { display: grid; gap: 14px; margin-top: 24px; }
.geo-contact-feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.geo-contact-feature-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,122,0,0.12);
  color: var(--primary);
  font-size: 20px;
}
.geo-contact-feature-item strong { display: block; margin-bottom: 4px; color: var(--dark); }
.geo-contact-form { display: grid; gap: 16px; margin-top: 24px; }
.geo-contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.geo-contact-form-group { display: grid; gap: 8px; }
.geo-contact-form-group label { font-size: 13px; font-weight: 700; color: var(--dark); }
.geo-contact-form-group input,
.geo-contact-form-group select,
.geo-contact-form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--dark);
  padding: 14px 16px;
  font: inherit;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.geo-contact-form-group input:focus,
.geo-contact-form-group select:focus,
.geo-contact-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,122,0,0.12);
}
.geo-contact-form-group textarea { min-height: 120px; resize: vertical; }
.geo-contact-form-note { font-size: 13px; color: var(--muted); margin-top: 8px; }

@media (max-width: 1100px) {
  .geo-pillars-grid,
  .geo-method-grid,
  .geo-service-cards,
  .geo-cta-grid,
  .geo-contact-section .geo-contact-light-grid,
  .geo-contact-form-row { grid-template-columns: 1fr; }
}
