/* ========== VARIABLES ========== */
:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #404040;
  --ink-muted: #737373;
  --line: rgba(0, 0, 0, 0.08);
  --line-soft: rgba(0, 0, 0, 0.05);
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.08);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-legal: 'Source Sans Pro', sans-serif;

  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #ffffff;
  color-scheme: light;
}

body {
  background-color: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Background grid (sutil) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, var(--line-soft) 0px, var(--line-soft) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--line-soft) 0px, var(--line-soft) 1px, transparent 1px, transparent 40px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 150% 150% at 50% 50%, black 0%, transparent 100%);
}

/* ========== STRUCTURE ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.container-cta {
  text-align: center;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(40px, 7vw, 88px);
}

h2 {
  font-size: clamp(28px, 5vw, 56px);
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  color: var(--ink-muted);
  line-height: 1.7;
}

em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

strong {
  font-weight: 600;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

/* ========== EYEBROW ========== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.6);
}

.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* ========== SECTION ========== */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 3;
}

.section-intro {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.15);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--ink);
}

.btn-light {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.btn-light:hover {
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

/* ========== NAV ========== */
.nav-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  cursor: pointer;
}

.logo-orb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.4);
  position: relative;
  animation: orb-sonar 2.5s ease-out infinite;
}

@keyframes orb-sonar {
  0% {
    box-shadow: 0 0 0 0 var(--accent), 0 0 16px rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 0 0 0 var(--accent), 0 0 16px rgba(14, 165, 233, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px transparent, 0 0 16px rgba(14, 165, 233, 0.4);
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-container {
    gap: 24px;
  }

  .nav-links {
    display: none;
  }
}

/* ========== HERO ========== */
.hero {
  padding: 120px 0;
  position: relative;
  z-index: 3;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.hero-headline {
  margin-bottom: 24px;
  line-height: 1.1;
}

.reveal-line {
  display: block;
  opacity: 0;
  animation: reveal-up 0.8s var(--ease-smooth) forwards;
}

.reveal-line:first-child {
  animation-delay: 0.2s;
}

.reveal-line:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero-headline {
    font-size: clamp(32px, 6vw, 48px);
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }
}

/* ========== PROBLEM SECTION ========== */
.section-problema h2 {
  max-width: 600px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.card {
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  transition: width var(--transition-slow);
}

.card:hover .card-bar {
  width: 60px;
}

.card h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
}

.highlight-box {
  max-width: 700px;
  padding: 40px;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
}

.highlight-box p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.highlight-strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
}

/* ========== SERVICIOS SECTION ========== */
.section-servicios h2 {
  max-width: 600px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.servicio-card {
  padding: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.servicio-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.servicio-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.servicio-description {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.servicio-description em {
  color: var(--accent);
}

.servicio-card > p {
  margin-bottom: 24px;
  font-size: 15px;
}

.servicio-list {
  list-style: none;
  margin-bottom: 24px;
}

.servicio-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink-muted);
}

.servicio-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}

.servicio-metrics {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-muted);
}

.servicio-metrics strong {
  color: var(--ink);
  font-size: 14px;
}

@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========== CÓMO FUNCIONA SECTION ========== */
.section-funciona h2 {
  max-width: 600px;
}

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.paso {
  position: relative;
}

.paso-numero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.paso-numero span:first-child {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--ink);
}

.dot-accent {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.paso:nth-child(2) .dot-accent {
  animation-delay: 0.3s;
}

.paso:nth-child(3) .dot-accent {
  animation-delay: 0.6s;
}

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

.paso h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
}

.paso p {
  font-size: 15px;
}

.diferenciador-box {
  max-width: 700px;
  padding: 48px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.diferenciador-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px);
  background-size: 40px 40px;
  pointer-events: none;
}

.diferenciador-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.diferenciador-box p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.diferenciador-box strong {
  color: var(--accent);
}

/* ========== POSICIONAMIENTO SECTION ========== */
.diferenciadores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.diferenciador-card {
  padding: 0;
  position: relative;
}

.diferenciador-line {
  width: 24px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
  transition: width var(--transition-slow);
}

