:root {
  --emerald: #0b6e4f;
  --emerald-dark: #085540;
  --emerald-deep: #022c20;
  --emerald-soft: #0f8a62;
  --emerald-glow: #18c080;
  --gold: #ffc107;
  --gold-bright: #ffd54f;
  --gold-soft: #ffe9a0;
  --cream: #ffffff;
  --cream-deep: #f7f5f0;
  --text: #12241c;
  --muted: #4d5f56;
  --white: #ffffff;
  --shadow: 0 8px 28px rgba(2, 44, 32, 0.12);
  --shadow-lg: 0 18px 48px rgba(2, 44, 32, 0.18);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream-deep);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.app-shell {
  padding-top: 72px;
}

.section,
.hero,
.page-hero,
.navbar-an,
.app-bottom-nav {
  max-width: 100%;
}

.hero,
.page-hero {
  overflow-x: hidden;
}

.container,
.row {
  max-width: 100%;
}

/* ——— Navbar (always fixed on scroll) ——— */
.navbar-an,
.navbar-an.app-topbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 193, 7, 0.4);
  padding: 0.65rem 0;
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar-an .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 991.98px) {
  .navbar-an > .container {
    flex-wrap: wrap;
  }

  .brand-mark {
    max-width: calc(100% - 58px);
  }
}

.navbar-an.scrolled {
  box-shadow: 0 8px 28px rgba(2, 44, 32, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--emerald), var(--emerald-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.2rem;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(2, 44, 32, 0.35);
}

.brand-text {
  line-height: 1.2;
  min-width: 0;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald-dark);
  margin: 0;
  letter-spacing: 0.04em;
}

.brand-name-full { display: inline; }
.brand-name-short { display: none; }

.brand-tag {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}

.navbar-toggler {
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.4rem 0.55rem;
  border-radius: 10px !important;
  background: var(--cream-deep);
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.4) !important; }

.navbar-collapse {
  flex-basis: 100%;
}

.nav-link-an {
  color: var(--emerald) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem !important;
  transition: color var(--transition);
}

.nav-link-an:hover,
.nav-link-an.active { color: var(--gold) !important; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--emerald-deep) !important;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.55);
  color: var(--emerald-deep) !important;
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: var(--white) !important;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  box-shadow: 0 6px 20px rgba(2, 44, 32, 0.35);
  transition: all var(--transition);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, var(--emerald-soft), var(--emerald));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 44, 32, 0.45);
  color: var(--white) !important;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-bright) !important;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--emerald-deep) !important;
  transform: translateY(-2px);
}

/* ——— Page Hero (inner pages) ——— */
.page-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 213, 79, 0.22), transparent 42%),
    linear-gradient(135deg, #0b6e4f 0%, #085540 45%, #022c20 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 213, 79, 0.35);
  border-radius: 50%;
  top: -70px;
  right: -60px;
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

.breadcrumb-an {
  justify-content: center;
  background: transparent;
  margin-bottom: 1rem;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb-an .breadcrumb-item a { color: var(--gold-bright); text-decoration: none; }
.breadcrumb-an .breadcrumb-item.active { color: rgba(255, 255, 255, 0.7); }
.breadcrumb-an .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.45); }

/* ——— Home Hero ——— */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255, 213, 79, 0.28) 0%, transparent 40%),
    radial-gradient(ellipse at 5% 90%, rgba(15, 138, 98, 0.35) 0%, transparent 45%),
    linear-gradient(155deg, #0b6e4f 0%, #085540 42%, #043d2e 72%, #022c20 100%);
  padding: 5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 30%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path fill="%23ffd54f" fill-opacity="0.08" d="M30 0L31.5 28.5H60L31.5 31.5L30 60L28.5 31.5H0L28.5 28.5Z"/></svg>');
  background-size: auto, 60px 60px;
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(255, 213, 79, 0.4);
  border-radius: 50%;
  top: -60px;
  right: -80px;
  pointer-events: none;
}

.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1.5px solid rgba(255, 213, 79, 0.22);
  border-radius: 50%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-bright);
  border-radius: 2px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 2rem;
}

.usp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.usp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(2, 44, 32, 0.35);
  border: 1.5px solid rgba(255, 213, 79, 0.55);
  color: #fffef5;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.65rem 1.05rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.usp-badge i { color: var(--gold-bright); font-size: 0.9rem; }

.hero-panel {
  background: rgba(2, 44, 32, 0.4);
  border: 1.5px solid rgba(255, 213, 79, 0.45);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

/* Solid dark panel for light-background sections (About page) */
.hero-panel.panel-dark {
  background: linear-gradient(155deg, #0b6e4f 0%, #085540 45%, #022c20 100%);
  border: 1.5px solid rgba(255, 213, 79, 0.5);
  box-shadow: 0 16px 40px rgba(2, 44, 32, 0.35);
  backdrop-filter: none;
}

.hero-panel.panel-dark .hero-stat strong {
  color: var(--gold-bright);
}

.hero-panel.panel-dark .hero-stat span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-panel-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--emerald-deep);
  box-shadow: 0 10px 28px rgba(255, 193, 7, 0.5);
}

