:root {
  --green: #0F7F3A;
  --deep-green: #075C2B;
  --red: #F21F2B;
  --gold: #FFD21F;
  --navy: #102033;
  --soft: #F7FAF8;
  --soft-gold: #FFF8D6;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --muted: #5B6777;
  --shadow: 0 22px 55px rgba(16, 32, 51, 0.15);
  --shadow-soft: 0 12px 30px rgba(16, 32, 51, 0.09);
  --radius: 8px;
  --header: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 1rem);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 127, 58, 0.14);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(16px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0 52%, var(--gold) 52% 68%, var(--red) 68% 100%);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 230px;
  padding: 0.36rem 0.5rem;
  border-radius: var(--radius);
  flex: 0 0 auto;
}

.brand-link img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(15, 127, 58, 0.25);
  box-shadow: 0 8px 22px rgba(15, 127, 58, 0.15);
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--deep-green);
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-text small {
  color: #304156;
  font-size: 0.74rem;
  font-weight: 850;
  max-width: 160px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-left: auto;
  padding: 0.28rem;
  background: rgba(247, 250, 248, 0.9);
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: var(--radius);
}

.primary-nav a {
  position: relative;
  padding: 0.7rem 0.72rem;
  border-radius: 6px;
  color: #26364A;
  font-weight: 850;
  font-size: 0.84rem;
  line-height: 1;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a.is-active {
  color: var(--white);
  background: var(--deep-green);
  box-shadow: 0 8px 18px rgba(7, 92, 43, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-actions .nav-whatsapp,
.floating-whatsapp {
  display: none;
}

.header-actions .btn {
  min-height: 50px;
}

.nav-call {
  display: grid;
  gap: 0.1rem;
  padding-block: 0.55rem;
}

.nav-call span,
.nav-whatsapp span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-call strong {
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  border-color: #C8D3DD;
  background: var(--white);
  color: var(--navy);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

.text-link {
  color: var(--deep-green);
  font-weight: 900;
  display: inline-flex;
  margin-top: 0.35rem;
}

.price-card .btn-outline,
.branch-card .btn-outline {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep-green);
  box-shadow: none;
  font-weight: 900;
}

.price-card .btn-outline:hover,
.branch-card .btn-outline:hover {
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  background: #0E1A2A;
  color: var(--white);
  padding: clamp(2.8rem, 7vw, 6.2rem) 0 clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 32, 51, 0.92) 0%, rgba(16, 32, 51, 0.74) 48%, rgba(16, 32, 51, 0.26) 100%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-grid,
.page-hero-grid,
.lead-grid,
.split-grid,
.contact-grid,
.final-cta-inner,
.footer-grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.4rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  min-height: min(650px, calc(100vh - var(--header) - 110px));
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--deep-green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero .kicker {
  color: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 0.8rem;
  letter-spacing: 0;
}

h1 {
  font-size: 3.6rem;
  max-width: 15ch;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0 0 1rem;
}

.hero-subtitle,
.page-hero p,
.section-heading p {
  font-size: 1.04rem;
  color: var(--muted);
}

.hero-subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-row,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.35rem;
}

.final-actions .btn {
  display: inline-flex;
}

body:not(.home-page):not([data-page="contact/"]) .page-hero .cta-row {
  display: none;
}

.cta-row.centered {
  justify-content: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.trust-badges span,
.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #DCE8DF;
  color: var(--deep-green);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero .trust-badges span {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(620px, 100%);
  margin-top: 1.2rem;
}

.hero-stats div {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  gap: 1rem;
}

.hero-img,
.page-hero-img,
.rounded-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-img {
  height: min(58vw, 520px);
  min-height: 380px;
}

.enroll-card {
  width: min(360px, 100%);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  color: var(--navy);
  backdrop-filter: blur(16px);
}

.enroll-card p {
  margin-bottom: 0.35rem;
  color: var(--red);
  font-weight: 900;
}

.enroll-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(15, 127, 58, 0.18);
  box-shadow: 0 10px 25px rgba(15, 127, 58, 0.12);
}

.enroll-card strong {
  display: block;
  margin-top: 0.28rem;
}

.route-card {
  position: relative;
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(7, 92, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.route-card span:not(.route-line) {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  font-size: 0.76rem;
  font-weight: 900;
}

.route-card span:not(.route-line)::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.18);
}

.route-line {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 1.42rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.55);
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.7rem;
  padding-bottom: 1.2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-grid div {
  display: grid;
  gap: 0.5rem;
  min-height: 112px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(15, 127, 58, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.proof-grid span {
  color: var(--red);
  font-weight: 950;
  font-size: 0.8rem;
}

.proof-grid strong {
  font-size: 0.96rem;
  line-height: 1.3;
}

.section,
.page-hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--soft) 55%, #FFF9D7 100%);
  border-bottom: 1px solid rgba(15, 127, 58, 0.14);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(15, 127, 58, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, transparent 100%);
}

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

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: 3.55rem;
}

.page-hero-img {
  height: 360px;
  border: 1px solid rgba(15, 127, 58, 0.16);
}

.band {
  background: var(--soft);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: clamp(1.4rem, 4vw, 2.2rem);
}

.section-heading h2 {
  max-width: 18ch;
}

.lead-section {
  padding-top: 2rem;
}

.lead-grid {
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAF8 100%);
  position: relative;
  overflow: hidden;
}

