/* =========================================================
   INTERIOR GURUKULAM — Shared Sub-page Design System
   Desktop + Mobile · Olive / Terracotta / Cream
   ========================================================= */

:root {
  --olive: #3d5228;
  --olive-dark: #2a3a1c;
  --olive-deep: #1e2b14;
  --terracotta: #c24a1a;
  --terracotta-dark: #9e3a12;
  --orange: #e0671f;
  --gold: #d98516;
  --cream: #f6f1e8;
  --cream-soft: #fbf8f2;
  --card: #ffffff;
  --ink: #1f1a14;
  --ink-muted: #4a4036;
  --line: rgba(61, 82, 40, 0.15);
  --wa: #25d366;
  --radius: 1rem;
  --radius-lg: 1.35rem;
  --shadow: 0 10px 28px rgba(30, 25, 15, 0.12);
  --font: "Montserrat", system-ui, sans-serif;
  --font-ta: "Noto Sans Tamil", "Montserrat", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
}

img.icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.icon-28 {
  width: 28px;
  height: 28px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-22 {
  width: 22px;
  height: 22px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-36 {
  width: 36px;
  height: 36px;
}



a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== SITE HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--olive-dark);
  color: #fff;
  overflow: visible;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  overflow: visible;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(224, 103, 31, 0.55);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand__name {
  font-size: clamp(0.78rem, 2.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand__name span {
  color: var(--orange);
}

.brand__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.15rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.nav-badge {
  display: inline-block;
  background: var(--terracotta, #b84c2a);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1.2;
}

.header-signin-link {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--orange);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.header-signin-link:hover {
  background: rgba(224, 103, 31, 0.2);
}

.header-account {
  position: relative;
  flex-shrink: 0;
}

.header-account[open],
.header-account.is-open {
  z-index: 250;
}

.header-account__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.45rem 0.2rem 0.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  list-style: none;
}

.header-account__trigger::-webkit-details-marker {
  display: none;
}

.header-account__trigger::marker {
  content: "";
}

.header-account__trigger:hover,
.header-account[open] .header-account__trigger,
.header-account.is-open .header-account__trigger {
  background: rgba(255, 255, 255, 0.12);
}

.header-account__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.header-account__avatar--lg {
  width: 40px;
  height: 40px;
  font-size: 0.95rem;
}

.header-account__name {
  font-size: 0.72rem;
  font-weight: 700;
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account__caret {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.header-account.is-open .header-account__caret,
.header-account[open] .header-account__caret {
  transform: rotate(180deg);
}

.header-account__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(280px, calc(100vw - 24px));
  background: #fff;
  color: #202124;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(60, 64, 67, 0.28);
  padding: 0.65rem 0;
  z-index: 260;
}

.header-account__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.85rem;
  border-bottom: 1px solid #e8eaed;
}

.header-account__profile strong {
  display: block;
  font-size: 0.88rem;
  color: #202124;
}

.header-account__profile small {
  display: block;
  font-size: 0.72rem;
  color: #5f6368;
  margin-top: 0.15rem;
  word-break: break-all;
}

.header-account__links {
  display: grid;
  padding: 0.35rem 0;
}

.header-account__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.62rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3c4043;
  transition: background 0.15s ease;
}

.header-account__links a:hover,
.header-account__links a.is-active {
  background: #f1f3f4;
  color: var(--terracotta, #b84c2a);
}

.header-account__signout {
  display: block;
  margin: 0.35rem 0.75rem 0.25rem;
  padding: 0.62rem 0.75rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3c4043;
  border: 1px solid #dadce0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.header-account__signout:hover {
  background: #f8f9fa;
  border-color: #c6c9cc;
}

.mobile-nav-user {
  display: none;
}

.mobile-nav-user__signout {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-enquire:hover {
  background: rgba(224, 103, 31, 0.2);
  transform: translateY(-1px);
}

.btn-enquire svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  color: var(--orange);
  flex-shrink: 0;
}

.nav-toggle__bars {
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle__bars span {
  display: block;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(5.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-5.75px) rotate(-45deg);
}

.site-nav {
  background: var(--olive-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  width: 100%;
}

.site-nav.is-open {
  max-height: 480px;
}

/* Mobile: logo left · Enquire + menu right (same row) */
@media (max-width: 959px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    column-gap: 0.65rem;
    row-gap: 0;
    padding: 0.7rem 0.9rem;
  }

  .brand {
    grid-area: brand;
    gap: 0.5rem;
    flex: unset;
    min-width: 0;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand__sub {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .header-actions {
    grid-area: actions;
    margin-left: 0;
    gap: 0.35rem;
    flex-wrap: nowrap;
  }

  .header-signin-link {
    display: none;
  }

  .header-account__name,
  .header-account__caret {
    display: none;
  }

  .header-account__trigger {
    padding: 0.15rem;
  }

  .mobile-nav-user {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.35rem;
  }

  .btn-enquire {
    padding: 0.42rem 0.65rem;
    font-size: 0.62rem;
    gap: 0.3rem;
  }

  .btn-enquire svg {
    width: 14px;
    height: 14px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
  }

  .site-nav:not(.is-open) {
    border-top: 0;
  }
}

@media (max-width: 420px) {
  .brand__sub {
    display: none;
  }

  .btn-enquire {
    padding: 0.4rem 0.55rem;
    font-size: 0.58rem;
  }
}

.site-nav__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav__list a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
  background: rgba(224, 103, 31, 0.18);
  color: #fff;
}

.header-curve {
  height: 18px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-top: -1px;
}

/* Desktop nav — flex layout with separated brand, nav, and actions */
@media (min-width: 960px) {
  .site-header__inner {
    max-width: 1400px;
    padding: 0.65rem 1.25rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
  }

  .brand__name {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .brand__sub {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    flex: 1 1 auto;
    max-height: none;
    overflow: visible;
    background: transparent;
    border-top: 0;
    width: auto;
    min-width: 0;
  }

  .site-nav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav__list::-webkit-scrollbar {
    display: none;
  }

  .site-nav__list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.44rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1.2;
    border-radius: 6px;
  }

  .header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
    order: 3;
  }

  .site-nav {
    order: 2;
  }

  .brand {
    order: 1;
  }

  .mobile-nav-user {
    display: none;
  }

  .btn-enquire {
    padding: 0.46rem 0.8rem;
    font-size: 0.66rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .site-header__inner {
    padding: 0.75rem 1.5rem;
    gap: 1rem;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
  }

  .brand__name {
    font-size: 0.88rem;
  }

  .site-nav__list {
    gap: 0.25rem;
  }

  .site-nav__list a {
    padding: 0.4rem 0.52rem;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }

  .btn-enquire {
    padding: 0.5rem 0.9rem;
    font-size: 0.7rem;
  }
}

@media (min-width: 960px) and (max-width: 1099px) {
  .brand__sub {
    display: none;
  }

  .site-nav__list a {
    padding: 0.35rem 0.32rem;
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .btn-enquire {
    padding: 0.42rem 0.65rem;
    font-size: 0.6rem;
  }
}


/* ========== PAGE SHELL ========== */
.page-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1.25rem 2.5rem;
}

.page-hero {
  text-align: center;
  padding: 0.5rem 0 1.5rem;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-size: clamp(1.55rem, 4.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.page-hero__title .accent {
  color: var(--terracotta);
  display: block;
}

.page-hero__slash {
  color: var(--ink-muted);
  font-weight: 700;
}

.page-hero__accent {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--olive-dark);
  letter-spacing: 0.06em;
}

@media (min-width: 640px) {
  .page-hero__accent {
    display: inline;
    margin-top: 0;
    margin-left: 0.15em;
  }
}

.page-hero__sub {
  margin-top: 0.65rem;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  color: var(--ink-muted);
  font-weight: 500;
}

.page-hero__ta {
  font-family: var(--font-ta);
  font-size: clamp(1.15rem, 3.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--olive-dark);
  margin-bottom: 0.75rem;
}

.page-hero__ta .accent {
  color: var(--terracotta);
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0.5rem 0 1.5rem;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  max-height: 380px;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner--portrait {
  aspect-ratio: 4 / 3;
  max-height: 420px;
  max-width: min(100%, 640px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ========== BENEFIT BARS (flyer style) ========== */
.benefit-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 0;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 1.15rem;
  padding: 1.25rem 0.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 10px 24px rgba(30, 25, 15, 0.14);
  overflow: hidden;
}

.benefit-bar__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  min-height: 100%;
}

.benefit-bar__item:not(:nth-child(2n))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1.5px;
  background: rgba(224, 103, 31, 0.55);
}

.benefit-bar__ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0.55rem;
  box-sizing: border-box;
}

.benefit-bar__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(82%) saturate(1800%) hue-rotate(352deg) brightness(1.05);
}

.benefit-bar__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 0.75rem;
  margin: 1.5rem 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(30, 25, 15, 0.14);
}

.trust-bar__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.55rem 0.85rem;
}

.trust-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.28);
}

