/* ═══════════════════════════════════════════════════════════
   CLÍNICA DENTAL GORBEA — Styles
   Palette: Black (#000) · Gold (#f19f05) · Mid-gold (#c9a84c) · Logo-gold (#7a6200)
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --bg:           #000000;
  --bg-section:   #080808;
  --bg-card:      #111111;
  --bg-card-h:    #161616;
  --accent:       #f19f05;
  --accent-logo:  #7a6200;
  --accent-mid:   #c9a84c;
  --text:         #f2f2f2;
  --text-muted:   #999999;
  --border:       rgba(241, 159, 5, 0.18);
  --border-solid: #1e1e1e;
  --radius:       12px;
  --radius-lg:    22px;
  --shadow:       0 4px 24px rgba(241, 159, 5, 0.08);
  --shadow-h:     0 8px 48px rgba(241, 159, 5, 0.18);
  --font-d:       'Playfair Display', Georgia, serif;
  --font-b:       'Inter', system-ui, -apple-system, sans-serif;
  --ease:         0.3s ease;
  --max-w:        1200px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ─── Container ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ─── Tag chip ─── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 1rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn--primary  { background: var(--accent); color: #000; }
.btn--primary:hover  { background: #d48f04; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(241,159,5,0.3); }
.btn--outline  { background: transparent; color: var(--text); border: 2px solid rgba(241,159,5,0.35); }
.btn--outline:hover  { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--ease), padding var(--ease), border var(--ease);
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-solid);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: height var(--ease);
}
.header.scrolled .nav__logo-img { height: 38px; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav__link:hover, .nav__link--active { color: var(--text); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__cta {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: var(--accent);
  color: #000;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--ease);
}
.nav__cta:hover { background: #d48f04; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px; z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--ease);
  transform-origin: center;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.45) 100%),
    url('../img/clinica-exterior.png');
  background-size: cover;
  background-position: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 30%, rgba(241,159,5,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero__deco {
  position: absolute;
  top: 15%;
  right: -8%;
  width: 55vw; max-width: 700px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(241,159,5,0.07);
  pointer-events: none;
}
.hero__deco::before {
  content: '';
  position: absolute; inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(241,159,5,0.05);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 780px;
}
.hero__title {
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-solid);
}
.hero__stat strong {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-d);
  color: var(--accent);
  margin-bottom: 0.15rem;
}
.hero__stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: pulse-down 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent-mid), transparent);
}
@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ════════════════════════════════════
   PAGE HERO (equipo.html)
════════════════════════════════════ */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(241,159,5,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; max-width: 700px; }
.breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  transition: color var(--ease);
}
.breadcrumb:hover { color: var(--accent-mid); }
.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.page-hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════
   SECTIONS
════════════════════════════════════ */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--bg-section); }
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section__header .tag { margin-bottom: 1rem; }
.section__title { color: var(--text); margin-bottom: 1rem; }
.section__desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }

/* ════════════════════════════════════
   SERVICES GRID
════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-logo), var(--accent));
  opacity: 0;
  transition: opacity var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-h);
  border-color: rgba(241,159,5,0.15);
}
.service-card:hover::after { opacity: 1; }
.service-card--featured {
  border-color: rgba(241,159,5,0.2);
}
.service-card--featured::after { opacity: 1; }
.service-card__badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: 0.22rem 0.65rem;
  background: rgba(241,159,5,0.12);
  border: 1px solid rgba(241,159,5,0.25);
  border-radius: 50px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.service-card__icon {
  width: 50px; height: 50px;
  background: rgba(241,159,5,0.08);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: background var(--ease);
}
.service-card:hover .service-card__icon { background: rgba(241,159,5,0.14); }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title { color: var(--text); margin-bottom: 0.75rem; font-size: 1.12rem; }
.service-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-card__link {
  color: var(--accent);
  font-size: 0.88rem; font-weight: 600;
  transition: color var(--ease);
}
.service-card__link:hover { color: var(--accent-mid); }

/* Extra services */
.extra-services {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.extra-services__label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.extra-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.extra-services__list li {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-solid);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: var(--ease);
  cursor: default;
}
.extra-services__list li:hover { border-color: rgba(241,159,5,0.2); color: var(--accent-mid); }

