/*
  ================================================================
  MUSICA MUSIC SCHOOL — Shared Stylesheet
  All pages link to this file: <link rel="stylesheet" href="musica-styles.css">
  SQUARESPACE: Paste into Design → Custom CSS
  ================================================================
*/

/* ── Tokens ── */
:root {
  --navy:        #0B1D3A;
  --blue:        #1659A8;
  --blue-mid:    #1E72C8;
  --blue-bright: #2E90E0;
  --blue-light:  #5AAEE8;
  --sky:         #EBF5FD;
  --sky-mid:     #D4EAFA;
  --sky-dark:    #B8DAF4;
  --white:       #FFFFFF;
  --off-white:   #F7FBFF;
  --text:        #0B1D3A;
  --text-mid:    #2C4A6A;
  --text-light:  #5A7A98;
  --gold:        #F2DC5D;
  --gold-dk:     #DFC93E;
  --sh-sm:  0 2px 12px rgba(22,89,168,0.10);
  --sh:     0 6px 28px rgba(22,89,168,0.14);
  --sh-lg:  0 14px 52px rgba(11,29,58,0.22);
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.18; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
nav .container { max-width: 1320px; }
.section    { padding: 88px 0; }
.section-sm { padding: 60px 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.9rem,3.2vw,2.6rem); color: var(--navy); margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; color: var(--text-light); line-height: 1.78; }

/* ── Tags ── */
.tag {
  display: inline-block;
  background: var(--sky-mid);
  color: var(--blue);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tag-blue  { background: var(--blue);   color: white; }
.tag-navy  { background: var(--navy);   color: white; }
.tag-white { background: white;         color: var(--navy); }
.tag-gold  { background: var(--gold);   color: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34,1.4,0.64,1);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-gold   { background: var(--gold);     color: var(--navy); box-shadow: 0 5px 18px rgba(242,220,93,0.42); }
.btn-gold:hover { background: var(--gold-dk); box-shadow: 0 9px 26px rgba(223,201,62,0.52); }

.btn-blue   { background: var(--blue-mid); color: white; box-shadow: 0 5px 18px rgba(22,89,168,0.35); }
.btn-blue:hover { background: var(--blue); }

.btn-navy   { background: var(--navy);     color: white; }
.btn-navy:hover { background: #0a1628; }

.btn-white  { background: white; color: var(--blue); box-shadow: var(--sh-sm); }
.btn-white:hover { background: var(--sky); }

.btn-outline { background: transparent; color: white; border: 2.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.14); }

.btn-outline-blue { background: transparent; color: var(--blue); border: 2.5px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: white; }

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ── Image placeholders ── */
.img-ph {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; font-size: 0.78rem; font-weight: 700;
  text-align: center; padding: 20px;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sky-mid) 0%, var(--sky-dark) 100%);
  color: var(--blue);
}
.img-ph span { font-size: 2.2rem; }

/* ── Announcement bar ── */
.announce {
  background: var(--blue);
  color: white; text-align: center;
  padding: 11px 24px; font-size: 0.87rem; font-weight: 700;
}
.announce a { color: var(--gold); margin-left: 10px; text-decoration: underline; text-underline-offset: 3px; }

/* ── Navigation ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sky-dark);
  transition: box-shadow 0.3s;
  overflow: visible;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(22,89,168,0.13); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 66px; gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.logo:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}
.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(22,89,168,0.18));
}
.logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo .logo-copy {
  align-items: center;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
  line-height: 1.15;
}
.logo .logo-name em {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}
.logo-tag  { font-size: 0.6rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.04em; }
.logo .logo-tag { text-align: center; }

.nav-menu { display: flex; align-items: center; gap: 1px; }
.nav-menu a {
  font-weight: 700; font-size: 0.79rem;
  color: var(--text-mid); padding: 6px 8px;
  border-radius: 8px; transition: all 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); background: var(--sky); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-right .btn {
  padding: 11px 18px;
  font-size: 0.84rem;
}
.nav-phone { font-size: 0.84rem; font-weight: 800; color: var(--blue); white-space: nowrap; }
.nav-hamburger {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #FFFFFF 0%, #EBF5FD 100%);
  border: 1px solid var(--sky-dark);
  box-shadow: 0 8px 18px rgba(22,89,168,0.12);
  font-size: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  line-height: 1;
  user-select: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-hamburger::before,
.nav-hamburger::after {
  content: '';
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.24s ease, top 0.24s ease, bottom 0.24s ease, box-shadow 0.24s ease, opacity 0.2s ease;
}
.nav-hamburger::before {
  top: 14px;
  box-shadow: 0 7px 0 var(--navy);
}
.nav-hamburger::after {
  bottom: 14px;
}
.nav-hamburger:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(22,89,168,0.16);
}
.nav-hamburger:focus-visible {
  outline: 3px solid rgba(30,114,200,0.28);
  outline-offset: 2px;
}
.nav-hamburger.is-open::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}
.nav-hamburger.is-open::after {
  bottom: 21px;
  transform: rotate(-45deg);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(145deg, #071428 0%, #0D2248 30%, #1659A8 65%, #2E90E0 100%);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: var(--hero-note, '♪');
  position: absolute; font-size: 20rem;
  color: rgba(255,255,255,0.04);
  right: -20px; top: -40px;
  font-family: serif; pointer-events: none; line-height: 1;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  margin-bottom: 18px; font-weight: 600;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero .breadcrumb span { margin: 0 7px; }
.page-hero h1,
.page-hero .hero-title {
  font-size: clamp(2.2rem,4.5vw,3.6rem);
  color: white; margin-bottom: 18px; letter-spacing: -0.02em;
}
.page-hero h1 em,
.page-hero .hero-title em { color: var(--gold); font-style: normal; }
.page-hero .hero-title {
  line-height: 1.18;
}
.page-hero .hero-title .main-text {
  display: block;
}
.page-hero .hero-title .seo-subtitle {
  display: block;
  margin-top: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.74);
}
.page-hero .hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,0.82);
  line-height: 1.76; max-width: 580px; margin-bottom: 32px;
}
.page-hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Mini CTA (appears at bottom of every service page) ── */
.mini-cta {
  background: var(--navy);
  padding: 60px 0;
}
.mini-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mini-cta-text h2 { font-size: 1.9rem; color: white; margin-bottom: 12px; }
.mini-cta-text p  { color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.72; }