.trust-bar__ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-bar__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(82%) saturate(1800%) hue-rotate(352deg) brightness(1.05);
}

.trust-bar__label {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  min-height: 0;
  display: block;
}

@media (min-width: 720px) {
  .benefit-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.4rem 0.5rem;
    border-radius: 1.25rem;
  }

  .benefit-bar__item:not(:nth-child(2n))::after {
    display: none;
  }

  .benefit-bar__item:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1.5px;
    background: rgba(224, 103, 31, 0.65);
  }

  .benefit-bar__ring {
    width: 60px;
    height: 60px;
  }

  .benefit-bar__label {
    font-size: 0.78rem;
  }

  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 0.95rem 0.5rem;
    border-radius: 999px;
  }

  .trust-bar__item {
    justify-content: center;
    padding: 0.35rem 0.75rem;
    gap: 0.7rem;
  }

  .trust-bar__icon {
    width: 34px;
    height: 34px;
  }

  .trust-bar__label {
    font-size: 0.68rem;
  }
}

@media (max-width: 719px) {
  .trust-bar {
    border-radius: 1.15rem;
  }

  .trust-bar__item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 12%;
    right: 12%;
    width: auto;
    height: 1px;
  }
}


/* ========== SECTION TITLES ========== */
.section-title {
  text-align: center;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-title span,
.section-title--biz span {
  color: var(--terracotta);
}

.section-title::before,
.section-title::after {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--orange);
  opacity: 0.7;
}