.lead-grid::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--green), var(--gold), var(--red));
}

.lead-form,
.contact-panel,
.value-panel,
.payment-card,
.quote-band {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.36rem;
  color: #26364A;
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #CFD8E3;
  border-radius: 8px;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  color: var(--navy);
  background: #FFFFFF;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 127, 58, 0.12);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(242, 31, 43, 0.12);
}

.lead-form button {
  margin-top: 1rem;
}

.form-status {
  margin: 0.75rem 0 0;
  color: var(--deep-green);
  font-weight: 800;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.card-grid,
.pricing-grid,
.branch-grid,
.testimonial-grid,
.poster-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.price-card,
.branch-card,
.testimonial-card,
.poster-card,
.location-seo {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card::before,
.price-card::before,
.branch-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.feature-card:hover,
.price-card:hover,
.branch-card:hover,
.testimonial-card:hover,
.poster-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 127, 58, 0.22);
  box-shadow: var(--shadow);
}

.feature-card p,
.price-card p,
.branch-card p,
.testimonial-card p,
.location-seo p {
  color: var(--muted);
}

.course-price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0.35rem 0 0.85rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(15, 127, 58, 0.18);
  border-radius: 8px;
  background: #F4FBF7;
  color: var(--deep-green) !important;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.25;
}

.feature-card h2,
.location-seo h2 {
  font-size: 1.28rem;
  line-height: 1.22;
}

.legal-copy h2 {
  font-size: 1.55rem;
}

.quote-band h2 {
  font-size: 1.85rem;
}

.feature-card .text-link,
.price-card .btn,
.branch-card .btn,
.poster-card .btn {
  margin-top: auto;
}

.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF8CC, #FFFFFF);
  color: var(--navy);
  border: 1px solid #F3D45F;
  border-radius: 8px;
  font-weight: 950;
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 22px rgba(255, 210, 31, 0.18);
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.68rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 127, 58, 0.12);
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
}

.price-card.is-popular {
  border-color: #F1D04A;
  box-shadow: 0 16px 35px rgba(255, 210, 31, 0.18);
}

.price {
  color: var(--red) !important;
  font-size: 1.45rem;
  font-weight: 950;
  margin: 0.75rem 0;
}

.price-badge {
  background: var(--gold);
  color: var(--navy);
  border-color: #E5BF1A;
  margin-bottom: 0.8rem;
}

.note {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 800;
}

.poster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.poster-card {
  display: grid;
  gap: 0.85rem;
}

.poster-trigger,
.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: var(--radius);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #DADFE6;
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: inset 0 0 0 1px rgba(15, 127, 58, 0.06);
}

.branch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.branch-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.course-list-card {
  padding: 0;
}

.course-list-card .course-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.course-list-card .icon-badge,
.course-list-card h3,
.course-list-card p,
.course-list-card .check-list,
.course-list-card .text-link {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}

.course-list-card .icon-badge {
  margin-top: 1rem;
}

