/* ============================================================
   NEXORA AGENCY — styles.css
   Palette: #FAFAFA · #002147 · #D4AF37 · #4B5563
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:        #000D1E;
  --bg-surface:     #001530;
  --bg-subtle:      #002147;
  --bg-footer:      #00080F;

  /* Brand */
  --primary:        #001530;
  --primary-dark:   #000D1E;
  --accent:         #C8922A;
  --accent-dark:    #A87820;

  /* Text */
  --text-heading:   #FFFFFF;
  --text-body:      #B8C8D8;
  --text-muted:     #6A85A0;
  --text-light:     #8899AA;

  /* Borders */
  --border:         rgba(255, 255, 255, 0.08);
  --border-md:      rgba(255, 255, 255, 0.13);
  --border-strong:  rgba(255, 255, 255, 0.20);
  --border-accent:  rgba(212, 175, 55, 0.35);

  /* Tints */
  --tint-primary:   rgba(255, 255, 255, 0.05);
  --tint-accent:    rgba(212, 175, 55, 0.10);

  /* Shadows */
  --shadow-sm:      0 2px 12px rgba(0, 0, 0, 0.30);
  --shadow-md:      0 6px 28px rgba(0, 0, 0, 0.35);
  --shadow-lg:      0 16px 56px rgba(0, 0, 0, 0.45);

  /* Radii */
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      14px;

  /* Transitions */
  --t:              0.22s ease;
}

/* ─────────────────────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html  { scroll-behavior: smooth; }

body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ─────────────────────────────────────────────────────────────
   3. LAYOUT
───────────────────────────────────────────────────────────── */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

/* ─────────────────────────────────────────────────────────────
   4. TYPOGRAPHY UTILITIES
───────────────────────────────────────────────────────────── */
.text-heading   { color: var(--text-heading); }
.text-body      { color: var(--text-body); }
.text-muted     { color: var(--text-muted); }
.text-light     { color: var(--text-light); }
.text-accent    { color: var(--accent-dark); }
.text-positive  { color: #15803d; font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────
   5. DECORATIVE ELEMENTS
───────────────────────────────────────────────────────────── */
.dot-grid {
  background-image: radial-gradient(rgba(0, 33, 71, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-accent) 50%, transparent 100%);
}

/* ─────────────────────────────────────────────────────────────
   6. BADGE
───────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-accent);
  background: var(--tint-accent);
  color: #FFFFFF;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────
   7. BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.btn--primary {
  padding: 14px 30px;
  background: linear-gradient(160deg, #A87820 0%, #D4A83A 45%, #C8922A 100%);
  color: #FFFFFF;
  border: 1px solid rgba(200, 146, 42, 0.6);
  box-shadow: 0 4px 20px rgba(168, 120, 32, 0.35);
  font-weight: 700;
}
.btn--primary:hover {
  background: linear-gradient(160deg, #C8922A 0%, #E2B84A 45%, #D4A03A 100%);
  box-shadow: 0 8px 30px rgba(168, 120, 32, 0.50);
  transform: translateY(-1px);
}

.btn--ghost {
  padding: 14px 30px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid var(--border-md);
}
.btn--ghost:hover {
  border-color: var(--border-accent);
  background: var(--tint-accent);
  color: var(--accent);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────────
   8. CARDS
───────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Service icon */
.svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--tint-accent);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  color: var(--accent-dark);
}
.svc-icon--lg { width: 52px; height: 52px; }
.svc-icon--sm { width: 36px; height: 36px; border-radius: var(--radius-sm); }