.section-title--pill {
  display: inline-flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  gap: 0;
}

.section-title--pill::before,
.section-title--pill::after {
  display: none;
}

.banner-title {
  background: var(--olive-dark);
  color: #fff;
  text-align: center;
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.35rem;
}

.section-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--terracotta);
  margin: 0.15rem 0 0.85rem;
}

.section-arrow svg {
  width: 36px;
  height: 36px;
  stroke-width: 3.2;
}

.has-motion .section-arrow {
  animation: ig-arrow-bounce 1.6s ease-in-out infinite;
}

@keyframes ig-arrow-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(6px); opacity: 1; }
}

.pill-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--olive-dark);
  color: #fff;
  font-family: var(--font-ta);
  font-size: clamp(0.8rem, 2.4vw, 0.95rem);
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  margin: 0.5rem auto 1.25rem;
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
}

/* ========== CARDS ========== */
.program-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 860px) {
  .program-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.program-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.program-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card__badge {
  position: absolute;
  left: 0.85rem;
  bottom: -1.1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding: 0.55rem;
}

.program-card__badge .icon {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.program-card__badge svg {
  width: 20px;
  height: 20px;
}

.program-card__body {
  padding: 1.6rem 1.1rem 1.1rem;
  flex: 1;
}

.program-card__title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.45rem;
}

.program-card__title span {
  color: var(--olive-dark);
}

.program-card__desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.program-card__fee {
  background: var(--olive-dark);
  color: var(--orange);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.8rem 0.75rem;
  text-transform: uppercase;
}

/* Offer / info cards (carpenter style) */
.offer-card {
  background: var(--cream-soft);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow);
}

.offer-card__head {
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.offer-card__head svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.offer-card__fee {
  background: var(--olive-dark);
  color: #fff;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.offer-card__fee small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 0.2rem;
  letter-spacing: 0.08em;
}

.offer-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__body {
  padding: 1.1rem 1rem 1.25rem;
}

.offer-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.offer-meta__row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--ink);
}

.offer-meta__row svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.payment-grid__item {
  text-align: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 0.4rem;
  border: 1px solid var(--line);
}

.payment-grid__item strong {
  display: block;
  color: var(--terracotta);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.payment-grid__item span {
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--ink-muted);
}

/* ========== COURSES LIST ========== */
.courses-grid {
  display: grid;
  gap: 0 1.5rem;
}

@media (min-width: 720px) {
  .courses-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.course-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 1rem 0.15rem;
  border-bottom: 1px solid var(--line);
}

.course-item__main {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.course-item__main:hover .course-item__name {
  color: var(--terracotta);
}

.course-item__enroll {
  flex-shrink: 0;
  padding: 0.5rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .course-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-bottom: 0.85rem;
  }

  .course-item__enroll {
    justify-self: end;
    margin-left: calc(48px + 0.85rem);
  }
}

.course-item__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 0;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.course-item__num .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
}

.course-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.course-item__name {
  font-size: 0.84rem;
  font-weight: 750;
  color: var(--ink);
  line-height: 1.3;
}

.course-item__price {
  margin-top: 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.35;
}

.course-item__price s {
  opacity: 0.65;
  margin-right: 0.4rem;
}

.course-item__price .offer {
  color: var(--terracotta);
  font-weight: 800;
}

.course-item--wa .course-item__num {
  background: transparent;
}

.courses-highlight--women {
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff9f2 0%, #fdebdc 48%, #f8ede0 100%);
  border: 2px solid rgba(194, 74, 26, 0.35);
  box-shadow: 0 10px 28px rgba(194, 74, 26, 0.12);
  text-align: center;
}

.courses-highlight__head {
  text-align: center;
  margin-bottom: 0.65rem;
}

.courses-highlight__badge {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(194, 74, 26, 0.25);
}

.courses-highlight__title {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 900;
  color: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.15rem 0 0.35rem;
}

.courses-highlight__sub {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--terracotta);
}

.courses-highlight__message {
  text-align: center;
  max-width: 680px;
  margin: 0.75rem auto 0;
  padding: 0.9rem 1.2rem 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  border: 1px dashed rgba(194, 74, 26, 0.3);
}

.courses-highlight__message p {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
}

.courses-highlight__message p:last-child {
  margin-bottom: 0;
}

.courses-highlight__message p.ta {
  font-weight: 600;
  color: #2b3318;
  font-size: 0.95rem;
}