.hero-panel h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1.5px solid rgba(255, 213, 79, 0.4);
  padding-top: 1.5rem;
}

.hero-stat strong {
  display: block;
  font-family: 'Cinzel', serif;
  color: var(--gold-bright);
  font-size: 1.35rem;
}

.hero-stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ——— Sections ——— */
.section { padding: 5rem 0; }

.section-cream { background: var(--cream-deep); }
.section-white { background: var(--white); }
.section-emerald {
  background: linear-gradient(160deg, #0b6e4f 0%, #085540 45%, #022c20 100%);
  color: var(--white);
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  color: var(--emerald-dark);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 1rem;
}

.section-emerald .section-header h2 { color: var(--white); }

.gold-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  margin: 0 auto 1.25rem;
  border: none;
  border-radius: 2px;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.section-emerald .section-header p { color: rgba(255, 255, 255, 0.7); }

/* ——— Course Cards ——— */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid rgba(27, 77, 62, 0.06);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-soft), var(--gold-bright));
}

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

.course-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--emerald), var(--emerald-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(2, 44, 32, 0.35);
}

.course-card h3 {
  color: var(--emerald-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.course-card .gold-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  margin-bottom: 1rem;
  border: none;
  border-radius: 2px;
}

.course-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ——— Pricing ——— */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid rgba(27, 77, 62, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--emerald-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card h3 {
  color: var(--emerald);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--emerald);
  font-weight: 700;
  line-height: 1;
  margin: 1.25rem 0 0.25rem;
}

.pricing-price small {
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--muted);
}

.pricing-period {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--gold);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.pricing-features li i {
  color: var(--emerald);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ——— Testimonials ——— */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.testimonial-card .quote-icon {
  color: var(--gold-soft);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--emerald), var(--emerald-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--emerald);
  font-size: 0.95rem;
  margin: 0;
}

.author-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.25rem; }

/* ——— FAQ ——— */
.accordion-an .accordion-item {
  border: 1px solid rgba(27, 77, 62, 0.1);
  border-radius: 10px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-an .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--emerald);
  background: var(--white);
  box-shadow: none !important;
  padding: 1.1rem 1.35rem;
}

.accordion-an .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--emerald);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.accordion-an .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5a059'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-an .accordion-body {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1.15rem 1.35rem;
}

