/* ══════════════════════════════════════════════════════
   CLUBIT LANDING — style.css
   Paleta:  Azul Sportivo #3B82F6  |  Noche Marina #0A1628
            Azul Profundo #1D4ED8  |  Cyan Eléctrico #38BDF8
            Cielo Suave   #EFF6FF
   Fuentes: Plus Jakarta Sans (headings) + Inter (body)
══════════════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────────────── */
:root {
  --color-primary:      #3B82F6;
  --color-secondary:    #1D4ED8;
  --color-accent:       #38BDF8;
  --color-bg-dark:      #0A1628;
  --color-bg-dark-2:    #0D1E35;
  --color-surface:      #EFF6FF;
  --color-white:        #FFFFFF;
  --color-text:         #0F172A;
  --color-text-body:    #334155;
  --color-text-muted:   #64748B;
  --color-border:       #E2E8F0;
  --color-error:        #EF4444;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.13), 0 6px 20px rgba(0,0,0,0.07);
  --shadow-blue: 0 8px 32px rgba(59, 130, 246, 0.30);

  --nav-height: 68px;
  --section-gap: 96px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-body);
  background: var(--color-white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--color-text); }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 600; }

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.section { padding: var(--section-gap) 0; }
.bg-light  { background: var(--color-surface); }
.bg-white  { background: var(--color-white); }
.bg-dark   { background: var(--color-bg-dark); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 11px 22px;
  font-size: 14.5px;
}
.btn-primary:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.72);
  padding: 11px 22px;
  font-size: 14.5px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.38);
}
.btn-sm  { font-size: 13.5px; padding: 8px 18px; }
.btn-lg  { font-size: 15.5px; padding: 14px 28px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ─── UTILITIES ──────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(130deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SECTION HEADER ─────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { margin: 12px 0 16px; }
.section-header p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(59,130,246,0.09);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}
.section-tag--light {
  color: var(--color-accent);
  background: rgba(56,189,248,0.10);
  border-color: rgba(56,189,248,0.22);
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5.5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(9, 19, 36, 0.98);
  backdrop-filter: blur(18px);
  padding: 0 24px;
  gap: 2px;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
}
.mobile-menu.open {
  max-height: 420px;
  padding: 16px 24px 28px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: #fff; }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(29,78,216,0.55), transparent 70%);
  top: -240px; left: -200px;
}
.glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(56,189,248,0.28), transparent 70%);
  bottom: -120px; right: -80px;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-logo-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  color: rgba(59,130,246,0.055);
}
.hero-logo-watermark svg {
  width: 100%; height: 100%;
  /* Override fill to use currentColor */
  filter: none;
}
.hero-logo-watermark svg path { fill: currentColor; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: 80px 0 96px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.22);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2.2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56,189,248,0.55); }
  50%       { box-shadow: 0 0 0 6px rgba(56,189,248,0); }
}
.hero-title {
  color: var(--color-white);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-subtitle strong {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-display);
  font-weight: 500;
}
.proof-divider { color: rgba(255,255,255,0.18); font-size: 18px; }

/* ─── Hero entrance animations ───────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Scroll reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.22);
}
.problem-card--featured {
  border-color: rgba(59,130,246,0.28);
  box-shadow: 0 4px 20px rgba(59,130,246,0.09);
}
.problem-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.color-blue { background: rgba(59,130,246,0.10); color: var(--color-primary); }
.color-red  { background: rgba(239,68,68,0.09);  color: #EF4444; }
.color-cyan { background: rgba(56,189,248,0.10); color: #0EA5E9; }
.problem-card h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--color-text); }
.problem-card p  { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.68; }

/* ══════════════════════════════════════════════════════
   FUNCIONALIDADES
══════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.feature-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card--hero {
  background: linear-gradient(148deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  transform: translateY(-10px);
  padding-top: 44px;
}
.feature-card--hero:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 64px rgba(59,130,246,0.42);
}
.feature-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(59,130,246,0.09);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-wrap--light {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--color-text); }
.feature-card--hero h3 { color: var(--color-white); }
.feature-card > p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
.feature-card--hero > p { color: rgba(255,255,255,0.72); }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.45;
}
.feature-list--light li { color: rgba(255,255,255,0.78); }
.feature-list--light li::before { background: var(--color-accent); opacity: 0.75; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 4px 20px rgba(59,130,246,0.08);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 0.9875rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--color-primary); }
.faq-item.open .faq-trigger { color: var(--color-primary); }
.faq-chevron {
  flex-shrink: 0;
  display: flex;
  color: var(--color-text-muted);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-body { max-height: 260px; }
.faq-body p {
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--color-text-muted);
}

/* ══════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info { padding-top: 4px; }
.contact-title {
  color: var(--color-white);
  margin: 16px 0 20px;
  line-height: 1.22;
}
.contact-description {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin-bottom: 36px;
}
.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
}
.highlight-icon { font-size: 20px; flex-shrink: 0; }

/* Form wrapper */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.required { color: var(--color-accent); margin-left: 1px; }
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-md);
  padding: 12px 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: rgba(59,130,246,0.07);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
  background: rgba(239,68,68,0.05);
}

/* Form success */
.form-success {
  text-align: center;
  padding: 52px 16px;
}
.success-checkmark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(56,189,248,0.09);
  border: 1.5px solid rgba(56,189,248,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.form-success p { font-size: 0.9375rem; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.32);
  margin-top: 6px;
}
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.82); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.27);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .feature-card--hero { transform: translateY(0); }
  .feature-card--hero:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-gap: 72px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content { padding: 48px 0 72px; }
  .hero-logo-watermark { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { justify-content: center; }
  .hero-proof { gap: 10px; }
  .proof-divider { display: none; }

  .section-header { margin-bottom: 40px; }

  .problem-grid,
  .features-grid { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --nav-height: 60px; }
  .container { padding: 0 16px; }

  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.75rem; }

  .problem-card,
  .feature-card  { padding: 28px 22px; }

  .faq-trigger   { padding: 18px 20px; font-size: 0.9375rem; }
  .faq-body p    { padding: 0 20px 18px; }

  .contact-form-wrap { padding: 22px 16px; }
  .logo-text { font-size: 18px; }
}
