/* ============================================================
   ECOMGROWTHIA — DESIGN SYSTEM GLOBAL
   Paleta, tipografías y componentes compartidos en todo el sitio
   ============================================================ */

/* === TOKENS === */
:root {
  --c-bg:          #050B14;
  --c-bg-2:        #071A33;
  --c-text:        #F6F8FC;
  --c-text-muted:  rgba(246,248,252,0.65);
  --c-text-dim:    rgba(246,248,252,0.45);
  --c-accent:      #38BDF8;
  --c-btn:         #0B5FFF;
  --c-error:       #ef4444;
  --c-border:      rgba(56,189,248,0.15);
  --c-border-dim:  rgba(56,189,248,0.08);
  --c-card:        rgba(7,26,51,0.5);
  --c-card-hover:  rgba(7,26,51,0.9);
  --f-head:        'Space Grotesk', sans-serif;
  --f-body:        'Inter', sans-serif;
  --f-logo:        'Manrope', sans-serif;
  --nav-h:         72px;
  --r-sm:          10px;
  --r-md:          14px;
  --r-lg:          16px;
  --r-xl:          20px;
  --shadow-btn:    0 10px 30px -8px rgba(11,95,255,0.6);
  --shadow-card:   0 20px 60px -20px rgba(0,0,0,0.5);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--c-text);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0 100px;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 50%, var(--c-bg) 100%);
}

.section--dark {
  background: linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(56,189,248,0.3);
  border-radius: 100px;
  background: rgba(11,95,255,0.08);
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

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

.h1 { font-size: clamp(36px, 6vw, 68px); margin-bottom: 24px; }
.h2 { font-size: clamp(28px, 4.5vw, 48px); margin-bottom: 20px; }
.h3 { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 12px; }

.h1 em, .h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-btn) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* === DIVIDER === */
.divider {
  display: block;
  width: min(680px, 80%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0) 10%, rgba(56,189,248,0.55) 50%, rgba(56,189,248,0) 90%, transparent 100%);
  border: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(5,11,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border-dim);
  display: flex;
  align-items: center;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-logo);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-text);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.navbar__logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 4px 14px -2px rgba(11,95,255,0.5);
}

.navbar__logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 10px rgba(56,189,248,0.8);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--c-text);
  background: rgba(56,189,248,0.08);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--c-btn);
  color: var(--c-text);
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-sm);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.3), 0 6px 20px -4px rgba(11,95,255,0.5);
  margin-left: 8px;
}

.navbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.5), 0 10px 28px -4px rgba(11,95,255,0.7);
}

/* Mobile nav */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(5,11,20,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border-dim);
  padding: 20px 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.navbar__mobile.open { display: flex; }

.navbar__mobile .navbar__link {
  padding: 14px 16px;
  font-size: 16px;
  border-radius: var(--r-md);
}

.navbar__mobile .navbar__cta {
  margin-left: 0;
  margin-top: 8px;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11,95,255,0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(56,189,248,0.12), transparent 70%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--c-text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn--primary {
  background: var(--c-btn);
  color: var(--c-text);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.3), var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.5), 0 16px 40px -8px rgba(11,95,255,0.8), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--primary svg { transition: transform 0.3s ease; }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn--ghost:hover {
  background: rgba(56,189,248,0.06);
  border-color: rgba(56,189,248,0.3);
}

.btn--accent {
  background: var(--c-accent);
  color: var(--c-bg);
  font-weight: 700;
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(56,189,248,0.6);
}

.btn--lg { padding: 18px 40px; font-size: 16px; }
.btn--full { width: 100%; }

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

/* ============================================================
   CARDS
   ============================================================ */
.card {
  padding: 28px;
  background: var(--c-card);
  border: 1px solid var(--c-border-dim);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: rgba(56,189,248,0.25);
  transform: translateY(-3px);
}

/* Spotlight border effect */
.card--spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    300px circle at var(--mx, -300px) var(--my, -300px),
    rgba(56,189,248,0.6),
    rgba(56,189,248,0.6) 35%,
    rgba(56,189,248,0.39) 55%,
    transparent 75%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--spotlight, 0);
  transition: opacity 0.5s ease;
}