.mini-form {
  background: white;
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-lg);
}
.mini-form h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--navy); margin-bottom: 18px;
}
.split-cta-intro {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}
.split-cta-intro p {
  max-width: 760px;
  margin: 0 auto;
}
.split-cta-form {
  max-width: 100%;
}
.split-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}
.split-cta-primary {
  background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
  border: 1px solid #DCEAF7;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(22,89,168,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-cta-primary h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
}
.split-cta-primary p {
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 14px;
}
.split-cta-primary .btn {
  width: 100%;
  justify-content: center;
}
.split-cta-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
}
.split-cta-secondary {
  background: #FCFEFF;
  border: 1px solid #E5EFF9;
  border-radius: 18px;
  padding: 20px;
}
.split-cta-secondary h3 {
  margin-bottom: 18px;
}
.split-cta-secondary .f-submit {
  margin-top: 6px;
}
.f-group { margin-bottom: 13px; }
.f-group label {
  display: block; font-size: 0.82rem;
  font-weight: 800; color: var(--text); margin-bottom: 5px;
}
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--sky-dark);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem; color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s; outline: none;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--blue-mid); background: white;
}
.f-group textarea { min-height: 80px; resize: vertical; }
.f-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 13px; }
.f-note { font-size: 0.74rem; color: var(--text-light); text-align: center; margin-top: 10px; }

/* ── FAQ accordion ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--sky-dark);
  padding: 0;
}
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none;
  padding: 20px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q .chevron {
  font-size: 1.1rem; color: var(--blue);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.8; padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── Trust strip ── */
.trust-bar { background: var(--navy); padding: 44px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; text-align: center;
}
.trust-item .ti { font-size: 1.8rem; margin-bottom: 8px; }
.trust-item .ti img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.trust-item h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 900;
  color: white; margin-bottom: 4px;
}
.trust-item p { font-size: 0.78rem; color: rgba(255,255,255,0.58); line-height: 1.45; }

/* ── Cards shared ── */
.card {
  background: white; border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.card-body { padding: 26px; }
.card-body h3 { font-size: 1.22rem; color: var(--navy); margin-bottom: 10px; }
.card-body p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.68; }

/* ── Testimonials shared ── */
.testi-section {
  background: linear-gradient(150deg, #0B1D3A 0%, #1659A8 100%);
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: '\201C'; position: absolute;
  top: -60px; left: 20px;
  font-size: 18rem; color: rgba(255,255,255,0.04);
  font-family: 'Playfair Display', serif;
  line-height: 1; pointer-events: none;
}
.testi-section .section-header h2 { color: white; }
.testi-section .section-header p   { color: rgba(255,255,255,0.62); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl); padding: 30px;
  transition: all 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.stars { color: #FFD700; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 0.94rem; color: rgba(255,255,255,0.84); line-height: 1.74; font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-bright); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; flex-shrink: 0;
}
.av.av2 { background: rgba(255,255,255,0.2); }
.av.av3 { background: var(--gold); color: var(--navy); }
.author-name { font-weight: 900; color: white; font-size: 0.9rem; }
.author-prog { font-size: 0.74rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── Why-cards ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: white; border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--sh-sm);
  transition: all 0.3s;
}
.why-card:hover {
  background: var(--navy); transform: translateY(-5px); box-shadow: var(--sh-lg);
}
.why-card:hover h3, .why-card:hover p { color: white; }
.why-card:hover p { color: rgba(255,255,255,0.72); }
.why-card:hover .wi { background: rgba(255,255,255,0.12); }
.wi {
  width: 50px; height: 50px; background: var(--sky);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; transition: background 0.3s;
}
.wi img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.why-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem; font-weight: 900;
  color: var(--navy); margin-bottom: 9px; transition: color 0.3s;
}
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.68; transition: color 0.3s; }