.courses-highlight__message p.en {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.courses-grid--women {
  gap: 0;
}

.course-item--women {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 0.85rem 0.65rem;
  margin-bottom: 0.45rem;
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(42, 58, 28, 0.06);
}

.course-item--women .course-item__name {
  color: var(--olive-dark);
}

.course-item--women .course-item__price .offer {
  color: #b42318;
  font-weight: 900;
}

.course-item--women .course-item__enroll {
  background: var(--olive-dark);
  box-shadow: 0 6px 14px rgba(42, 58, 28, 0.22);
}

.course-detail--women .course-detail__title {
  color: var(--olive-dark);
}

.module-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 4px 14px rgba(30, 25, 15, 0.06);
  border: 1px solid var(--line);
}

.module-item__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0.45rem;
  box-sizing: border-box;
}

.module-item__num .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.module-item__name {
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--ink);
}

.feature-pill .icon {
  width: 28px;
  height: 28px;
}

.why-grid__item .icon,
.get-grid__item .icon {
  width: 36px;
  height: 36px;
  filter: none;
}

.emi-grid__item .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.45rem;
  filter: none;
  display: block;
}

.check-list-inline .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.regions-list .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bonus-banner .icon,
.bonus-banner__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: none;
}

.bonus-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--olive-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  text-align: left;
  margin: 0.5rem 0 1.5rem;
}

.bonus-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.bonus-banner__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.bonus-banner__title {
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 750;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.bonus-banner svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold);
}

.pay-card__title .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0.25rem;
}

.pay-card__title .num:has(.icon) {
  background: transparent;
  padding: 0;
  width: 32px;
  height: 32px;
}

.pay-card__title .num .icon {
  filter: none;
}

.checklist .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.emi-breakdown__item .icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.3rem;
}

/* ========== EXPRESS / PRICING BOXES ========== */
.price-box {
  background: linear-gradient(160deg, var(--orange) 0%, var(--terracotta-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem 0;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 1rem auto 1.25rem;
  max-width: 420px;
  overflow: hidden;
}

.price-box__regular {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.price-box__regular s {
  text-decoration-thickness: 2px;
}

.price-box__amount {
  font-size: clamp(2.2rem, 7vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0.25rem 0 0.85rem;
}

.price-box__ribbon {
  background: #111;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  margin: 0 -1.25rem;
}

.price-box--green {
  background: linear-gradient(160deg, var(--olive) 0%, var(--olive-deep) 100%);
}

.express-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0.5rem auto 1rem;
}

.express-badge em {
  color: var(--orange);
  font-style: normal;
  font-size: 1.1rem;
}

.modules-grid {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== NRI / EMI LAYOUTS ========== */
.feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

@media (min-width: 720px) {
  .feature-pills {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  background: #efe6d6;
  border-radius: 0.85rem;
  padding: 0.9rem 0.5rem;
  text-align: center;
}

.feature-pill svg {
  width: 26px;
  height: 26px;
  color: var(--terracotta);
}

.feature-pill span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--olive-dark);
}

.regions-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  margin: 1rem 0 1.5rem;
}

.regions-card__title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 0.75rem;
  text-align: center;
}

.regions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

@media (min-width: 640px) {
  .regions-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.regions-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
}

.regions-list svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-pair {
  display: grid;
  gap: 1.15rem;
  margin: 1.25rem 0;
}

@media (min-width: 780px) {
  .pricing-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.pay-card {
  background: #efe6d6;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow);
  position: relative;
}

.pay-card__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.pay-card__title .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pay-card__regular {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.pay-card__offer {
  background: var(--orange);
  color: #fff;
  border-radius: 0.65rem;
  padding: 0.75rem 0.85rem;
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
}

.pay-card__save {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 0.35rem;
  margin-bottom: 0.85rem;
}

.checklist {
  display: grid;
  gap: 0.4rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink);
}

.checklist svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.emi-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0.85rem 0;
}

.emi-breakdown__item {
  text-align: center;
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.65rem 0.35rem;
}

.emi-breakdown__item strong {
  display: block;
  color: var(--terracotta);
  font-size: 0.85rem;
}

.emi-breakdown__item span {
  font-size: 0.58rem;
  font-weight: 650;
  color: var(--ink-muted);
  line-height: 1.2;
}

.emi-summary {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive-deep) 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: clamp(0.68rem, 2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0.75rem auto 0;
  line-height: 1.45;
  max-width: 100%;
  box-shadow: 0 6px 18px rgba(42, 58, 28, 0.18);
}

.emi-highlight {
  text-align: center;
  margin: 0.5rem 0 1rem;
}

.emi-highlight__price {
  font-size: clamp(2rem, 7vw, 2.8rem);
  font-weight: 900;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  line-height: 1;
}

.emi-highlight__label {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1rem auto;
  max-width: 520px;
}

.stat-box {
  background: var(--olive-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  color: var(--orange);
  letter-spacing: 0.02em;
}

.stat-box span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.emi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 0.65rem;
  background: transparent;
  border-radius: 0;
  padding: 0.5rem 0 0.25rem;
  margin: 1rem 0 0.75rem;
}

@media (min-width: 720px) {
  .emi-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.emi-grid__item {
  text-align: center;
  padding: 0.75rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #ece3d8;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(42, 36, 24, 0.04);
}

.emi-grid__item strong {
  display: block;
  color: var(--terracotta);
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 0.15rem;
}

.emi-grid__item span {
  font-size: 0.62rem;
  font-weight: 750;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.15rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  background: #efe6d6;
  border-radius: var(--radius-lg);
  padding: 1.15rem 0.85rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.why-grid__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.why-grid__item svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}

.why-grid__item span {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--olive-dark);
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 720px) {
  .get-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.get-grid__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.get-grid__item svg {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
}

.get-grid__item span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--olive-dark);
  line-height: 1.25;
}