.course-list-card .text-link {
  margin-bottom: 1.15rem;
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stars {
  color: #C99700;
  font-size: 1.04rem;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
}

.testimonial-card h3 {
  margin-bottom: 0.15rem;
}

.testimonial-card span {
  color: var(--deep-green);
  font-weight: 850;
  font-size: 0.9rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: var(--white);
  color: var(--navy);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 0.7rem;
}

.contact-panel a {
  display: block;
  color: var(--deep-green);
  font-weight: 900;
}

.contact-link-grid {
  display: grid;
  gap: 0.7rem;
  margin: 0.35rem 0 0.75rem;
}

.contact-link-grid a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.86rem 0.95rem;
  border: 1px solid rgba(15, 127, 58, 0.16);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-link-grid a span {
  color: var(--muted);
  font-weight: 800;
}

.directions-card {
  min-height: 340px;
  border: 1px solid rgba(15, 127, 58, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.22), transparent 42%),
    linear-gradient(180deg, #FFFFFF 0%, var(--soft) 100%);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 1.35rem);
  display: grid;
  gap: 1rem;
}

.directions-card h3 {
  font-size: 1.25rem;
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(15, 127, 58, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.04);
}

.map-card-body {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.map-card-body p:last-of-type {
  color: var(--muted);
}

.branch-quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.branch-quick-list li {
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 850;
}

.map-placeholder {
  min-height: 340px;
  border: 1px dashed #A9B7C8;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #FFFFFF, #FFFFFF 14px, #F0F4F1 14px, #F0F4F1 28px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  padding: 2rem;
}

.paybill-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
}

.paybill-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--soft);
}

.paybill-list dt {
  color: var(--muted);
  font-weight: 800;
}

.paybill-list dd {
  margin: 0;
  font-weight: 950;
  font-size: 1.2rem;
}

.location-seo {
  margin-bottom: 1rem;
}

.quote-band {
  margin-top: 1.25rem;
  text-align: center;
}

.legal-copy h2 {
  margin-top: 1.5rem;
}

.final-cta {
  background: var(--deep-green);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.final-cta .kicker,
.final-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.final-cta-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.site-footer {
  background: #0E1A2A;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 calc(2rem + env(safe-area-inset-bottom));
}

.footer-grid {
  grid-template-columns: 1.45fr 0.7fr 0.82fr 0.86fr;
  align-items: start;
}

.footer-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 0.18rem;
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.55rem;
  font-weight: 750;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 850;
  min-width: 58px;
  height: 58px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  background: #18A957;
  color: var(--white);
  font-weight: 950;
  box-shadow: var(--shadow);
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 5.2rem;
  z-index: 850;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(16, 32, 51, 0.84);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  width: min(980px, 100%);
  max-height: 92vh;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  position: relative;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
}

.lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    border: 0;
    border-bottom: 1px solid rgba(15, 127, 58, 0.16);
    border-radius: 0;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 1rem;
    font-size: 0.96rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .pricing-grid,
  .branch-grid,
  .testimonial-grid,
  .gallery-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .container,
  .narrow {
    width: min(100% - 24px, 1120px);
  }

  .brand-link img {
    width: 58px;
    height: 58px;
  }

  .brand-link {
    min-width: 0;
    padding-left: 0;
  }

  .brand-text small {
    max-width: 142px;
  }

  .hero-grid,
  .page-hero-grid,
  .lead-grid,
  .split-grid,
  .contact-grid,
  .final-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(16, 32, 51, 0.92) 0%, rgba(16, 32, 51, 0.78) 58%, rgba(16, 32, 51, 0.5) 100%);
  }

  h1 {
    font-size: 2.35rem;
    max-width: 14ch;
  }

  h2 {
    font-size: 1.9rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .hero-media {
    min-height: unset;
    align-items: stretch;
  }

  .hero-img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .enroll-card {
    position: static;
    margin-top: 0.75rem;
    width: 100%;
  }

  .route-card,
  .hero-stats {
    width: 100%;
  }

  .page-hero-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  body[data-page="contact/"] .page-hero-img {
    display: none;
  }

  .lead-grid {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .form-grid,
  .card-grid,
  .poster-grid,
  .hero-stats,
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .final-actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .final-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .floating-whatsapp {
    display: none;
  }

  .back-to-top {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-top: 1px solid rgba(15, 127, 58, 0.14);
    box-shadow: 0 -10px 30px rgba(16, 32, 51, 0.14);
    padding-bottom: env(safe-area-inset-bottom);
  }

.mobile-cta-bar a {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 0.35rem 0.2rem;
    font-size: 0.78rem;
    font-weight: 950;
    color: #304156;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-cta-bar a:nth-child(2) {
    color: var(--deep-green);
  }

  .mobile-cta-bar a.is-active {
    min-height: 42px;
    margin: 8px 4px;
    border-radius: var(--radius);
    background: var(--deep-green);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(7, 92, 43, 0.18);
  }

  .mobile-cta-bar a.is-active:first-child {
    margin-left: 8px;
  }

  .mobile-cta-bar a.is-active:last-child {
    margin-right: 8px;
  }
}

@media (max-width: 560px) {
  .pricing-grid,
  .branch-grid,
  .testimonial-grid,
  .gallery-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .brand-text small {
    display: none;
  }

  .brand-link img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .section,
  .page-hero {
    padding: 2.3rem 0;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2,
  .page-hero h1 {
    font-size: 1.85rem;
  }

  .gallery-item img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .poster-card img {
    aspect-ratio: 3 / 4;
  }

  .paybill-list div {
    display: grid;
  }

  .contact-link-grid a,
  .branch-quick-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.home-page {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FAFCFB 42%, #FFFFFF 100%);
}

.home-page .hero {
  padding: 5rem 0 3.7rem;
  background: #081711;
}

.home-page .hero::before {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 210, 31, 0.1), transparent 32%);
  background-size: 42px 42px, 100% 100%;
  opacity: 0.34;
}

.home-page .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.95) 0%, rgba(7, 18, 13, 0.82) 44%, rgba(7, 18, 13, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 18, 13, 0.56), transparent 45%);
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: min(640px, calc(100vh - var(--header) - 80px));
}

