/* ============================================================
   ÁLVARO FERREIRA — Comunicación Estratégica
   style.css — Global Stylesheet
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1A2B4A;
  --navy-mid:    #243860;
  --graphite:    #2D2D2D;
  --gray:        #666666;
  --white:       #FAFAFA;
  --off-white:   #F4F1EC;
  --gold:        #C09A5B;
  --gold-light:  #D4B47A;
  --border:      #E5E0D8;

  --ff-title:    'Playfair Display', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;

  --nav-h:       78px;
  --max-w:       1180px;
  --radius:      8px;
  --ease:        0.3s ease;

  --shadow-sm:   0 2px 16px rgba(26,43,74,0.07);
  --shadow-md:   0 6px 32px rgba(26,43,74,0.12);
  --shadow-lg:   0 12px 48px rgba(26,43,74,0.16);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-title); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray);
  font-weight: 300;
  line-height: 1.85;
}
.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section      { padding: 6rem 0; }
.section--alt { background: var(--off-white); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header .lead { max-width: 560px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  width: 52px; height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}
.divider--c { margin: 1.2rem auto; }

/* ── Tag / Pill ────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(192,154,91,0.35);
  background: rgba(192,154,91,0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 3px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.nav-logo img {
  height: 46px;
  width: auto;
  transition: filter var(--ease);
}
.nav--transparent .nav-logo img { filter: brightness(0) invert(1); }
.nav--solid      .nav-logo img  { filter: none; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links > a {
  font-size: 0.87rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--ease);
}
.nav--transparent .nav-links > a { color: rgba(255,255,255,0.88); }
.nav--solid       .nav-links > a { color: var(--graphite); }

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a.active::after { width: 100%; }
.nav-links > a:hover { color: var(--gold) !important; }

/* CTA nav button */
.nav-cta {
  display: inline-block;
  padding: 0.58rem 1.3rem;
  background: var(--gold);
  color: var(--white) !important;
  font-size: 0.83rem !important;
  font-weight: 600 !important;
  border-radius: 4px;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 23px; height: 2px;
  border-radius: 2px;
  transition: all var(--ease);
}
.nav--transparent .nav-burger span { background: var(--white); }
.nav--solid       .nav-burger span { background: var(--graphite); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
}
.btn-lg { padding: 1.05rem 2.3rem; font-size: 0.95rem; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(192,154,91,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.35);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero--sm { min-height: 58vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg,
    rgba(26,43,74,0.97) 0%,
    rgba(26,43,74,0.88) 55%,
    rgba(26,43,74,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(192,154,91,0.45);
  background: rgba(192,154,91,0.1);
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: var(--ff-title);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: clamp(0.97rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 2.4rem;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  display: block;
  font-family: var(--ff-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ── Service Cards ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: all var(--ease);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.card:hover::after { transform: scaleX(1); }

.card-num {
  font-family: var(--ff-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(192,154,91,0.15);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.card-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(192,154,91,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.card p   { font-size: 0.93rem; color: var(--gray); margin-bottom: 1.4rem; }

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--ease);
}
.card:hover .card-arrow { gap: 0.7rem; }

/* ── Photo Frame ───────────────────────────────────────────── */
.photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: 18px; left: -18px; right: 18px; bottom: -18px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.photo-badge {
  position: absolute;
  bottom: -1.2rem; right: -1.2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.photo-badge strong {
  display: block;
  font-family: var(--ff-title);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.photo-badge span {
  font-size: 0.72rem;
  opacity: 0.75;
  display: block;
  margin-top: 0.2rem;
}

/* ── Pillar (3 columns numbered) ───────────────────────────── */
.pillar {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--ease);
}
.pillar:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-title);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.pillar p  { font-size: 0.92rem; color: var(--gray); margin-bottom: 0; }

/* ── Process Steps ─────────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-title);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-body h4 { margin-bottom: 0.4rem; font-size: 1.05rem; color: var(--navy); }
.step-body p  { font-size: 0.92rem; color: var(--gray); margin-bottom: 0; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2rem 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-text {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 1rem;
}
.testimonial-author { font-weight: 600; font-size: 0.87rem; color: var(--navy); }
.testimonial-role   { font-size: 0.8rem; color: var(--gray); }

/* ── Format cards (Habla con Impacto) ──────────────────────── */
.format-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--ease);
}
.format-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.format-card-header {
  background: var(--navy);
  padding: 1.8rem 2rem;
}
.format-card-header h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.3rem; }
.format-card-header .tag-white {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.format-card-body { padding: 2rem; }
.format-card-body p { font-size: 0.92rem; color: var(--gray); }
.format-card-body ul { margin-top: 0.5rem; }
.format-card-body ul li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.format-card-body ul li:last-child { border-bottom: none; }
.format-card-body ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(192,154,91,0.05);
  pointer-events: none;
}
.cta-banner::before { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-banner::after  { width: 300px; height: 300px; bottom: -120px; left: -60px; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p  { color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-note      { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-top: 1rem !important; }
.cta-actions   { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Contact Form ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--graphite);
  background: var(--white);
  outline: none;
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

/* ── Benefits List ─────────────────────────────────────────── */
.benefit-list { margin-top: 1rem; }
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(192,154,91,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  margin-top: 2px;
}
.benefit-item h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 0.2rem; }
.benefit-item p  { font-size: 0.88rem; color: var(--gray); margin-bottom: 0; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #1e1e1e;
  color: rgba(255,255,255,0.62);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 0; }

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--ease);
}
.footer-col li a:hover { color: var(--gold); }
.footer-col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}
.footer-col .footer-contact-item a { color: rgba(255,255,255,0.58); transition: color var(--ease); }
.footer-col .footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold); }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-gray   { color: var(--gray); }
.mb0 { margin-bottom: 0; }
.mb1 { margin-bottom: 1rem; }
.mb2 { margin-bottom: 2rem; }
.mb3 { margin-bottom: 3rem; }
.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; }
.mt3 { margin-top: 3rem; }

/* ── Hero Backgrounds per page ─────────────────────────────── */
.hero-bg--home      { background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1400&q=80'); }
.hero-bg--pitches   { background-image: url('https://images.unsplash.com/photo-1515187029135-18ee286d815b?w=1400&q=80'); }
.hero-bg--habla     { background-image: url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80'); }
.hero-bg--xpeakers  { background-image: url('https://images.unsplash.com/photo-1559223607-b4d0555ae227?w=1400&q=80'); }
.hero-bg--sobre     { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80'); }
.hero-bg--contacto  { background-image: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1400&q=80'); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .section { padding: 4rem 0; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease);
    z-index: 899;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links > a {
    padding: 0.9rem 2rem;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.88) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > a::after { display: none; }
  .nav-cta { margin: 1rem 2rem; text-align: center; display: block; }
  .nav-burger { display: flex; }

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

  .photo-frame::before { display: none; }
  .photo-frame img { height: 360px; }
  .photo-badge { display: none; }

  .hero-stats { flex-wrap: wrap; gap: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .cta-banner { padding: 3.5rem 0; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .card { padding: 2rem 1.5rem; }
  .hero-title { font-size: 2rem; }
  .pillar { padding: 2rem 1.5rem; }
}