@media not all and (hover: hover) {
  .card--spotlight::after { display: none; }
}

.card--featured {
  border-color: rgba(56,189,248,0.5);
  background: linear-gradient(180deg, rgba(11,95,255,0.12), var(--c-card));
  box-shadow: 0 20px 60px -20px rgba(11,95,255,0.4);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(11,95,255,0.2), rgba(56,189,248,0.1));
  border: 1px solid rgba(56,189,248,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.card__title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.card__desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* ============================================================
   PAIN GRID
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(7,26,51,0.6);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
}

.pain-item:hover {
  border-color: rgba(56,189,248,0.3);
  background: var(--c-card-hover);
  transform: translateY(-2px);
}

.pain-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239,68,68,0.15);
  color: var(--c-error);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  margin-top: 2px;
}

.pain-text {
  color: rgba(246,248,252,0.85);
  font-size: 15px;
  line-height: 1.5;
}

/* ============================================================
   STEPS (HOW IT WORKS)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.step-card {
  padding: 28px 24px;
  background: rgba(11,95,255,0.05);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--r-lg);
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(11,95,255,0.12);
  border-color: rgba(56,189,248,0.5);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.step-title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* ============================================================
   BEFORE / AFTER TABLE
   ============================================================ */
.ba-table {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: rgba(7,26,51,0.4);
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(56,189,248,0.1);
}

.ba-row:last-child { border-bottom: none; }

.ba-row--header { background: rgba(11,95,255,0.1); }

.ba-cell {
  padding: 18px 22px;
  font-size: 15px;
  color: rgba(246,248,252,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ba-cell--label {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
}

.ba-cell--before {
  color: rgba(246,248,252,0.45);
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.4);
}

.ba-cell--after {
  background: rgba(11,95,255,0.05);
  color: var(--c-text);
  font-weight: 500;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-4px); }