.home-page h1 {
  font-size: 3.85rem;
  max-width: 13.8ch;
}

.home-page .hero-subtitle {
  max-width: 620px;
  font-size: 1.08rem;
}

.home-page .hero .btn-red {
  background: #FFFFFF;
  color: var(--deep-green);
  border-color: rgba(255, 255, 255, 0.8);
}

.home-page .hero .btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
}

.home-page .enroll-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
}

.home-page .enroll-logo {
  width: 88px;
  height: 88px;
}

.home-page .proof-grid div,
.home-page .feature-card,
.home-page .price-card,
.home-page .branch-card,
.home-page .testimonial-card,
.process-grid article {
  border-color: rgba(15, 127, 58, 0.13);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.075);
}

.home-page .section-heading h2 {
  max-width: 15ch;
}

.home-page .course-showcase-section {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 58%, #FFFFFF 100%);
}

.motion-section {
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.12), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 100%);
}

.motion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 2.4rem);
}

.motion-copy h2 {
  max-width: 12ch;
}

.motion-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.motion-highlights span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.68rem;
  border: 1px solid rgba(15, 127, 58, 0.18);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.motion-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(15, 127, 58, 0.16);
  border-radius: var(--radius);
  background: #071611;
  box-shadow: 0 28px 70px rgba(7, 22, 17, 0.22);
}

.motion-stage canvas {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

.motion-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  display: grid;
  gap: 0.18rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.motion-badge strong {
  color: var(--deep-green);
  font-weight: 950;
}

.motion-badge span {
  color: #536174;
  font-size: 0.82rem;
  font-weight: 800;
}

.home-page .lead-grid {
  padding: clamp(1rem, 3vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.16), transparent 38%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FBF9 100%);
}

.home-page .course-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.home-page .course-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr);
  min-height: 280px;
  padding: 0;
  border: 1px solid rgba(15, 127, 58, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.08), transparent 34%),
    #FFFFFF;
  box-shadow: 0 24px 56px rgba(16, 32, 51, 0.1);
}

.home-page .course-card::before {
  display: none;
}

.home-page .course-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #081711;
  isolation: isolate;
}

.home-page .course-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
  transform: scale(1.01);
}

.home-page .course-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 18, 13, 0.02) 0%, rgba(7, 18, 13, 0.28) 100%),
    linear-gradient(135deg, rgba(15, 127, 58, 0.22), transparent 54%);
}

.home-page .course-label,
.home-page .course-icon {
  position: absolute;
  z-index: 2;
}

.home-page .course-label {
  top: 0.9rem;
  left: 0.9rem;
  max-width: calc(100% - 1.8rem);
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep-green);
  font-size: 0.74rem;
  font-weight: 950;
}

.home-page .course-icon {
  left: 0.9rem;
  bottom: 0.9rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep-green);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.home-page .course-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .course-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
}

