/* ========================================
   TiendaChat — Landing Stylesheet v2
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Core palette */
  --primary:        #01867b;
  --primary-dark:   #014040;
  --primary-light:  #038C73;
  --primary-hover:  #016e66;
  --accent:         #a2d9e0;
  --accent-light:   #D8F0F2;
  --green-soft:     #E5F2D0;
  --gray-blue:      #A8B5BF;

  /* Backgrounds */
  --bg-page:        #f8fcff;
  --bg-section-alt: #E5F2D0;
  --bg-section-2:   #D8F0F2;
  --bg-dark:        #014040;

  /* Text */
  --text-dark:      #013030;
  --text-body:      #3a5655;
  --text-light:     #6b8a88;
  --text-muted:     #A8B5BF;
  --text-white:     #ffffff;

  /* Borders & shadows */
  --border:         rgba(1, 134, 123, 0.12);
  --border-light:   rgba(162, 217, 224, 0.3);
  --shadow-xs:      0 1px 4px rgba(1, 64, 64, 0.06);
  --shadow-sm:      0 2px 12px rgba(1, 64, 64, 0.08);
  --shadow-md:      0 8px 32px rgba(1, 64, 64, 0.10);
  --shadow-lg:      0 20px 60px rgba(1, 64, 64, 0.12);
  --shadow-glow:    0 0 0 3px rgba(1, 134, 123, 0.18);

  /* Geometry */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-full: 999px;

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:   0.3s;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  line-height: 1.65;
  background: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; }

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

section { padding: 96px 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.badge-primary {
  background: rgba(1, 134, 123, 0.1);
  color: var(--primary);
  border: 1px solid rgba(1, 134, 123, 0.2);
}
.badge-accent {
  background: rgba(162, 217, 224, 0.3);
  color: var(--primary-dark);
  border: 1px solid rgba(162, 217, 224, 0.5);
}
.badge-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(1, 134, 123, 0.3);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(1, 134, 123, 0.35);
}