/* ─────────────────────────────────────────────────────────────
   9. SECTION HEADER
───────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .badge { margin-bottom: 1.25rem; }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--text-body);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   10. NAVIGATION
───────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(0, 13, 30, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-nav__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #FFFFFF;
  flex-shrink: 0;
}

.logo-wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.logo-wordmark span { color: var(--accent); }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-body);
  transition: color var(--t);
}
.nav-link:hover { color: #FFFFFF; }

.nav-mobile-toggle {
  display: none;
  padding: 8px;
  color: var(--text-body);
  transition: color var(--t);
}
.nav-mobile-toggle:hover { color: #FFFFFF; }

.nav-mobile-menu { display: none; border-top: 1px solid var(--border); }
.nav-mobile-menu.open { display: block; }

.nav-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.5rem;
}
.nav-mobile-menu__inner .nav-link { display: block; padding: 8px 0; }

/* ─────────────────────────────────────────────────────────────
   11. HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 7rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(212, 175, 55, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 90% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    var(--bg-base);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero__blob--1 {
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 400px;
  background: radial-gradient(ellipse, rgba(0, 33, 71, 0.07) 0%, transparent 70%);
}
.hero__blob--2 {
  bottom: 10%; right: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.hero__badge { margin-bottom: 2rem; }

.hero__heading {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.hero__subheading {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero__subheading strong { color: var(--text-heading); font-weight: 600; }

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.hero__trust-item svg { color: var(--accent); }

/* ─────────────────────────────────────────────────────────────
   12. STATS BAR
───────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────────
   13. PAIN POINTS
───────────────────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pain-card { padding: 1.75rem; }

.pain-card__icon {
  margin-bottom: 1.25rem;
  color: var(--accent-dark);
}

.pain-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.pain-card__body {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   14. SERVICES
───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card { padding: 2rem; }

.service-card__icon { margin-bottom: 1.25rem; }

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.service-card__body {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.feature-list li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   15. PROCESS
───────────────────────────────────────────────────────────── */
.process-wrapper { position: relative; }

.process-connector {
  position: absolute;
  top: 2.5rem;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent) 30%, var(--border-accent) 70%, transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.process-step__box {
  width: 5rem; height: 5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  position: relative;
}