/* ── Footer ── */
footer { background: var(--navy); padding: 64px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px; margin-bottom: 44px;
}
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.f-logo:hover { opacity: 0.96; }
.f-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}
.f-logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.f-logo .logo-name { color: var(--blue-light); }
.f-logo .logo-tag  { color: rgba(255,255,255,0.48); }
.f-logo .logo-tag  { text-align: center; }
.footer-bio { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.74; margin-bottom: 20px; }
.f-title {
  font-family: 'Nunito', sans-serif; font-size: 0.73rem;
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--blue-light); margin-bottom: 16px;
}
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 0.86rem; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.f-links a:hover { color: white; }
.f-contact-list { display: flex; flex-direction: column; gap: 11px; }
.f-c { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; color: rgba(255,255,255,0.52); }
.f-c a { color: rgba(255,255,255,0.52); }
.f-c a:hover { color: white; }
.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin-bottom: 22px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem;
  color: rgba(255,255,255,0.34);
}
.f-btm-links { display: flex; gap: 22px; }
.f-btm-links a { color: rgba(255,255,255,0.34); transition: color 0.2s; }
.f-btm-links a:hover { color: rgba(255,255,255,0.7); }

.social-row { display: flex; gap: 9px; margin-top: 18px; }
.soc {
  width: 38px; height: 38px; border-radius: 10px;
  background: #EBF5FD;
  border: 1px solid #DCEAF7;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: all 0.2s;
}
.soc img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
}
.soc:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-2px); }
footer .soc {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: white;
}

/* ── Fade animation ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .trust-grid      { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .mini-cta-inner  { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 920px) {
  .split-cta-layout { grid-template-columns: 1fr; }
}
@media (max-width: 1180px) {
  .container       { padding: 0 22px; }
  .nav-menu a      { font-size: 0.76rem; padding: 6px 7px; }
  .nav-right       { gap: 10px; }
  .nav-right .btn  { padding: 10px 14px; font-size: 0.78rem; }
  .logo-mark       { width: 38px; height: 38px; }
  .logo-name       { font-size: 1.04rem; }
  .logo-tag        { font-size: 0.56rem; }
}
@media (max-width: 1100px) {
  .nav-menu        { display: none; }
  .nav-hamburger   { display: flex; flex-shrink: 0; }
  .nav-inner       { min-height: 66px; height: auto; gap: 8px; padding: 10px 0; }
  .logo            { gap: 8px; min-width: 0; flex: 1 1 auto; }
  .logo-mark       { width: 36px; height: 36px; }
  .logo-copy       { min-width: 0; }
  .logo-name       { font-size: 1rem; }
  .logo-tag        { display: none; }
  .nav-right       { gap: 8px; }
  .nav-right .btn  {
    max-width: 154px;
    padding: 10px 12px;
    font-size: 0.74rem;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 720px) {
  html            { scroll-padding-top: 104px; }
  body            { padding-top: 88px; }
  nav             {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .container       { padding: 0 18px; }
  .nav-phone       { display: none; }
  .logo-mark       { width: 34px; height: 34px; }
  .nav-right .btn  {
    max-width: 138px;
    padding: 10px 12px;
    font-size: 0.74rem;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .why-grid        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero       { padding: 72px 0 64px; }
  .page-hero::before { content: none; }
  .page-hero .hero-title .seo-subtitle {
    font-size: 0.82rem;
    margin-top: 8px;
    line-height: 1.5;
  }
  .page-hero .hero-btns { flex-direction: column; }
  .page-hero .hero-btns .btn { width: 100%; justify-content: center; }
}

/* ── Shared nav JS helper ── */
.nav-mobile-open {
  display: flex !important; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 18px 18px;
  border-top: 1px solid var(--sky-dark);
  border-bottom: 1px solid var(--sky-dark);
  box-shadow: 0 8px 24px rgba(22,89,168,0.12);
  z-index: 999; gap: 3px;
}
.nav-mobile-open a {
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 12px;
}

@media (max-width: 720px) {
  .nav-mobile-open {
    left: 12px;
    right: 12px;
    top: calc(100% + 6px);
    border: 1px solid var(--sky-dark);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(11,29,58,0.16);
  }
}