.btn-dark {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}
.btn-dark:hover {
  background: #012e2e;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

/* Section header */
.section-header {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; margin: 0; }

.section-header.left { text-align: left; margin: 0 0 48px; }

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(1, 134, 123, 0.12);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.header.scrolled {
  background: rgba(248, 252, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(1, 64, 64, 0.08), var(--shadow-sm);
}

/* ── On-dark: header over dark page-header (inner pages) ── */
.header.on-dark:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}
.header.on-dark:not(.scrolled) .nav-menu > li > a {
  color: rgba(255, 255, 255, 0.88);
}
.header.on-dark:not(.scrolled) .nav-menu > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.header.on-dark:not(.scrolled) .nav-menu > li > a.active {
  color: white;
}
.header.on-dark:not(.scrolled) .nav-menu > li.has-dropdown > a i {
  opacity: 0.7;
}
.header.on-dark:not(.scrolled) .nav-toggle span {
  background: rgba(255, 255, 255, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img { height: 36px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-menu > li > a:hover { color: var(--primary); background: rgba(1, 134, 123, 0.07); }
.nav-menu > li > a.active {color: #01867b;}

.nav-menu > li.has-dropdown > a i { transition: transform 0.25s var(--ease); }
.nav-menu > li.has-dropdown:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  padding: 8px;
  padding-top: 14px; /* includes transparent bridge so hover doesn't break */
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  list-style: none;
}
/* Transparent bridge to cover gap between trigger and dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
}
.nav-dropdown li a:hover { color: var(--primary); background: rgba(1, 134, 123, 0.07); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  margin-left: 12px;
}
.nav-toggle:hover { background: rgba(1, 134, 123, 0.07); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg-page);
}

/* Decorative background mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 70% 40%, rgba(162, 217, 224, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 600px 600px at 20% 80%, rgba(229, 242, 208, 0.3) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 90% 10%, rgba(1, 134, 123, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric decoration */
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(162, 217, 224, 0.35);
  pointer-events: none;
}

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

.hero-content { position: relative; z-index: 2; min-width: 0; }
.hero-content .badge { margin-bottom: 20px; }

.hero-content h1 {
  margin-bottom: 6px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.hero-content h1 span {
  display: block;
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Rotating word */
.hero-rotativa-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hero-rotativa-prefix {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.palabra-dinamica {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
  min-width: 220px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.animar-salida { opacity: 0; transform: translateY(-12px); }
.animar-entrada { opacity: 0; transform: translateY(12px); }
.visible { opacity: 1 !important; transform: translateY(0) !important; }

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-mockup {
  position: relative;
  z-index: 2;
  width: 280px;
  background: #fff;
  border-radius: 44px;
  box-shadow: 0 30px 80px rgba(1, 64, 64, 0.18), 0 0 0 10px rgba(162, 217, 224, 0.25);
  overflow: hidden;
  border: 2px solid rgba(162, 217, 224, 0.4);
}

.phone-screen {
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.phone-header {
  padding: 20px 20px 16px;
  color: #fff;
}
.phone-header h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.phone-header p { font-size: 0.75rem; opacity: 0.8; color: #fff; margin: 0; }

.phone-content {
  background: #fff;
  padding: 14px 16px 20px;
  min-height: 200px;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.phone-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fcff;
  margin-bottom: 8px;
  transition: var(--transition);
}
.phone-menu-item:last-child { margin-bottom: 0; }
.item-color {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
}
.item-info h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.item-info span { font-size: 0.75rem; color: var(--primary); font-weight: 600; }

/* Floating cards */
.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(162, 217, 224, 0.4);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}
.hero-floating-card.card-1 { left: -8px; top: 20%; animation-delay: 0s; }
.hero-floating-card.card-2 { right: -30px; bottom: 25%; animation-delay: 1.8s; }

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.card-icon.green { background: rgba(1, 134, 123, 0.12); color: var(--primary); }
.card-icon.purple { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.card-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

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

/* Hero ring decoration */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(162, 217, 224, 0.3);
  pointer-events: none;
}

/* ============================================================
   BUSINESS STRIP — marquee
   ============================================================ */
.business-strip {
  background: var(--primary-dark);
  padding: 14px 0;
  overflow: hidden;
}

/* Marquee keyframes */
@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.strip-track {
  overflow: hidden;
  width: 100%;
}
.strip-track + .strip-track { margin-top: 8px; }

.strip-track-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  animation: marquee-ltr 28s linear infinite;
}
.strip-track.reverse .strip-track-inner {
  animation: marquee-rtl 28s linear infinite;
}

/* Pause on hover */
.business-strip:hover .strip-track-inner { animation-play-state: paused; }

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.strip-item:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Desktop: show only one row (already in default) */
/* Mobile: second row visible by default since it's in HTML */

/* ============================================================
   FEATURES SECTION
   ============================================================ */
   
   .ic-box.ic-box-sm {
    padding: 7px 15px;
    border-radius: 10px;
}

.features-section {
  background: var(--bg-page);
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(229, 242, 208, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.feature-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(162, 217, 224, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 134, 123, 0.25);
}
.feature-card:hover::before { opacity: 1; }

.feature-card .ic-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(1, 134, 123, 0.12), rgba(162, 217, 224, 0.2));
  color: var(--primary);
  transition: transform 0.3s var(--ease-spring);
}
.feature-card:hover .ic-box { transform: scale(1.1) rotate(-3deg); }
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feature-card p { font-size: 0.88rem; color: var(--text-light); margin: 0 0 16px; line-height: 1.6; }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s var(--ease);
}
.feature-link:hover { gap: 10px; }

/* Featured card (spans 2 cols) */
.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #025151 100%);
  color: #fff;
  border-color: transparent;
}
.feature-card.featured .ic-box {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
}
.feature-card.featured h4 { color: #fff; }
.feature-card.featured p { color: rgba(255,255,255,0.7); }
.feature-card.featured .feature-link { color: var(--accent); }
.feature-card.featured::before { background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0.3)); }

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps-section {
  background: var(--bg-section-alt);
  position: relative;
  overflow: hidden;
}
.steps-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(1, 134, 123, 0.06);
  pointer-events: none;
}
.steps-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(162, 217, 224, 0.2);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(33.33% / 2 + 28px);
  right: calc(33.33% / 2 + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(162, 217, 224, 0.4);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(1, 134, 123, 0.3);
}
.step-card h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-dark); }
.step-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ============================================================
   CONTENT SPLIT SECTIONS
   ============================================================ */
