/* ================================================================
   LANDING · Felipe Aguirre Quiroz · Kinesiología Gerontológica
   ----------------------------------------------------------------
   Estructura del archivo:
     1. Variables y reset
     2. Tipografía y utilidades
     3. Navbar
     4. Hero
     5. Secciones genéricas (titulares, contenedores)
     6. Sobre mí
     7. Servicios
     8. Para quién
     9. Diferencial
    10. Contacto
    11. Footer
    12. Animaciones (scroll reveal, hover)
    13. Responsive (mobile-first → desktop)
    14. Logo overrides (al final, fáciles de ajustar)
   ================================================================ */


/* =============== 1. VARIABLES Y RESET ========================== */
:root {
  /* Paleta de marca obligatoria */
  --color-orange: #f89c1b;
  --color-orange-dark: #d8830d;
  --color-green: #2ca449;
  --color-green-dark: #207a36;
  --color-blue: #154677;
  --color-blue-dark: #0e3257;
  --color-black: #000000;

  /* Neutros derivados (sobrios y limpios) */
  --color-bg: #ffffff;
  --color-bg-soft: #f6f8fb;
  --color-text: #111827;
  --color-muted: #5b6573;
  --color-line: #e5e9f0;

  /* Tipografía */
  --font-sans: 'Montserrat', 'Futura', 'Helvetica Neue', Arial, sans-serif;

  /* Tamaños */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Sombras */
  --shadow-sm: 0 4px 14px rgba(21, 70, 119, 0.07);
  --shadow-md: 0 10px 30px rgba(21, 70, 119, 0.10);
  --shadow-lg: 0 20px 50px rgba(21, 70, 119, 0.15);

  /* Transiciones */
  --t-fast: 0.2s ease;
  --t-mid: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}


/* =============== 2. TIPOGRAFÍA Y UTILIDADES ==================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blue);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem); }
h3 { font-size: 1.25rem; }

p { color: var(--color-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* Acentos de color para subrayar palabras clave */
.accent-orange { color: var(--color-orange); }
.accent-green  { color: var(--color-green); }
.accent-blue   { color: var(--color-blue); }


/* Botones genéricos */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.btn i { font-size: 1.2rem; }

.btn-primary {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(248, 156, 27, 0.35);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(248, 156, 27, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--color-blue);
  transform: translateY(-2px);
}


/* =============== 3. NAVBAR ===================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.1rem 0;
  background: transparent;
  transition: background var(--t-mid), box-shadow var(--t-mid),
              padding var(--t-mid);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color var(--t-fast);
}
.navbar.scrolled .nav-logo { color: var(--color-blue); }

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--color-orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(248, 156, 27, 0.4);
}

.logo-text { letter-spacing: 0.01em; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--t-fast);
}
.navbar.scrolled .nav-link { color: var(--color-text); }

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--color-orange);
  transition: width var(--t-mid);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--color-orange);
  color: #fff !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(248, 156, 27, 0.4);
}
.nav-cta:hover { background: var(--color-orange-dark); }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
}
.navbar.scrolled .nav-toggle { color: var(--color-blue); }


/* =============== 4. HERO ======================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(21, 70, 119, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('img/hero.jpg') center/cover no-repeat,
    /* Fallback degradado si no hay imagen */
    linear-gradient(135deg, #154677 0%, #0a2540 100%);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 156, 27, 0.25), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(44, 164, 73, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: 1.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(248, 156, 27, 0.6);
  border-radius: 999px;
}

.hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-slogan {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.55rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  border-left: 3px solid var(--color-green);
  padding-left: 1.2rem;
}

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

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 4px;
  margin: 7px auto 0;
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}


/* =============== 5. SECCIONES (titulares) ====================== */
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.8rem;
}
.section-eyebrow.light { color: var(--color-orange); }

.section-title {
  margin-bottom: 1.2rem;
  max-width: 800px;
}
.section-title.light { color: #fff; }

.section-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.section-lead.center { margin: 0 auto 2rem; text-align: center; }

.section-paragraph {
  color: var(--color-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* =============== 6. SOBRE MÍ =================================== */
.section-about { background: var(--color-bg); padding-top: 7rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.image-placeholder {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e9eef5 0%, #d6dde8 100%);
  display: grid;
  place-items: center;
  color: var(--color-blue);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.image-placeholder i {
  font-size: 6rem;
  opacity: 0.5;
}
.image-placeholder span {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.about-badge {
  position: absolute;
  bottom: 1.2rem;
  right: -0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-green);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 22px rgba(44, 164, 73, 0.35);
}
.about-badge i { font-size: 1.05rem; }

.about-text { max-width: 540px; }

.about-points {
  list-style: none;
  margin-top: 1.5rem;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  color: var(--color-text);
  font-weight: 500;
}
.about-points i {
  color: var(--color-green);
  font-size: 1.3rem;
  flex-shrink: 0;
}


/* =============== 7. SERVICIOS ================================== */
.section-services {
  background: var(--color-bg-soft);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform var(--t-mid), box-shadow var(--t-mid),
              border-color var(--t-mid);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  font-size: 1.7rem;
  color: #fff;
  transition: transform var(--t-mid);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }

.icon-blue   { background: var(--color-blue); }
.icon-orange { background: var(--color-orange); }
.icon-green  { background: var(--color-green); }

.service-card h3 {
  margin-bottom: 0.6rem;
  color: var(--color-blue);
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}


/* =============== 7b. HERRAMIENTAS CLÍNICAS ===================== */
.section-tools {
  background: #fff;
  position: relative;
}
.section-tools::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--color-line);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  transition: transform var(--t-mid), box-shadow var(--t-mid),
              border-color var(--t-mid);
  overflow: hidden;
}
.tool-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.tool-card:hover::after { transform: scaleX(1); }

.tool-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #fff;
  transition: transform var(--t-mid);
}
.tool-card:hover .tool-icon { transform: scale(1.08) rotate(-3deg); }

.tool-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.4rem;
}

.tool-card h3 {
  margin-bottom: 0.6rem;
  color: var(--color-blue);
}
.tool-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.3rem;
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-blue);
  letter-spacing: 0.01em;
}
.tool-link i {
  font-size: 1.2rem;
  transition: transform var(--t-fast);
}
.tool-card:hover .tool-link { color: var(--color-orange); }
.tool-card:hover .tool-link i { transform: translateX(4px); }