.home-page .course-eyebrow {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-page .course-card h3 {
  font-size: 1.28rem;
}

.home-page .course-card p:not(.course-eyebrow) {
  color: #536174;
}

.home-page .course-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0;
  margin: 0.15rem 0 1rem;
  list-style: none;
}

.home-page .course-points li {
  position: relative;
  min-width: 0;
  padding-left: 0.95rem;
  color: #26364A;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.3;
}

.home-page .course-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 210, 31, 0.2);
}

.home-page .course-card .text-link {
  margin-top: auto;
}

.home-page .feature-card:not(.course-card) {
  min-height: 230px;
}

.home-page .feature-card:not(.course-card) h3 {
  font-size: 1.22rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  min-height: 240px;
  padding: 1.2rem;
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FBF9 100%);
  position: relative;
  overflow: hidden;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--deep-green);
  color: var(--white);
  font-weight: 950;
}

.process-grid p {
  color: var(--muted);
}

.home-page .branch-grid,
.home-page .testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .final-cta {
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.16), transparent 36%),
    var(--deep-green);
}

.compact-fee-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-fees-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 127, 58, 0.09), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FBF9 100%);
}

.premium-fees-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.premium-fees-section .section-heading h2 {
  max-width: 17ch;
  margin-inline: auto;
}

.fee-premium-card {
  min-height: 310px;
  padding: 1.25rem;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #FFFFFF 58%, #F6FAF8 100%);
}

.fee-premium-card::before {
  height: 6px;
}

.fee-premium-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 4.4rem;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 127, 58, 0.32), rgba(255, 210, 31, 0.62), rgba(242, 31, 43, 0.32));
}

.fee-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(15, 127, 58, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.24), transparent 54%),
    #FFFFFF;
  color: var(--deep-green);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(15, 127, 58, 0.12);
}

.fee-premium-card .price-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

.fee-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.1rem;
}

.fee-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: 999px;
  background: #F8FBF9;
  color: #26364A;
  font-size: 0.76rem;
  font-weight: 900;
}

.premium-process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.13), transparent 36%),
    #071611;
  color: var(--white);
}

.premium-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
}

.process-shell {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.process-heading {
  margin-inline: auto;
  text-align: center;
}

.process-heading .kicker {
  color: var(--gold);
}

.process-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
  color: var(--white);
}

.process-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.premium-process-grid article {
  min-height: 285px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.07) 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.premium-process-grid article::before {
  height: 5px;
}

.premium-process-grid article::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 4.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 210, 31, 0.72), rgba(255, 255, 255, 0.08));
}

.premium-process-grid span {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(255, 210, 31, 0.22);
}

.premium-process-grid article small {
  display: block;
  margin: -0.3rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-process-grid h3 {
  color: var(--white);
}

.premium-process-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.branch-summary-section {
  background:
    linear-gradient(135deg, rgba(15, 127, 58, 0.08), transparent 38%),
    #FFFFFF;
}

.branch-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.72fr) minmax(260px, 1fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.45rem);
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: 0 20px 50px rgba(16, 32, 51, 0.08);
}

.branch-summary .cta-row {
  grid-column: 1 / -1;
  margin-top: 0;
}

.branch-route-card {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 0.18rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.2), transparent 38%),
    #071611;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(7, 22, 17, 0.18);
}

.branch-route-card::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 47%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.branch-route-card strong,
.branch-route-card small {
  position: relative;
  z-index: 1;
}

.branch-route-card strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.branch-route-card small {
  max-width: 21ch;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.route-dot {
  position: absolute;
  z-index: 1;
  top: calc(47% - 9px);
  width: 20px;
  height: 20px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.route-dot-a {
  left: 11%;
}

.route-dot-b {
  left: 36%;
  background: var(--gold);
}

.route-dot-c {
  left: 62%;
}

.route-dot-d {
  right: 11%;
  background: var(--red);
}

.branch-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-self: stretch;
  align-content: center;
  padding: 0.9rem;
  border: 1px solid rgba(15, 127, 58, 0.12);
  border-radius: var(--radius);
  background: #F8FBF9;
}

.branch-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(15, 127, 58, 0.16);
  border-radius: 999px;
  background: var(--soft);
  color: var(--deep-green);
  font-weight: 900;
}

.fees-premium-page {
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.12), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 100%);
}

.fees-premium-page .section-heading {
  margin-inline: auto;
  text-align: center;
}

