@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Nunito:wght@300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
@import './variables.css';

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── SECTIONS ── */
section { padding-block: var(--sp-2xl); }

.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-darker {
  background: var(--darker);
  color: var(--white);
}
.section-light {
  background: var(--surface);
  color: var(--text);
}
.section-white {
  background: var(--white);
  color: var(--text);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--darker);
  z-index: 1000;
  transition: background var(--t-normal), box-shadow var(--t-normal);
}

.navbar.transparent {
  background: transparent;
}

.navbar.transparent.scrolled,
.navbar.scrolled {
  background: var(--darker);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-normal), opacity var(--t-normal);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-normal);
}

.mobile-nav.open { opacity: 1; pointer-events: auto; }

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--darker);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding: 0.25rem;
}

.mobile-nav-panel a {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: background var(--t-fast), color var(--t-fast);
}

.mobile-nav-panel a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

/* ── MASTHEAD (Home hero) ── */
.masthead {
  min-height: 100vh;
  position: relative;
  background-image: url('/assets/img/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.62) 60%, rgba(0,0,0,0.80) 100%);
  pointer-events: none;
}

.masthead-content {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  max-width: 800px;
}

.masthead-subheading {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.masthead-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.masthead-heading span { color: var(--primary); }

.masthead-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 1.25rem auto 2.5rem;
  line-height: 1.75;
}

.masthead-divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border: none;
  border-radius: var(--r-full);
  margin: 0 auto 2.5rem;
}

.masthead-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── HERO CAROUSEL (dynamic banners) ── */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--darker);
  display: flex;
  align-items: center;
}

.hero-slides { display: flex; width: 100%; }

.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,15,17,0.88) 0%, rgba(33,37,41,0.55) 60%, rgba(100,161,157,0.08) 100%);
  display: flex;
  align-items: center;
}

.hero-slide-content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 8rem 2rem 4rem;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(100,161,157,0.18);
  border: 1px solid rgba(100,161,157,0.4);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  opacity: 0.82;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

/* Carousel controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover { background: rgba(100,161,157,0.35); }

.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.625rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all var(--t-normal);
}

.carousel-dot.active {
  background: var(--primary);
  width: 28px;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--darkest) 0%, var(--darker) 50%, var(--dark) 100%);
  color: var(--white);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(100,161,157,0.1) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border: none;
  border-radius: var(--r-full);
  margin: 1.25rem auto;
}

.page-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.875rem;
}

.section-label.light { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border: none;
  border-radius: var(--r-full);
  margin: 1.25rem auto;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}

.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ── CARDS ── */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: transform var(--t-normal) var(--ease-out), box-shadow var(--t-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-dark {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-dark);
  color: var(--white);
}

.card-dark:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.card-dark .card-icon {
  background: rgba(100,161,157,0.2);
  color: var(--primary);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.card-dark .card-desc { color: rgba(255,255,255,0.62); }

.card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
}
.card-link:hover { gap: 0.6rem; }

/* ── FEATURE SPLIT (text + visual) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.feature-visual-box {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}

.feature-visual-box .material-symbols-outlined {
  font-size: 5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 2px;
}

.feature-item-title { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.feature-item-desc  { font-size: 0.875rem; color: var(--text-muted); }

/* ── ANUNCIOS ── */
.anuncios-section { background: var(--white); }

.anuncios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: var(--sp-xl);
}

.anuncio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-normal) var(--ease-out), box-shadow var(--t-normal);
}

.anuncio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.anuncio-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.anuncio-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), var(--darker));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
}

.anuncio-body { padding: 1.5rem; }

.anuncio-categoria {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-50);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  margin-bottom: 0.875rem;
}

.anuncio-titulo {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.anuncio-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.anuncio-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
}
.anuncio-link:hover { gap: 0.5rem; }

.anuncios-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.anuncios-empty .material-symbols-outlined { font-size: 3rem; display: block; margin-bottom: 1rem; color: var(--primary); }

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
  padding-block: var(--sp-2xl);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.cta-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--darkest);
  color: rgba(255,255,255,0.65);
  padding-block: var(--sp-2xl);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--primary); }

.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-social:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 2rem;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-normal) var(--ease-out);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn-teal {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-teal:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(100,161,157,0.35);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: translateY(-2px);
}

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

.btn-dark {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--darker);
  border-color: var(--darker);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--dark);
  border-color: white;
}
.btn-white:hover {
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-sm { padding: 0.5625rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-xl { padding: 1.125rem 2.75rem; font-size: 1.0625rem; }

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

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-value { font-weight: 600; font-size: 0.9375rem; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100,161,157,0.15);
}

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

/* ── UTILITIES ── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-style: normal;
  line-height: 1;
  user-select: none;
  vertical-align: middle;
}

.text-teal   { color: var(--primary); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.fw-bold     { font-weight: 700; }
.d-flex      { display: flex; }
.gap-1       { gap: 1rem; }
.mt-1        { margin-top: 1rem; }
.mb-1        { margin-bottom: 1rem; }

/* Info box */
.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-box .material-symbols-outlined { color: var(--primary); font-size: 1.375rem; margin-top: 1px; flex-shrink: 0; }
.info-box p { font-size: 0.9rem; color: var(--text); line-height: 1.65; }

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

.animate-up { animation: fadeInUp 0.6s var(--ease-out) both; }
.delay-1    { animation-delay: 0.1s; }
.delay-2    { animation-delay: 0.2s; }
.delay-3    { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split.reverse { direction: ltr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

@media (max-width: 600px) {
  section { padding-block: 4rem; }
  .masthead-heading { font-size: 3rem; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .carousel-prev, .carousel-next { display: none; }
  .stats-row { gap: 1.5rem; }
}