.tools-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem auto 0;
  padding: 0.7rem 1.3rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--color-muted);
  width: fit-content;
  text-align: center;
}
.tools-note i { color: var(--color-green); font-size: 1.05rem; }


/* =============== 8. PARA QUIÉN ================================= */
.section-audience { background: #fff; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #fff;
  overflow: hidden;
  transition: transform var(--t-mid);
}
.audience-card:hover { transform: translateY(-6px); }

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: 0;
}
.audience-card > * { position: relative; z-index: 1; }

.audience-students {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
}
.audience-pros {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
}

.audience-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  margin-bottom: 1.3rem;
  backdrop-filter: blur(6px);
}

.audience-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.audience-card > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.3rem;
  line-height: 1.65;
}

.audience-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.2rem;
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}
.audience-list i {
  color: var(--color-orange);
  font-size: 1.2rem;
}


/* =============== 9. DIFERENCIAL ================================ */
.section-differential {
  background:
    linear-gradient(135deg, var(--color-blue) 0%, var(--color-black) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-differential::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(248, 156, 27, 0.18), transparent 70%);
}

.differential-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.diff-item {
  padding: 1.5rem;
  border-left: 3px solid var(--color-orange);
  transition: transform var(--t-mid), border-color var(--t-mid);
}
.diff-item:hover {
  transform: translateX(8px);
  border-left-color: var(--color-green);
}

.diff-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}

.diff-item h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.diff-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}


/* =============== 10. CONTACTO ================================== */
.section-contact {
  background: var(--color-bg-soft);
  text-align: center;
}

.contact-wrap {
  max-width: 880px;
  text-align: center;
}
.contact-wrap .section-title { margin: 0 auto 1.2rem; }

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.6rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  text-align: left;
  transition: transform var(--t-mid), box-shadow var(--t-mid),
              border-color var(--t-mid);
  color: var(--color-text);
}
.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-btn i {
  font-size: 2rem;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
}

.contact-btn.whatsapp i  { background: #25d366; }
.contact-btn.instagram i {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%);
}
.contact-btn.email i     { background: var(--color-blue); }

.btn-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-bottom: 0.15rem;
}
.btn-value {
  display: block;
  font-weight: 600;
  color: var(--color-blue);
  font-size: 1rem;
}


/* =============== 11. FOOTER ==================================== */
.footer {
  background: var(--color-black);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
}
.footer-brand strong {
  color: #fff;
  font-size: 1rem;
  display: block;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.footer-social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  transition: background var(--t-fast), transform var(--t-fast),
              color var(--t-fast);
}
.footer-social a:hover {
  background: var(--color-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}


/* =============== 12. ANIMACIONES (scroll reveal) =============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}


/* =============== 13. RESPONSIVE ================================ */

/* Tablet · 720px+ */
@media (min-width: 720px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .tools-grid       { grid-template-columns: repeat(2, 1fr); }
  .audience-grid    { grid-template-columns: repeat(2, 1fr); }
  .differential-grid{ grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contact-buttons  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr 1fr; text-align: left; }
  .footer-brand     { justify-content: flex-start; }
  .footer-social    { justify-content: flex-end; }
}

/* Desktop · 992px+ */
@media (min-width: 992px) {
  .section { padding: 7rem 0; }
  .about-grid    { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .tools-grid    { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile · ≤ 768px (menú hamburguesa) */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.4rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    transition: right var(--t-mid);
  }
  .nav-menu.is-open { right: 0; }
  .nav-menu .nav-link { color: var(--color-text); width: 100%; }
  .nav-menu .nav-cta  { width: auto; align-self: flex-start; color: #fff !important; }

  .hero-content { padding-top: 8rem; }
  .hero-slogan { font-size: 1.05rem; }

  .about-badge { right: 50%; transform: translateX(50%); bottom: -1.4rem; }
}


/* =============== 14. LOGO ====================================== */
.nav-logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
}
.navbar.scrolled .nav-logo-img {
  box-shadow: 0 2px 8px rgba(21, 70, 119, 0.12);
}

.hero-logo {
  height: 110px;
  width: 110px;
  object-fit: contain;
  background: #fff;
  border-radius: 22px;
  padding: 12px;
  margin: 0 0 1.8rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: block;
}

@media (max-width: 768px) {
  .hero-logo { height: 90px; width: 90px; padding: 10px; }
}