.fees-premium-page .section-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.fees-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fees-page-grid .price-card {
  min-height: 270px;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 55%, #F7FAF8 100%);
}

.fees-page-grid .price-card::after {
  content: attr(data-fee-code);
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 0.4rem;
  border: 1px solid rgba(15, 127, 58, 0.16);
  border-radius: var(--radius);
  background: #FFFFFF;
  color: var(--deep-green);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(15, 127, 58, 0.1);
}

.fees-page-grid .price-badge {
  align-self: flex-start;
  margin-right: 3rem;
}

.fees-page-grid .price {
  color: var(--deep-green) !important;
}

.premium-payment-section .split-grid {
  align-items: stretch;
}

.premium-payment-section .payment-card {
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.16), transparent 38%),
    #071611;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.premium-payment-section .payment-card .kicker {
  color: var(--gold);
}

.premium-payment-section .payment-card h2,
.premium-payment-section .payment-card p {
  color: var(--white);
}

.premium-payment-section .payment-card p {
  color: rgba(255, 255, 255, 0.78);
}

.premium-payment-section .paybill-list div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.premium-payment-section .paybill-list dt {
  color: rgba(255, 255, 255, 0.72);
}

.premium-payment-section .paybill-list dd {
  color: var(--gold);
}

.premium-payment-section .split-grid > div:not(.payment-card) {
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.premium-branches-page {
  background:
    linear-gradient(135deg, rgba(15, 127, 58, 0.08), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 100%);
}

.premium-branches-page .section-heading {
  margin-inline: auto;
  text-align: center;
}

.premium-branches-page .section-heading h2 {
  max-width: 19ch;
  margin-inline: auto;
}

.branch-premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.branch-premium-grid .branch-card {
  min-height: 420px;
  padding: 1rem;
}

.branch-premium-grid .branch-card::after {
  content: attr(data-branch-code);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  min-width: 46px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 950;
}

.branch-premium-grid .branch-photo {
  width: calc(100% + 2rem);
  height: 184px;
  margin: -1rem -1rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: saturate(0.96) contrast(1.04);
}

.branch-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.branch-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.56rem;
  border: 1px solid rgba(15, 127, 58, 0.14);
  border-radius: 999px;
  background: #F8FBF9;
  color: var(--deep-green);
  font-size: 0.74rem;
  font-weight: 900;
}

body[data-page="branches/"] .location-seo {
  border-left: 5px solid var(--deep-green);
  background:
    linear-gradient(90deg, rgba(15, 127, 58, 0.06), transparent 40%),
    #FFFFFF;
}

@media (max-width: 1080px) {
  .home-page .course-showcase,
  .process-grid,
  .home-page .branch-grid,
  .home-page .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .course-card {
    grid-template-columns: 1fr;
  }

  .home-page .course-visual {
    min-height: 210px;
  }

  .motion-grid,
  .branch-summary {
    grid-template-columns: 1fr;
  }

  .fees-page-grid,
  .branch-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-page .hero {
    padding: 2.6rem 0 2.2rem;
  }

  .home-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 18, 13, 0.94) 0%, rgba(7, 18, 13, 0.84) 62%, rgba(7, 18, 13, 0.62) 100%);
  }

  .home-page h1 {
    font-size: 2.28rem;
    max-width: 12.5ch;
  }

  .home-page .hero-subtitle {
    font-size: 1rem;
  }

  .home-page .hero-media {
    display: none;
  }

  .home-page .proof-strip {
    margin-top: 0;
    padding-top: 1rem;
  }

  .home-page .lead-grid {
    padding: 1rem;
    border: 1px solid rgba(15, 127, 58, 0.12);
    box-shadow: var(--shadow-soft);
  }

  .motion-stage,
  .motion-stage canvas {
    min-height: 270px;
  }

  .home-page .course-showcase,
  .process-grid,
  .home-page .branch-grid,
  .home-page .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-page .course-card {
    min-height: auto;
  }

  .home-page .course-visual {
    min-height: 190px;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-shell {
    padding: 1rem;
  }

  .premium-process-grid article::after {
    top: 4.4rem;
  }

  .branch-route-card {
    min-height: 150px;
  }

  .mobile-cta-bar {
    border-top-color: rgba(15, 127, 58, 0.16);
  }
}