.get-grid--band {
  background: var(--olive-dark);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  gap: 1rem;
  margin-top: 0;
  position: relative;
  border-top: 4px solid var(--terracotta);
}

.get-grid--band .get-grid__item span {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.65rem;
}

.get-grid--band .get-grid__item .icon {
  width: 40px;
  height: 40px;
}

@media (min-width: 720px) {
  .get-grid--band {
    padding: 1.35rem 1.25rem;
  }
}

.get-grid--cream {
  background: transparent;
  margin-top: 0.25rem;
}

.get-grid--cream .get-grid__item .icon {
  width: 44px;
  height: 44px;
}

.get-grid--cream .get-grid__item span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0.01em;
}

.check-list-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  margin: 1rem 0;
}

.check-list-inline li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: var(--olive-dark);
}

.check-list-inline svg {
  width: 14px;
  height: 14px;
  color: var(--terracotta);
}

/* ========== CTA + BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(194, 74, 26, 0.28);
}

.btn--orange:hover {
  background: var(--terracotta);
}

.btn--green {
  background: var(--olive-dark);
  color: #fff;
  box-shadow: 0 8px 18px rgba(42, 58, 28, 0.28);
}

.btn--green:hover {
  background: var(--olive);
}

.btn--block {
  width: 100%;
  max-width: 360px;
}

.cta-center {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem;
}

.cta-center--stack {
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.cta-center--stack .btn--block {
  width: 100%;
  max-width: 360px;
}

.express-pricing {
  max-width: 460px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.express-pricing .price-box {
  margin-left: auto;
  margin-right: auto;
}

.express-pricing .cta-center {
  margin-bottom: 0;
}

.cta-band {
  background: var(--olive-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

@media (min-width: 720px) {
  .cta-band {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.35rem 1.5rem;
  }
}

.cta-band__copy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cta-band__copy svg {
  width: 36px;
  height: 36px;
  color: var(--wa);
  flex-shrink: 0;
}

.cta-band__copy strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.cta-band__copy p {
  font-size: 0.78rem;
  opacity: 0.88;
  line-height: 1.4;
}

.cta-band__copy .accent {
  color: var(--orange);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--olive-dark);
  color: #fff;
  margin-top: 1rem;
}

.site-footer__wave {
  height: 14px;
  background: var(--cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1.25rem;
  text-align: center;
}

.site-footer__brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__tag {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__managed {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
}

.socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.socials--icons-only a {
  flex-direction: row;
  font-size: 0;
}

.socials__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.socials__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.socials__icon--fb {
  background: #1877f2;
}

.socials__icon--ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.socials__icon--yt {
  background: #ff0000;
  border-radius: 0.55rem;
}

.socials__icon--li {
  background: #0a66c2;
}

.site-footer__url {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 0.75rem;
  border-top: none;
}

.site-footer__url svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* ========== UTILS ========== */
.ta {
  font-family: var(--font-ta);
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.75rem;
}

.mb-1 {
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 1.25rem;
}

.two-col-media {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0 1.5rem;
}

@media (min-width: 860px) {
  .two-col-media {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* ========== BUSINESS PAGE — HERO + ENROLL ========== */
.biz-hero {
  text-align: center;
  padding: 0.35rem 0 1.25rem;
}

.biz-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.55rem;
}

.biz-hero__title {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.biz-hero__title .accent {
  display: block;
  color: var(--terracotta);
}

.biz-hero__sub {
  margin-top: 0.7rem;
  font-size: clamp(0.95rem, 2.3vw, 1.1rem);
  color: var(--ink-muted);
  font-weight: 500;
}

.biz-hero__cta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.biz-visual {
  position: relative;
  margin: 0.35rem auto 1.35rem;
  max-width: 920px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(30, 25, 15, 0.16);
  aspect-ratio: 16 / 9;
  background: #e8e0d4;
}

.biz-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.biz-visual__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 43, 20, 0.18) 100%);
}

.btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--olive-dark);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-enroll:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(194, 74, 26, 0.28);
}

.btn-enroll__fee {
  color: inherit;
}

.btn-enroll__action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.btn-enroll:hover .btn-enroll__action {
  background: rgba(255, 255, 255, 0.22);
}

.btn-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(194, 74, 26, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-pay:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(194, 74, 26, 0.34);
}

.btn-pay--outline {
  background: transparent;
  color: var(--olive-dark);
  border: 2px solid var(--olive-dark);
  box-shadow: none;
}

.btn-pay--outline:hover {
  background: var(--olive-dark);
  color: #fff;
}