/* ════════════════════════════════════
   BENEFITS
════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.benefit {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--ease);
}
.benefit:hover { border-color: var(--border-solid); background: rgba(255,255,255,0.015); }
.benefit__icon {
  width: 54px; height: 54px;
  background: rgba(241,159,5,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  transition: var(--ease);
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit:hover .benefit__icon { background: rgba(241,159,5,0.14); transform: scale(1.06); }
.benefit__title { font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; font-family: var(--font-d); }
.benefit__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════
   ABOUT / NOSOTROS
════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__content .tag { display: block; }
.about__content .section__title { text-align: left; margin-bottom: 1.25rem; }
.about__text { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.1rem; }
.about__content .btn { margin-top: 0.5rem; }
.about__doctors { display: flex; flex-direction: column; gap: 1rem; }
.about__founders-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.doctor-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: var(--ease);
}
.doctor-card:hover {
  border-color: rgba(241,159,5,0.2);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}
.doctor-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-logo), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 0.95rem; font-weight: 700;
  color: #000;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.doctor-card__info { flex: 1; min-width: 0; }
.doctor-card__name { font-size: 0.97rem; color: var(--text); margin-bottom: 0.15rem; font-family: var(--font-d); }
.doctor-card__specialty { font-size: 0.78rem; color: var(--accent-mid); }
.doctor-card__arrow { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; transition: var(--ease); }
.doctor-card:hover .doctor-card__arrow { color: var(--accent); transform: translateX(3px); }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item__icon {
  width: 42px; height: 42px;
  background: rgba(241,159,5,0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item__icon svg { width: 17px; height: 17px; }
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-mid);
  margin-bottom: 0.35rem;
  font-family: var(--font-b);
  font-weight: 600;
}
.contact-item p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.55; }
.contact-item a { color: var(--accent); transition: color var(--ease); }
.contact-item a:hover { color: var(--accent-mid); }
.contact-info .btn { margin-top: 0.25rem; }

/* Map */
.contact-map { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-map iframe {
  width: 100%; height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-solid);
  filter: grayscale(50%) brightness(0.85) contrast(1.05);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--ease);
  align-self: flex-start;
}
.map-link svg { width: 14px; height: 14px; }
.map-link:hover { color: var(--accent-mid); }

/* ════════════════════════════════════
   TEAM PROFILES (equipo.html)
════════════════════════════════════ */
.profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 3rem 0;
}
.profile--reverse { grid-template-columns: 1fr 160px; }
.profile--reverse .profile__content { order: -1; }
.profile__avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-logo) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 2.2rem; font-weight: 700;
  color: #000;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(241,159,5,0.12), 0 0 0 8px rgba(241,159,5,0.05);
}
.profile .tag { margin-bottom: 0.75rem; }
.profile__name { color: var(--text); margin-bottom: 0.5rem; font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.profile__specialty {
  font-size: 0.88rem;
  color: var(--accent-mid);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.profile__bio { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
.profile__tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.profile__tags li {
  padding: 0.3rem 0.8rem;
  background: rgba(241,159,5,0.07);
  border: 1px solid rgba(241,159,5,0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent-mid);
}
.profile-divider {
  height: 1px;
  background: var(--border-solid);
  margin: 0;
}

/* CTA section */
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-section__inner .section__title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-section__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: #000;
  border-top: 1px solid var(--border-solid);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-solid);
}
.footer__tagline { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.85rem; line-height: 1.6; }
.footer__heading {
  font-family: var(--font-b);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-mid);
  margin-bottom: 1rem;
}
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--ease); }
.footer__links a:hover { color: var(--accent-mid); }
.footer__address p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.footer__address a { color: var(--accent); transition: color var(--ease); }
.footer__address a:hover { color: var(--accent-mid); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 27px; height: 27px; fill: #fff; }

/* ════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal:nth-child(2) { transition-delay: 0.1s; }
  .reveal:nth-child(3) { transition-delay: 0.2s; }
  .reveal:nth-child(4) { transition-delay: 0.3s; }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .profile { grid-template-columns: 120px 1fr; gap: 2.5rem; }
  .profile--reverse { grid-template-columns: 1fr 120px; }
  .profile__avatar { width: 110px; height: 110px; font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
    z-index: 99;
  }
  .nav__menu.is-open { opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 1.25rem; }
  .nav__cta { font-size: 1rem; padding: 0.75rem 2rem; }
  .nav__toggle { display: flex; }

  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .hero__stats { gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; }

  .profile { grid-template-columns: 1fr; gap: 2rem; }
  .profile--reverse { grid-template-columns: 1fr; }
  .profile--reverse .profile__content { order: 0; }
  .profile__avatar { width: 100px; height: 100px; font-size: 1.5rem; }

  .cta-section__inner { flex-direction: column; gap: 2rem; }
  .cta-section__inner .section__title,
  .cta-section__inner .section__desc { text-align: center !important; }
}

@media (max-width: 540px) {
  .hero__actions { flex-direction: column; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { font-size: 0.9rem; padding: 0.8rem 1.4rem; }
}