.diferenciador-card:hover .diferenciador-line {
  width: 60px;
}

.diferenciador-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.diferenciador-card p {
  font-size: 15px;
}

/* ========== CASOS SECTION ========== */
.section-casos h2 {
  max-width: 600px;
}

.casos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.caso-card {
  padding: 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.caso-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.caso-sector {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}

.caso-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.caso-content {
  margin-bottom: 24px;
}

.caso-reto,
.caso-solucion,
.caso-resultado {
  margin-bottom: 20px;
}

.caso-reto strong,
.caso-solucion strong,
.caso-resultado strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.caso-reto p,
.caso-solucion p,
.caso-resultado p {
  font-size: 14px;
  line-height: 1.7;
}

.caso-metrics {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-muted);
}

.caso-metrics strong {
  color: var(--ink);
  font-size: 13px;
}

@media (max-width: 768px) {
  .casos-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CTA FINAL SECTION ========== */
.section-cta-final {
  background: var(--ink);
  color: var(--bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px);
  background-size: 40px 40px;
  pointer-events: none;
}

.section-cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.container-cta {
  position: relative;
  z-index: 1;
}

.h2-light {
  color: var(--bg);
}

.h2-light em {
  color: var(--accent);
}

.p-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.5);
}

.eyebrow-light .dot-pulse {
  background: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 64px 0;
  position: relative;
  z-index: 3;
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.footer-sellos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.sello {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}

.corfo-sello {
  max-width: 180px;
}

.sello-text {
  font-family: var(--font-legal);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.sello-name {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: #1d4ed8;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.sello-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8 50%, #dc2626 50%);
  border-radius: 2px;
}

.gedes-sello {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  text-align: left;
  max-width: 220px;
}

.gedes-icon {
  flex-shrink: 0;
}

.gedes-icon svg {
  display: block;
}

.gedes-text {
  flex: 1;
}

.gedes-sello .sello-name {
  font-size: 26px;
  margin-bottom: 2px;
  color: #1B2A5C;
}

.sello-subtext {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #1B2A5C;
  margin: 0;
}

.footer-legal {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.footer-legal a {
  color: var(--accent);
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* ========== SCROLL REVEALS ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.in-view {
  animation: reveal-up 0.8s var(--ease-smooth) forwards;
}

.reveal.delay-1.in-view {
  animation-delay: 0.1s;
}

.reveal.delay-2.in-view {
  animation-delay: 0.2s;
}

.reveal.delay-3.in-view {
  animation-delay: 0.3s;
}

/* ========== CURSOR CUSTOM ========== */
body[data-cursor] {
  cursor: none;
}

#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s;
  mix-blend-mode: multiply;
}

#cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s;
}

body[data-cursor] #cursor-dot[data-expand] {
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent);
  background: transparent;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav-logo {
    font-size: 16px;
  }

  .logo-orb {
    width: 20px;
    height: 20px;
  }

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

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-sellos {
    gap: 32px;
  }

  .sello {
    padding: 20px;
  }

  .gedes-sello {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(28px, 6vw, 44px);
  }

  h2 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .hero {
    padding: 64px 0;
  }

  .section {
    padding: 48px 0;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .metric-value {
    font-size: 36px;
  }

  .servicio-card,
  .card,
  .diferenciador-box {
    padding: 24px;
  }

  .highlight-box {
    padding: 24px;
  }

  .modal-content {
    width: 90% !important;
    max-width: 500px !important;
  }
}

/* ========== MODALS ========== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modal-appear 0.3s var(--ease-smooth);
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--ink);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.modal-content > p {
  margin-bottom: 32px;
}

/* WhatsApp Widget */
.whatsapp-widget-placeholder {
  padding: 24px;
  background: var(--bg-soft);
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--ink-soft);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-widget-placeholder p {
  margin-bottom: 8px;
}

.whatsapp-widget-placeholder code {
  background: var(--bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

/* Form Styles */
.form-videocall {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  resize: vertical;
  font-family: var(--font-body);
}

.modal-form {
  max-width: 500px;
}