.process-step__number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.process-step__body {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   16. PORTFOLIO
───────────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pcard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t), transform 0.3s ease, box-shadow 0.3s ease;
}
.pcard:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pcard__header {
  height: 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.pcard__header--aura  { background: linear-gradient(135deg, #012B5E, #013878); }
.pcard__header--forja { background: linear-gradient(135deg, #012550, #013060); }
.pcard__header--noma  { background: linear-gradient(135deg, rgba(212,175,55,.15), #012B5E); }

.pcard__logo {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pcard__logo--aura {
  background: linear-gradient(135deg, #FFFFFF, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pcard__logo--forja { color: #FFFFFF; }
.pcard__logo--noma  { color: var(--accent); }

.pcard__sector {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pcard__body { padding: 1.5rem; }

.pcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}
.tag--primary  { background: var(--tint-accent); color: #FFFFFF; border: 1px solid var(--border-accent); }
.tag--secondary{ background: var(--tint-primary); color: #FFFFFF; border: 1px solid var(--border); }

.pcard__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.pcard__desc {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pcard__metric {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-light);
}

/* ─────────────────────────────────────────────────────────────
   17. TESTIMONIALS
───────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card { padding: 1.75rem; }

.testimonial-card__stars {
  color: #D97706;
  font-size: 13px;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}
.testimonial-card__avatar--1 { background: linear-gradient(135deg, var(--primary), #1a4a8a); }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, #1a4a8a, var(--accent-dark)); }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, var(--accent-dark), var(--primary)); }

.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial-card__role {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   18. FAQ
───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--border-accent); }

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: none;
}

.faq-trigger__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading);
}

.faq-trigger__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-trigger__icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-answer { max-height: 260px; }

.faq-answer__body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
}
.faq-answer__body strong { color: var(--text-heading); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   19. CONTACT
───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.form--centered {
  width: 100%;
  max-width: 540px;
}

.contact-feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.contact-feature-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

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

.contact-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.contact-feature-list li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-body);
  transition: color var(--t);
}
.contact-info-item:hover { color: #FFFFFF; }

/* ─────────────────────────────────────────────────────────────
   19b. CONTACT — text alignment overrides
───────────────────────────────────────────────────────────── */
.section-title--left    { text-align: left; margin-top: 1.25rem; }
.section-subtitle--left { text-align: left; margin: 0 0 2rem; }
.footer-social-title    { margin-top: 1.5rem; }
.btn--full              { justify-content: center; padding: 15px 30px; width: 100%; }

/* ─────────────────────────────────────────────────────────────
   20. FORM
───────────────────────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-heading);
  font-size: 14.5px;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
select.form-input        { color: var(--accent); }
select.form-input option { color: var(--text-heading); background: var(--bg-surface); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.form-checkbox-label a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(21, 128, 61, 0.06);
  border: 1px solid rgba(21, 128, 61, 0.18);
}
.form-success.visible { display: block; }
.form-success__title   { font-size: 13px; font-weight: 600; color: #15803d; }
.form-success__subtitle{ font-size: 12px; color: var(--text-body); margin-top: 4px; }

/* ─────────────────────────────────────────────────────────────
   21. FOOTER
───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand__desc {
  font-size: 0.875rem;
  color: var(--text-body);
  max-width: 20rem;
  line-height: 1.7;
  margin: 1rem 0;
}

.footer-nap {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-nap a { transition: color var(--t); }
.footer-nap a:hover { color: #FFFFFF; }

.footer-col__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-body);
  transition: color var(--t);
}
.footer-links a:hover { color: #FFFFFF; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.25rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.social-link:hover {
  color: #FFFFFF;
  border-color: var(--border-accent);
  background: var(--tint-accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   22. PRICING GRID
───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;   /* todas las columnas misma altura */
}

/* ── Card base ─────── */
.pc {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;           /* ocupa el 100% de la fila del grid */
}

/* ── Featured card ─── */
.pc--feat {
  border-color: rgba(200, 146, 42, 0.5);
  box-shadow: 0 0 0 1px rgba(200, 146, 42, 0.12), 0 16px 48px rgba(0,0,0,0.35);
  background: linear-gradient(160deg, var(--bg-subtle) 0%, var(--bg-surface) 100%);
  /* sin transform: sin elevación que rompa la alineación */
}
.pc--feat:hover {
  border-color: rgba(200, 146, 42, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(200, 146, 42, 0.28), 0 28px 60px rgba(0,0,0,0.45);
}

/* ── Header ─────────── */
.pc__hd {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.pc__bestseller {
  position: absolute;
  top: -1px; right: 1.25rem;
  background: linear-gradient(135deg, #A87820 0%, #D4A83A 100%);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}

.pc__target {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}
.pc__target--feat { color: var(--accent); }

.pc__name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.pc__tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}
.pc--feat .pc__tagline { color: var(--text-body); }

/* ── Pricing block ─── */
.pc__price {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pc__amount-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 5px;
}

.pc__currency {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 6px;
}

.pc__amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pc__amount--feat { color: var(--accent); }

.pc__note {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 5px;
}

.pc__monthly {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.pc__monthly strong {
  color: var(--text-body);
  font-weight: 600;
}

/* ── Features body ─── */
.pc__body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pc__group-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.feature-bonus { color: var(--accent-dark); font-weight: 600; }
.pc--feat .feature-list li::before { color: var(--accent); }

/* ── CTA area ───────── */
.pc__cta {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* ── Guión link ──────── */
.guion-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  transition: opacity var(--t);
}
.guion-link:hover { opacity: 1; }

/* ── Footnote ────────── */
.pricing-footnote {
  margin-top: 2rem;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.pricing-footnote::before {
  content: '· ';
  color: var(--accent-dark);
}

/* ─────────────────────────────────────────────────────────────
   23. SCROLL REVEAL & ANIMATIONS
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ─────────────────────────────────────────────────────────────
   23. RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav__links   { display: none; }
  .nav-desktop-cta   { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero__heading     { font-size: 2.5rem; }

  .stats-bar__grid   { grid-template-columns: repeat(2, 1fr); }

  .pain-grid         { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .portfolio-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form--centered    { max-width: 100%; }
  .footer-grid       { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }

  .stat-value        { font-size: 2rem; }
  .section           { padding: 4rem 0; }
}