.program-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(30, 25, 15, 0.16);
}

.program-card__media {
  aspect-ratio: 16 / 10;
}

.program-card__media img {
  transition: transform 0.45s ease;
}

.program-card:hover .program-card__media img {
  transform: scale(1.04);
}

.program-card__actions {
  display: grid;
  gap: 0;
  margin-top: auto;
}

.program-card__fee-row {
  background: var(--olive-dark);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem 0.15rem;
}

.program-card__fee-row strong {
  display: block;
  color: var(--orange);
  font-size: 1rem;
  margin-top: 0.1rem;
  letter-spacing: 0.04em;
}

/* ========== CARPENTER / OWNER PAGE ========== */
.oc-hero {
  text-align: center;
  padding: 0.25rem 0 1.35rem;
}

.oc-hero__title {
  font-family: var(--font-ta);
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--olive-dark);
  margin-bottom: 1rem;
}

.oc-hero__title .accent {
  color: var(--terracotta);
  display: block;
}

.oc-hero__banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 100%;
  background: var(--olive-dark);
  color: #fff;
  font-family: var(--font-ta);
  font-size: clamp(0.82rem, 2.4vw, 0.98rem);
  font-weight: 700;
  line-height: 1.4;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-align: center;
}

.oc-hero__banner .arrow {
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

.oc-card {
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.oc-card__head {
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.15rem 0.75rem 0.9rem;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.oc-card__head-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.oc-card__head-icon .icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: none;
}

.oc-card__head-icon svg {
  width: 28px;
  height: 28px;
}

.oc-card__body {
  padding: 1rem;
}

.oc-top {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

@media (min-width: 720px) {
  .oc-top {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    gap: 1rem;
  }
}

.oc-fee {
  background: var(--olive-dark);
  border-radius: 0.9rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 140px;
}

.oc-fee__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 0.35rem;
}

.oc-fee__amount {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.oc-fee__note {
  font-family: var(--font-ta);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.55rem;
  line-height: 1.35;
  opacity: 0.92;
}

.oc-media {
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 160px;
  background: #ddd;
}

.oc-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

@media (min-width: 720px) {
  .oc-media,
  .oc-media img {
    min-height: 100%;
  }
}

.oc-intro {
  font-family: var(--font-ta);
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.oc-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  margin: 0.25rem 0 0.9rem;
  color: var(--olive-dark);
}

.oc-support svg {
  width: 26px;
  height: 26px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.oc-support__text {
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.oc-support__text small {
  display: block;
  font-family: var(--font-ta);
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--ink-muted);
  margin-top: 0.15rem;
  letter-spacing: 0;
}

.oc-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.oc-rate {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.9rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.oc-rate__icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  color: var(--olive-dark);
  display: grid;
  place-items: center;
  padding: 0;
  box-sizing: border-box;
}

.oc-rate__icon .icon {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: contain;
}

.oc-rate__icon svg {
  width: 22px;
  height: 22px;
}

.oc-rate__name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

.oc-rate__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1.2;
}

.oc-rate__unit {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--terracotta);
}

.oc-min {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--olive-dark);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
  text-align: left;
}

.oc-min svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.oc-min__text {
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  font-weight: 750;
  color: #fff;
  line-height: 1.35;
}

.oc-min__text .ta {
  display: block;
  font-family: var(--font-ta);
  font-weight: 650;
  color: var(--terracotta);
  margin-top: 0.15rem;
}

.oc-pay-title {
  display: inline-block;
  background: var(--olive-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin: 0 auto 0.85rem;
}

.oc-pay-wrap {
  text-align: center;
}

.oc-pay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.oc-pay__item {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.85rem 0.4rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.oc-pay__icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--olive-dark);
  display: grid;
  place-items: center;
  padding: 0;
  box-sizing: border-box;
}

.oc-pay__icon .icon {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: contain;
}

.oc-pay__icon svg {
  width: 18px;
  height: 18px;
}

.oc-pay__pct {
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1.1;
}

.oc-pay__label {
  font-size: clamp(0.55rem, 1.6vw, 0.68rem);
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.25;
}

.oc-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #f3e0c8;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  text-align: center;
}

.oc-info-bar svg {
  width: 26px;
  height: 26px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.oc-info-bar__text {
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
  font-weight: 700;
  color: var(--olive-dark);
  line-height: 1.4;
}

.oc-info-bar__text .ta {
  display: block;
  font-weight: 650;
  margin-top: 0.2rem;
  color: var(--ink-muted);
}

.oc-contact {
  background: var(--olive-dark);
  color: #fff;
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
}

.oc-support .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: none;
}

.oc-min .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 0.35rem;
  filter: none;
}

.oc-info-bar .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: none;
}

.oc-contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--olive-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0.45rem;
  box-sizing: border-box;
}

.oc-contact__icon .icon {
  width: 100%;
  height: 100%;
}

.oc-contact__icon svg {
  width: 22px;
  height: 22px;
}

.oc-contact__icon--chat {
  background: var(--orange);
  color: #fff;
}