/* ——— Form ——— */
.form-section-wrap {
  background: var(--cream-deep);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.form-side-panel {
  background: linear-gradient(160deg, #0b6e4f 0%, #085540 50%, #022c20 100%);
  padding: 3rem 2.5rem;
  height: 100%;
  color: var(--white);
}

.form-side-panel h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.form-side-panel .gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  border: none;
}

.form-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.form-perk i {
  color: var(--gold);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.form-perk span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-body { padding: 3rem 2.5rem; background: var(--white); }

.form-label-an {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 0.4rem;
}

.form-control-an,
.form-select-an {
  border: 1.5px solid rgba(27, 77, 62, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-an:focus,
.form-select-an:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
  background: var(--white);
  outline: none;
}

.alert-an {
  border-radius: 10px;
  border: none;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.alert-an.success {
  background: rgba(27, 77, 62, 0.1);
  color: var(--emerald);
  border-left: 3px solid var(--emerald);
}

.alert-an.error {
  background: rgba(180, 60, 60, 0.08);
  color: #8b2e2e;
  border-left: 3px solid #c04040;
}

/* ——— Why Us ——— */
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.5rem;
  box-shadow: 0 0 0 6px rgba(255, 210, 74, 0.12);
}

.why-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin: 0;
}

/* ——— About ——— */
.about-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--emerald), var(--emerald-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(2, 44, 32, 0.3);
}

.about-feature h4 {
  color: var(--emerald);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about-feature p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ——— CTA Banner ——— */
.cta-banner {
  background: linear-gradient(135deg, #0b6e4f 0%, #085540 50%, #022c20 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  border: 1.5px solid rgba(255, 213, 79, 0.45);
  box-shadow: 0 12px 36px rgba(2, 44, 32, 0.3);
}

/* ——— Policy Notice ——— */
.policy-notice {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(145deg, #0b6e4f 0%, #085540 50%, #022c20 100%);
  border: 1.5px solid rgba(255, 213, 79, 0.5);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 12px 36px rgba(2, 44, 32, 0.25);
  color: rgba(255, 255, 255, 0.92);
}

.policy-notice-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  color: var(--emerald-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
}

.policy-notice-body h3 {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.policy-notice-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.policy-notice-body strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .policy-notice {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .policy-notice-body .btn {
    width: 100%;
  }
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

/* ——— Footer ——— */
.footer-an {
  background: linear-gradient(180deg, #043d2e 0%, #022c20 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
  overflow-x: hidden;
  max-width: 100%;
}

.footer-an h5 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-an a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-an a:hover { color: var(--gold); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-email,
.footer-regions {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.footer-email a {
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-regions {
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--emerald-dark) !important;
}

/* ——— Floating WhatsApp ——— */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  color: #fff !important;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--gold) !important;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: all var(--transition);
}

.back-to-top:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
}

.back-to-top.show { display: flex; }

/* ——— Mobile App Bottom Tabs ——— */
.app-bottom-nav,
.app-more-sheet {
  display: none;
}

@media (max-width: 991.98px) {
  .app-desktop-toggler,
  .navbar-an .navbar-collapse {
    display: none !important;
  }

  .app-topbar {
    padding: 0.55rem 0;
  }

  body.app-shell {
    padding-top: 64px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .app-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    height: calc(64px + env(safe-area-inset-bottom, 0px));
    padding: 0 4px env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(11, 110, 79, 0.1);
    box-shadow: 0 -8px 28px rgba(2, 44, 32, 0.1);
    align-items: flex-start;
    justify-content: space-around;
  }

  .app-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 64px;
    text-decoration: none;
    color: #7a8a82;
    background: none;
    border: none;
    padding: 0.35rem 0.15rem 0.45rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .app-tab-icon {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .app-tab-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .app-tab.active {
    color: var(--emerald);
  }

  .app-tab.active .app-tab-icon {
    transform: translateY(-1px) scale(1.08);
    color: var(--emerald);
  }

  .app-tab-center {
    position: relative;
  }

  .app-tab-fab {
    width: 52px;
    height: 52px;
    margin-top: -22px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-bright), var(--gold));
    color: var(--emerald-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 22px rgba(255, 193, 7, 0.5);
    border: 3px solid #fff;
    transition: transform 0.2s ease;
  }

  .app-tab-center .app-tab-label {
    margin-top: 0.15rem;
    color: var(--emerald-dark);
    font-weight: 600;
  }

  .app-tab-center.active .app-tab-fab,
  .app-tab-center:active .app-tab-fab {
    transform: scale(1.06);
  }

  .app-tab:active:not(.app-tab-center) {
    transform: scale(0.94);
  }

  .app-more-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .app-more-sheet.is-open {
    pointer-events: auto;
    opacity: 1;
  }

  .app-more-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 44, 32, 0.45);
  }

  .app-more-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 22px 22px 0 0;
    padding: 0.75rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -12px 40px rgba(2, 44, 32, 0.2);
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .app-more-sheet.is-open .app-more-panel {
    transform: translateY(0);
  }

  .app-more-handle {
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: #d5ddd8;
    margin: 0.25rem auto 1rem;
  }

  .app-more-title {
    font-family: 'Cinzel', serif;
    color: var(--emerald-dark);
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    text-align: center;
  }

  .app-more-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    margin-bottom: 0.45rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    background: var(--cream-deep);
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .app-more-link i {
    width: 22px;
    text-align: center;
    color: var(--emerald);
  }

  .app-more-link.active,
  .app-more-link:active {
    background: rgba(11, 110, 79, 0.08);
    border-color: rgba(11, 110, 79, 0.15);
    color: var(--emerald-dark);
  }

  .whatsapp-float {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .back-to-top {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    left: 16px;
  }

  .footer-an .col-6 {
    max-width: 50%;
  }

  .footer-email a {
    font-size: 0.72rem;
  }

  .footer-regions {
    font-size: 0.72rem;
  }

  .footer-an .row {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-an .container {
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-x: hidden;
  }

  .app-bottom-nav {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: auto;
  }
}

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 3.5rem 0 3.5rem; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .form-side-panel { padding: 2.5rem 2rem; }
  .form-body { padding: 2.5rem 2rem; }
  .brand-tag { display: none; }
  .brand-name-full { display: none; }
  .brand-name-short { display: inline; }
  .brand-name { font-size: 0.92rem; white-space: nowrap; }
}

@media (max-width: 575.98px) {
  .pricing-card.featured {
    transform: none;
  }

  .hero-ornament {
    width: 180px;
    height: 180px;
    right: -90px;
  }

  .hero {
    padding: 2.75rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.55rem;
    letter-spacing: 0.01em;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.9rem;
  }

  .usp-badges {
    gap: 0.6rem;
    margin-bottom: 1.75rem;
  }

  .usp-badge {
    font-size: 0.78rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(2, 44, 32, 0.45);
  }

  .hero .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem !important;
  }

  .hero-panel {
    margin-top: 0.5rem;
    padding: 1.75rem 1.35rem;
  }

  .hero-stats { gap: 0.5rem; }
  .hero-stat strong { font-size: 1.15rem; }

  .brand-icon {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .brand-name { font-size: 0.88rem; }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .section { padding: 3.25rem 0; }
  .page-hero { padding: 3rem 0 2.35rem; }
  .page-hero h1 { font-size: 1.55rem; }

  .course-card,
  .pricing-card,
  .testimonial-card {
    padding: 1.65rem 1.35rem;
  }

  .cta-banner {
    padding: 2.25rem 1.35rem;
    border-radius: 18px;
  }

  .section-header { margin-bottom: 2.25rem; }
}