.content-section { background: var(--bg-page); }
.content-section.alt { background: var(--bg-section-2); }

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-split.reverse .content-text { order: 2; }
.content-split.reverse .content-image { order: 1; }

.content-text .badge { margin-bottom: 16px; }
.content-text h2 { margin-bottom: 16px; letter-spacing: -0.02em; }
.content-text > p { color: var(--text-light); font-size: 1rem; margin-bottom: 24px; }
.content-text .btn { margin-top: 8px; }

/* Content image / mockup area */
.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
}
.mockup-card-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.orders-card { max-width: 320px; }
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.8rem;
}
.order-row:last-child { margin-bottom: 0; }
.order-row.pending { background: #fef3c7; }
.order-row.preparing { background: #dcfce7; }
.order-row.ready { background: #dbeafe; }
.order-row strong { color: var(--text-dark); font-weight: 600; }

.status-pill {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pill.pending { background: #f59e0b; color: #fff; }
.status-pill.preparing { background: var(--primary); color: #fff; }
.status-pill.ready { background: #3b82f6; color: #fff; }

/* ============================================================
   EXTRAS HIGHLIGHTS
   ============================================================ */
.extras-section { background: var(--bg-page); }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.extra-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.extra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(1, 134, 123, 0.25);
}
.extra-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.extra-card h4 { font-size: 0.9rem; margin-bottom: 6px; color: var(--text-dark); }
.extra-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), #025050);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg-page); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-content .badge { margin-bottom: 16px; }
.faq-content h2 { margin-bottom: 14px; }
.faq-content p { color: var(--text-light); margin-bottom: 24px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item.active {
  border-color: rgba(1, 134, 123, 0.3);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  gap: 12px;
  user-select: none;
  transition: color 0.2s;
}
.faq-item.active .faq-question { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(1, 134, 123, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(1, 134, 123, 0.25);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(162, 217, 224, 0.08);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content .badge { margin-bottom: 20px; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
  padding-bottom: 0;
  position: relative;
  border-top: 1px solid rgba(1, 134, 123, 0.25);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-grid h5 {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* Desktop: one continuous row, faster speed */
@media (min-width: 769px) {
  .strip-track.reverse { display: none; }
  .strip-track-inner { animation-duration: 35s; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.featured { grid-column: span 2; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 72px 0; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + 20px) 24px 40px;
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    padding: 14px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .nav-menu > li > a:hover { background: transparent; color: var(--accent); }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: var(--radius-sm);
    padding: 4px 0 4px 16px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s, max-height 0.3s;
  }
  .nav-dropdown.open {
    opacity: 1;
    max-height: 400px;
    pointer-events: auto;
  }
  .nav-dropdown li a { color: rgba(255,255,255,0.7); }
  .nav-dropdown li a:hover { color: var(--accent); background: transparent; }

  /* Hero */
  .hero { min-height: auto; align-items: flex-start; padding-top: var(--nav-h); padding-bottom: 40px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; text-align: center; padding-top: 24px; padding-bottom: 24px; }
  .hero-content .badge { margin: 0 auto 20px; }
  .hero-subtitle { margin: 0 auto 28px; font-size: 0.97rem; }
  .hero-rotativa-wrap { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .palabra-dinamica { min-width: 180px; text-align: center; font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .hero-rotativa-prefix { font-size: clamp(1.2rem, 5vw, 1.6rem); }

  .hero-visual { padding: 0 20px; }
  .hero-phone-mockup { width: 240px; }
  .hero-floating-card.card-1 { left: -10px; top: 15%; }
  .hero-floating-card.card-2 { right: -10px; bottom: 20%; }

  /* Business strip */
  .strip-label { display: none; }
  .strip-items { gap: 6px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid::before { display: none; }

  /* Content split */
  .content-split { grid-template-columns: 1fr; gap: 40px; }
  .content-split.reverse .content-text { order: 1; }
  .content-split.reverse .content-image { order: 2; }
  .content-image { order: -1; }

  /* Extras */
  .extras-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }

  /* Section header */
  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Floating cards smaller */
  .hero-floating-card { padding: 8px 12px; font-size: 0.75rem; }
  .card-icon { width: 28px; height: 28px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-phone-mockup { width: 210px; }
  .extras-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-floating-card { display: none; }
  .hero-buttons .btn { width: 100%; }
}

/* ============================================================
   PAGE HEADER — inner pages
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #012e2e 100%);
  padding: calc(var(--nav-h) + 52px) 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2301867b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1,134,123,.5), transparent);
}
.page-header h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   MODE FEATURES GRID — detail feature pages
   ============================================================ */
.mode-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mode-feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.mode-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(1,134,123,0.03), rgba(162,217,224,0.05));
  opacity: 0;
  transition: opacity 0.3s;
}
.mode-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(1,134,123,0.2);
}
.mode-feature-card:hover::before { opacity: 1; }
.mode-feature-card .ic-box { margin-bottom: 16px; }
.mode-feature-card h4 { margin-bottom: 8px; font-size: 0.98rem; }
.mode-feature-card p { font-size: 0.86rem; color: var(--text-light); margin: 0; line-height: 1.65; }

@media (max-width: 1024px) { .mode-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .mode-features { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING COMPONENTS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(1,134,123,0.2);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(1,134,123,0.1), var(--shadow-lg);
}
.pricing-card.featured:hover { transform: translateY(-6px); }

.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 24px 0 4px;
}
.pricing-price .currency {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}
.pricing-price .amount {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-price .period {
  font-size: 0.85rem;
  color: var(--text-light);
}
.annual-price {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.pricing-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 4px;
}
.pricing-badge-nocomm {
  display: inline-block;
  background: var(--green-soft, #e6f7f0);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.pricing-badge-currency {
  display: inline-block;
  background: var(--bg-section-alt, #f5f7fa);
  color: var(--text-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.pricing-prefix {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}

.pricing-limits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-limits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-body);
}
.pricing-limits li i {
  color: var(--primary);
  font-size: 0.95rem;
  width: 16px;
  flex-shrink: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-body);
}
.pricing-features li.disabled { color: var(--text-muted); }
.pricing-features .check {
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}
.pricing-features .check.yes { color: var(--primary); }
.pricing-features .check.no { color: var(--text-muted); }

.pricing-card .btn { margin-top: auto; text-align: center; justify-content: center; }

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
}
.pricing-save {
  background: var(--green-soft);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table thead th {
  background: var(--primary-dark);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
}
.comparison-table thead th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}
.comparison-table thead th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}
.comparison-table tbody tr:nth-child(odd) { background: var(--bg-page); }
.comparison-table tbody tr:nth-child(even) { background: #fff; }
.comparison-table tbody tr:hover { background: rgba(1,134,123,0.04); }
.comparison-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  vertical-align: middle;
}
.comparison-table td:first-child { font-weight: 500; color: var(--text-dark); }
.comparison-table td:not(:first-child) { text-align: center; }
.check-yes { color: var(--primary); font-weight: 700; }
.check-no { color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(1,134,123,0.2);
}
.contact-info-card h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-dark);
}
.contact-info-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Sora', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-page);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,134,123,0.1);
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-form { padding: 24px; }
}

/* ============================================================
   ORDER FLOW / STEPS LIST
   ============================================================ */
.order-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 52px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(1,134,123,0.1));
}
.flow-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(1,134,123,0.3);
  position: relative;
  z-index: 1;
}
.flow-step h5 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.flow-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   CONTENT IMAGE PLACEHOLDER (feature pages)
   ============================================================ */
.content-image-placeholder {
  background: linear-gradient(135deg, var(--bg-section-2), var(--green-soft));
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}
.content-image-placeholder i {
  font-size: 100px;
  color: var(--primary);
  opacity: 0.25;
}

/* ============================================================
   SECTION bg aliases (for inline style compatibility)
   ============================================================ */
.bg-soft { background: var(--bg-section-alt); }
.bg-blue { background: var(--bg-section-2); }
.bg-white { background: #fff; }
.bg-dark { background: var(--bg-dark); }