.oc-contact__icon--chat .icon {
  filter: brightness(0) invert(1);
}

.oc-contact__text {
  flex: 1;
  text-align: center;
  font-family: var(--font-ta);
  font-size: clamp(0.85rem, 2.4vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .oc-pay__label {
    font-size: 0.52rem;
  }

  .oc-contact {
    padding: 1rem 0.85rem;
  }
}

/* ========== EMI PANEL + WHAT YOU GET ========== */
.emi-panel {
  margin: 1.25rem 0 1.75rem;
  padding: 0.25rem 0 0.5rem;
}

.emi-panel--card {
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
  border: 1px solid #ece3d8;
  border-radius: 18px;
  padding: 1.35rem 1.1rem 1.6rem;
  box-shadow: 0 10px 28px rgba(42, 36, 24, 0.06);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.emi-panel--card .emi-summary {
  color: #fff;
}

.emi-panel--card .emi-grid {
  margin-top: 0.25rem;
}

.emi-panel--card .cta-center {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.emi-grid__item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.55rem;
}

.emi-grid__item strong {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
}

.emi-panel .emi-summary {
  margin-top: 1rem;
}

.what-you-get {
  text-align: center;
  margin: 0.5rem 0 1.75rem;
}

.what-you-get .section-title--pill {
  display: inline-flex;
  margin-bottom: 1.35rem;
}

.get-grid--cream {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.25rem 1rem;
}

.get-grid--cream .get-grid__item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.35rem;
}

.get-grid--cream .get-grid__item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

/* ========== CONTACT PAGE ========== */
.contact-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 800px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 6px 18px rgba(30, 25, 15, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 103, 31, 0.45);
}

.contact-card--wa {
  background: linear-gradient(160deg, #fff 55%, rgba(37, 211, 102, 0.12));
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  padding: 0.55rem;
  margin-bottom: 0.25rem;
}

.contact-card--wa .contact-card__icon {
  background: rgba(37, 211, 102, 0.18);
}

.contact-card__icon .icon {
  width: 100%;
  height: 100%;
  filter: none;
}

.contact-card strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--olive-dark);
}

.contact-card span:last-child {
  font-size: 0.68rem;
  color: var(--ink-muted);
  line-height: 1.3;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }
}

.contact-aside {
  background: var(--olive-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
}

.contact-aside__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.contact-aside__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.contact-aside__list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.contact-aside__list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-aside__list .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(62%) saturate(700%) hue-rotate(346deg);
}

.contact-aside__regions {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
}

.contact-aside__regions .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(72%) sepia(62%) saturate(700%) hue-rotate(346deg);
}

.contact-aside__regions p {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.contact-form__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--olive-dark);
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.contact-field span {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 103, 31, 0.15);
}

.contact-form__note {
  font-size: 0.7rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: -0.15rem;
}

/* ========== MOTION / ANIMATIONS ========== */
@keyframes ig-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ig-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ig-soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes ig-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 103, 31, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(224, 103, 31, 0); }
}