@media (max-width: 560px) {
  .home-page h1 {
    font-size: 2rem;
  }

  .home-page .trust-badges {
    gap: 0.45rem;
  }

  .home-page .trust-badges span {
    font-size: 0.77rem;
  }

  .home-page .course-visual {
    min-height: 170px;
  }

  .home-page .course-content {
    padding: 1rem;
  }

  .home-page .course-card h3 {
    font-size: 1.18rem;
  }

  .home-page .course-points {
    grid-template-columns: 1fr;
  }

  .motion-stage,
  .motion-stage canvas {
    min-height: 230px;
  }

  .motion-badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .compact-fee-grid {
    grid-template-columns: 1fr;
  }

  .fees-page-grid,
  .branch-premium-grid {
    grid-template-columns: 1fr;
  }

  .fee-premium-card .price-badge {
    position: static;
    align-self: flex-start;
  }

  .fee-premium-card {
    min-height: auto;
  }

  .branch-summary {
    padding: 1rem;
  }

  .branch-route-card {
    min-height: 138px;
  }

  .branch-chip-grid {
    padding: 0.75rem;
  }

  .fees-page-grid .price-badge {
    margin-right: 3.4rem;
  }

  .map-card iframe {
    min-height: 260px;
  }
}

.motion-canvas-img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; }
.motion-canvas-img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; }
.motion-canvas-img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; }
.motion-canvas-img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; }




/* ============================================
   APPLICATION MODAL - PREMIUM STYLING
   ============================================ */

.application-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 32, 51, 0.6);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  overflow-y: auto;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.application-modal[hidden] {
  display: none;
}

.application-modal-panel {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(16, 32, 51, 0.2);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  position: relative;
  animation: slideInUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(15, 127, 58, 0.1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.application-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0.25rem 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  z-index: 10;
}

.application-modal-close:hover {
  background: var(--soft);
  color: var(--red);
  transform: scale(1.1);
}

/* Header Section */
.application-modal-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--deep-green) 100%);
  color: var(--white);
  padding: 2rem 2rem 1.5rem;
  border-radius: 12px 12px 0 0;
}

.modal-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.application-modal-header h2 {
  margin: 0.5rem 0 0;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

/* Course Info Card - PREMIUM */
.course-info-card {
  margin: 0;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--soft-gold) 0%, rgba(255, 210, 31, 0.08) 100%);
  border-bottom: 2px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.course-info-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--deep-green);
  margin: 0;
}

.info-value {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-word;
}

.info-fee {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.01em;
}

/* Form Section */
.application-modal-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

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

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0;
}

.form-group input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--navy);
  transition: all 0.2s ease;
}

.form-group input::placeholder {
  color: rgba(91, 103, 119, 0.5);
}

.form-group input:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(15, 127, 58, 0.02);
  box-shadow: 0 0 0 3px rgba(15, 127, 58, 0.1);
}

/* Submit Button */
.btn-submit {
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--red) 0%, #d91b1f 100%);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 31, 43, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Disclaimer */
.form-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .application-modal {
    padding: 1rem;
  }

  .application-modal-panel {
    border-radius: 10px;
  }

  .application-modal-header {
    padding: 1.5rem 1.5rem 1.25rem;
    border-radius: 10px 10px 0 0;
  }

  .application-modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-kicker {
    font-size: 0.7rem;
  }

  .course-info-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .info-fee {
    font-size: 1.375rem;
  }

  .application-modal-form {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .form-group input {
    padding: 0.8125rem 0.875rem;
    font-size: 16px;
  }

  .btn-submit {
    padding: 0.9375rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .application-modal {
    padding: 0.75rem;
  }

  .application-modal-panel {
    max-height: 85vh;
    border-radius: 10px;
  }

  .application-modal-header {
    padding: 1.25rem 1.25rem 1rem;
  }

  .application-modal-header h2 {
    font-size: 1.25rem;
  }

  .modal-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  .application-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .course-info-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 0.875rem;
  }

  .info-label {
    font-size: 0.75rem;
  }

  .info-value {
    font-size: 0.95rem;
  }

  .info-fee {
    font-size: 1.25rem;
  }

  .application-modal-form {
    padding: 1.25rem;
    gap: 1rem;
  }

  .form-section-title {
    font-size: 0.85rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input {
    padding: 0.75rem 0.8125rem;
    font-size: 16px;
    border-radius: 5px;
  }

  .btn-submit {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .form-disclaimer {
    font-size: 0.75rem;
  }
}