.service-card--featured {
  border-color: rgba(56,189,248,0.5);
  background: linear-gradient(180deg, rgba(11,95,255,0.12), var(--c-card));
  box-shadow: 0 20px 60px -20px rgba(11,95,255,0.4);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 5px 14px;
  background: var(--c-accent);
  color: var(--c-bg);
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__name {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.service-card__tagline {
  font-size: 14px;
  color: var(--c-accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.service-card__desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card__price {
  font-family: var(--f-head);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-btn) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.service-card__price-sub {
  font-size: 13px;
  color: var(--c-text-dim);
  margin-bottom: 20px;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  padding: 10px 0;
  color: rgba(246,248,252,0.85);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(56,189,248,0.08);
}

.feature-list li:last-child { border-bottom: none; }

.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(56,189,248,0.15);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.service-card .btn { margin-top: auto; }

/* ============================================================
   METRICS
   ============================================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.metric {
  text-align: center;
  padding: 32px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}

.metric__num {
  font-family: var(--f-head);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-btn) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.metric__label {
  font-size: 14px;
  color: var(--c-text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(11,95,255,0.3), transparent 60%),
    linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__sub {
  font-size: 17px;
  color: rgba(246,248,252,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: rgba(7,26,51,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}

.form-title {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  text-align: center;
}

.form-sub {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

.field { margin-bottom: 20px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 500;
  color: rgba(246,248,252,0.8);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(5,11,20,0.6);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--c-accent);
  background: rgba(5,11,20,0.9);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
}

input::placeholder,
textarea::placeholder {
  color: rgba(246,248,252,0.3);
}

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

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2338BDF8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-dim);
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================================
   OBJECTIONS (SÍ / NO)
   ============================================================ */
.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.obj-col {
  padding: 32px;
  border-radius: 18px;
}

.obj-col--no {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}

.obj-col--yes {
  background: rgba(11,95,255,0.08);
  border: 1px solid rgba(56,189,248,0.3);
}

.obj-title {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.obj-col--no .obj-title { color: var(--c-error); }
.obj-col--yes .obj-title { color: var(--c-accent); }

.obj-list li {
  padding: 10px 0;
  color: rgba(246,248,252,0.85);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(56,189,248,0.06);
}

.obj-list li:last-child { border-bottom: none; }

.obj-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 4px;
  display: inline-block;
}

.obj-col--no .obj-list li::before {
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
}

.obj-col--yes .obj-list li::before {
  background: var(--c-accent);
}

/* ============================================================
   PILLARS / METHODOLOGY
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.pillar {
  text-align: center;
  padding: 32px 24px;
  background: rgba(11,95,255,0.05);
  border: 1px solid rgba(56,189,248,0.15);
  border-radius: var(--r-lg);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: rgba(11,95,255,0.1);
  border-color: rgba(56,189,248,0.4);
  transform: translateY(-4px);
}

.pillar__num {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-btn) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.pillar__title {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
}

.pillar__desc {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ============================================================
   PAYMENT OPTIONS BLOCK (Checkout)
   ============================================================ */
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(7,26,51,0.8);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-badge:hover,
.payment-badge.selected {
  border-color: var(--c-accent);
  background: rgba(56,189,248,0.08);
}

.payment-badge input[type="radio"] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  accent-color: var(--c-accent);
}

.checkout-summary {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border-dim);
}

.summary-line:last-of-type { border-bottom: none; }

.summary-label { font-size: 14px; color: var(--c-text-muted); }
.summary-value { font-family: var(--f-head); font-weight: 600; color: var(--c-text); }
.summary-value--accent { color: var(--c-accent); }

.summary-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total-label {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
}

.summary-total-value {
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-btn) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info {
  background: rgba(7,26,51,0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border-dim);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(11,95,255,0.15);
  border: 1px solid rgba(56,189,248,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  font-family: var(--f-head);
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
}

.contact-info-value a {
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-info-value a:hover { opacity: 0.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-bg);
  border-top: 1px solid rgba(56,189,248,0.1);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .navbar__logo {
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col-title {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--c-accent); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(56,189,248,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--c-text-dim);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { animation: fadeUp 0.8s ease-out backwards; }
.anim-1 { animation-delay: 0.1s; }
.anim-2 { animation-delay: 0.2s; }
.anim-3 { animation-delay: 0.3s; }
.anim-4 { animation-delay: 0.4s; }
.anim-5 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-accent  { color: var(--c-accent); }
.text-muted   { color: var(--c-text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: 13px; }
.text-xs      { font-size: 12px; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mt-40        { margin-top: 40px; }
.mt-56        { margin-top: 56px; }
.mb-8         { margin-bottom: 8px; }
.mb-16        { margin-bottom: 16px; }
.mb-24        { margin-bottom: 24px; }
.mb-40        { margin-bottom: 40px; }
.strong-phrase {
  text-align: center;
  font-family: var(--f-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: var(--c-text);
  max-width: 700px;
  margin: 56px auto 0;
  line-height: 1.35;
}

.strong-phrase strong { color: var(--c-accent); }

/* ============================================================
   PHONE FIELD WITH COUNTRY PREFIX
   ============================================================ */
.phone-group {
  display: flex;
  gap: 0;
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.phone-group:focus-within {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
}

.phone-group select {
  border: none;
  border-right: 1px solid rgba(56,189,248,0.2);
  border-radius: 0;
  padding: 14px 10px 14px 14px;
  background: rgba(5,11,20,0.8);
  color: var(--c-text);
  font-size: 14px;
  width: 90px;
  box-shadow: none;
  outline: none;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2338BDF8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
}

.phone-group select:focus {
  background-color: rgba(5,11,20,0.95);
  box-shadow: none;
}

.phone-group input[type="tel"] {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  box-shadow: none;
  outline: none;
}

.phone-group input[type="tel"]:focus {
  box-shadow: none;
  border-color: transparent;
}

/* === FORM VALIDATION === */
.field-error {
  display: none;
  font-size: 12px;
  color: var(--c-error);
  margin-top: 6px;
  align-items: center;
  gap: 5px;
}

.field-error.visible { display: flex; }

.field--invalid input,
.field--invalid textarea,
.field--invalid select,
.field--invalid .phone-group {
  border-color: rgba(239,68,68,0.6) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { --nav-h: 64px; }
  .section { padding: 60px 0 72px; }
  .hero { padding: 72px 0 88px; }
  .section-header { margin-bottom: 44px; }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .obj-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 28px 20px; }
  .checkout-summary { position: static; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}