@keyframes ig-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes ig-scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ig-wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-1.5%); }
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-motion .page-hero__title,
.has-motion .emi-highlight__price {
  animation: ig-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.has-motion .express-badge,
.has-motion .price-box__ribbon,
.has-motion .section-title--pill {
  animation: ig-scale-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.has-motion .btn-enquire {
  animation: ig-pulse-glow 2.8s ease-in-out infinite;
}

.has-motion .brand__logo {
  animation: ig-soft-float 4.5s ease-in-out infinite;
}

.has-motion .course-item__num,
.has-motion .emi-grid__item .icon,
.has-motion .module-item__num {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.has-motion .course-item:hover .course-item__num,
.has-motion .emi-grid__item:hover .icon,
.has-motion .module-item:hover .module-item__num,
.has-motion .get-grid__item:hover .icon,
.has-motion .contact-card:hover .contact-card__icon {
  transform: translateY(-4px) scale(1.06);
}

.has-motion .btn,
.has-motion .btn--orange,
.has-motion .btn--green {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.has-motion .btn:hover,
.has-motion .btn--orange:hover,
.has-motion .btn--green:hover {
  transform: translateY(-2px);
}

.has-motion .oc-card__head,
.has-motion .bonus-banner,
.has-motion .emi-summary {
  position: relative;
  overflow: hidden;
}

.has-motion .banner-title {
  background-size: 200% 200%;
  animation: ig-shimmer 6s ease-in-out infinite;
  background-image: linear-gradient(
    110deg,
    var(--olive-dark) 0%,
    var(--olive) 45%,
    var(--olive-dark) 100%
  );
}

.has-motion .site-footer__wave {
  animation: ig-wave 8s ease-in-out infinite;
}

.has-motion .hero-banner img,
.has-motion .oc-media img {
  transition: transform 0.6s ease-out;
  will-change: transform;
}

.has-motion .socials a {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.has-motion .socials a:hover {
  transform: translateY(-3px);
}

.has-motion .contact-form {
  animation: ig-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@media (prefers-reduced-motion: reduce) {
  .has-motion .reveal,
  .has-motion .reveal.is-visible,
  .has-motion .page-hero__title,
  .has-motion .emi-highlight__price,
  .has-motion .express-badge,
  .has-motion .price-box__ribbon,
  .has-motion .section-title--pill,
  .has-motion .btn-enquire,
  .has-motion .brand__logo,
  .has-motion .banner-title,
  .has-motion .site-footer__wave,
  .has-motion .contact-form {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* —— Course detail pages —— */
.course-detail__back {
  max-width: 720px;
  margin: 0 auto 1rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.course-detail__back a {
  color: var(--olive-dark);
  text-decoration: none;
}

.course-detail__back a:hover {
  color: var(--terracotta);
}

.course-detail {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45, 58, 42, 0.08);
}

.course-detail__head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.course-detail__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.course-detail__icon .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.course-detail__title {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

.course-detail__price {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.course-detail__price s {
  opacity: 0.65;
  margin-right: 0.4rem;
}

.course-detail__price .offer {
  color: var(--terracotta);
  font-weight: 800;
}

.course-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--olive-dark);
  margin-bottom: 1.5rem;
  scroll-margin-top: 6rem;
}

.course-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.course-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  object-fit: contain;
}

.course-video--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--olive-dark) 0%, var(--olive) 100%);
}

.course-video--unavailable {
  background: linear-gradient(145deg, #4a4a4a 0%, #6b6358 100%);
}

.course-video__inner {
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

.course-video__inner .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  opacity: 0.95;
}

.course-video__inner p {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.course-video__inner span {
  font-size: 0.82rem;
  opacity: 0.85;
}

.course-detail__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.course-detail__subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.course-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.course-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.course-detail__list .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.course-detail__actions {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .course-detail {
    padding: 1.75rem 1.75rem 2.25rem;
  }

  .course-detail__actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== REFUND & CANCELLATION POLICY PAGE ========== */
.site-footer__links {
  margin: 0.85rem 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--orange);
  text-decoration: none;
}

.policy-page {
  max-width: 820px;
  margin: 0 auto;
}

.policy-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--terracotta-dark), var(--terracotta));
  color: #fff;
  font-size: clamp(0.72rem, 2.2vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  margin: 0.75rem auto 1.5rem;
  box-shadow: 0 6px 18px rgba(194, 74, 26, 0.25);
  text-align: center;
}

.policy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  margin-bottom: 2rem;
}

.policy-card__alert {
  background: linear-gradient(145deg, #fff7f2 0%, #ffede2 100%);
  border-left: 5px solid var(--terracotta);
  border-radius: 0.75rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.policy-card__alert-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}

.policy-card__alert-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--terracotta-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.policy-card__alert-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 600;
}

.policy-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section__heading {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--olive-dark);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.policy-section__heading .icon {
  width: 22px;
  height: 22px;
}

.policy-section__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.policy-section__points {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.policy-section__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink);
}

.policy-section__points li .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.policy-callout {
  background: var(--cream-soft);
  border: 1.5px dashed rgba(61, 82, 40, 0.3);
  border-radius: 0.85rem;
  padding: 1.1rem 1.25rem;
  margin-top: 1.5rem;
  text-align: center;
}

.policy-callout strong {
  display: block;
  font-size: 0.92rem;
  color: var(--olive-dark);
  margin-bottom: 0.35rem;
}

.policy-callout p {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn--outline {
  background: transparent;
  color: var(--olive-dark);
  border: 2px solid var(--olive-dark);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--olive-dark);
  color: #fff;
}

/* EMI student dashboard */
.emi-page__hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
}

.emi-page__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 0.35rem;
}

.emi-page__title {
  margin: 0;
  font-size: 1.6rem;
  color: #14532d;
}

.emi-page__sub {
  margin: 0.4rem 0 0;
  color: #166534;
  font-size: 0.92rem;
  max-width: 560px;
}

.emi-page__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
}

.emi-plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.emi-plan-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.emi-plan-card__section {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #15803d;
  background: #dcfce7;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.emi-plan-card__title {
  margin: 0;
  font-size: 1.1rem;
  color: #0f172a;
}

.emi-plan-card__meta {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.emi-plan-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.emi-plan-card__badge--done {
  background: #dcfce7;
  color: #15803d;
}

.emi-plan-card__badge--pending {
  background: #fff7ed;
  color: #c2410c;
}

.emi-plan-card__progress {
  position: relative;
  height: 10px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.emi-plan-card__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #15803d);
  border-radius: inherit;
}

.emi-plan-card__progress span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.emi-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.emi-schedule__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.emi-schedule__row--paid {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.emi-schedule__row--due {
  background: #fff7ed;
  border-color: #fed7aa;
}

.emi-schedule__label strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.emi-schedule__label small {
  color: #64748b;
  font-size: 0.76rem;
}

.emi-schedule__amount {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
}

.emi-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.emi-status--paid {
  background: #dcfce7;
  color: #15803d;
}

.emi-status--due {
  background: #ffedd5;
  color: #c2410c;
}

.emi-status--upcoming {
  background: #e2e8f0;
  color: #475569;
}
