/* =====================================================
   1. CSS RESET & VARIABLES
   ===================================================== */
:root {
  --navy: #2c336a;
  --accent: #f88800;
  --muted: #535353;
  --lightorange: #ffe7ca;
  --bg: #ffffff;
  --radius: 999px;
  --space-unit: 0.25rem;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
  --radius-8: 8px;
  --max-w820: 820px;
}

span.orange-text {
  color: var(--accent);
}

/* Basic reset */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 16px; /* base = 16px */
}

/* =====================================================
   2. TYPOGRAPHY & BASE STYLES
   ===================================================== */
/* Base text uses Inter with a slight fluid scale (16px → 18px) */
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #535353;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: clamp(1rem, 1rem + 0.3vw, 1.125rem); /* 16px — 18px */
  line-height: 1.5;
}

p {
  margin: 0;
  padding: 0;
  /* Optional but recommended resets */
  margin-block-start: 0;
  /* Modern way to remove top margin */
  margin-block-end: 0;
}

.marg-top-1 {
  margin-top: 1rem;
}

h1,
.h1 {
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  /* ~26px — 48px */
  margin: 0 0 0.75rem;
  padding: 0;
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy);
  font-weight: 900;
}

h2,
h2.h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  /* ~22px — 35px */
  margin: 0 0 0.7rem;
  padding: 0;
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy);
}

.h3,
h3.h3 {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  /* ~18px — 26px */
  margin: 0 0 0.6rem;
  padding: 0;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
}

.h4,
h4.h4 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  /* ~16px — 20px */
  margin: 0 0 0.5rem;
  padding: 0;
  line-height: 1.25;
  font-weight: 600;
  color: var(--navy);
}

.h5,
h5.h5 {
  font-size: 1rem;
  /* 16px */
  margin: 0 0 0.5rem;
  padding: 0;
  line-height: 1.3;
  font-weight: 600;
  color: var(--navy);
}

.h6,
h6.h6 {
  font-size: 0.875rem;
  /* 14px */
  margin: 0 0 0.4rem;
  padding: 0;
  line-height: 1.35;
  font-weight: 600;
  color: var(--navy);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* The magic break element */
.break {
  flex-basis: 100%;
  /* Takes full width → forces new row */
  height: 0;
  /* Collapses vertically so it adds no extra space */
}

/* =====================================================
   3. HEADER SECTION
   ===================================================== */
.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 4px rgba(167, 193, 251, 0.05);
  padding: 0 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}

.logo svg {
  display: block;
}

.logo-text {
  font-weight: 700;
}

/* =====================================================
   4. NAVIGATION SECTION
   ===================================================== */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  border-radius: 0.375rem;
  align-items: center;
}

.menu-toggle:focus {
  outline: 2px solid rgba(0, 43, 91, 0.15);
}

/* Primary Navigation */
.primary-nav,
.navbar {
  display: flex;
  align-items: center;
}

/* Main Menu List */
.menu-list {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
  margin: 0;
  padding: 0;
}

.menu-link {
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 1.5rem;
  font-size: 1rem;
}

.menu-link:hover {
  background: var(--navy);
  color: #fff;
}

.arrow,
.arrow-right {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* Dropdown Styles */
.has-dropdown {
  position: relative;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(2, 25, 64, 0.12);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  list-style: none;
  padding: 0.5rem 0;
}

.dropdown-link:hover {
  background-color: rgba(248, 136, 0, 0.08) !important;
  color: var(--primary-color);
}

.menu-item:hover > .dropdown-list,
.menu-item:focus-within > .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item:hover > .menu-link .arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.95rem;
  transition: var(--transition);
}

.dropdown-link:hover {
  background-color: var(--gray-100);
  color: var(--primary-color);
}

/* Sub Dropdown (Level 3) */
.sub-dropdown {
  top: 0;
  left: 100%;
  transform: translateX(10px);
}

.dropdown-item:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-item:hover > .dropdown-link .arrow-right {
  transform: translateX(3px);
}

/* Nav Links (Alternative navigation) */
.nav-links {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links li a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 1.5rem;
  font-size: 1rem;
}

.nav-links li a:hover {
  background: var(--navy);
  color: #fff;
}

/* Multi-level dropdown navigation */
.nav-item-dropdown {
  position: relative;
}

.nav-link-parent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.nav-link-parent i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover > .nav-link-parent i,
.nav-item-dropdown.open > .nav-link-parent i {
  transform: rotate(180deg);
}

/* Dropdown menu styling */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(2, 25, 64, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.nav-item-dropdown:hover > .nav-dropdown,
.nav-item-dropdown.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  margin: 0;
  padding: 0;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-dropdown li a:hover {
  background: rgba(248, 136, 0, 0.08);
  color: var(--navy);
  padding-left: 1.75rem;
}

/* Nested dropdowns */
.nav-dropdown .nav-item-dropdown {
  position: relative;
}

.nav-dropdown .nav-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
  min-width: 180px;
}

.nav-dropdown .nav-item-dropdown:hover > .nav-dropdown,
.nav-dropdown .nav-item-dropdown.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-dropdown .nav-dropdown {
  transform: translateX(-10px);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--navy);
  font-size: 1rem;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
  will-change: transform, box-shadow;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 25, 64, 0.18);
  font-weight: 600;
}

.cta-button:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(248, 136, 0, 0.18), 0 12px 30px rgba(2, 25, 64, 0.12);
  outline: none;
}

/* Nav CTA Button */
.nav-cta .btn-primary {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
  will-change: transform, box-shadow;
}

.btn-primary {
  background: var(--navy);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 25, 64, 0.18);
  font-weight: 600;
}

.nav-cta .btn-primary:hover,
.nav-cta .btn-primary:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(248, 136, 0, 0.18),
    0 12px 30px rgba(2, 25, 64, 0.12);
  outline: none;
}

.nav-cta .btn-primary {
  width: auto;
}

/* Mobile Header Elements (Hidden on Desktop) */
.menu-header-mobile,
.overlay, .hamburger {
  display: none;
}

/* =====================================================
   5. HERO SECTION
   ===================================================== */
.hero {
  background: linear-gradient(180deg, #fff6eb 0%, #fff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

/* Small trust badge above the headline */
.hero-trust {
  font-size: 0.75rem;
  display: flex;
  width: clamp(320px, 85%, 40%);
  text-align: center;
  justify-items: center;
  justify-content: center;
  color: #2c336a;
  font-weight: 600;
  background: #fff;
  height: 40px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(248, 136, 0, 0.27);
  box-shadow: 4px 2px 8px rgba(248, 136, 0, 0.27);
  border-radius: 20px;
  text-align: center;
  align-items: center;
  line-height: 40px;
}

.hero-copy h1 {
  hyphens: none !important;
  -webkit-hyphens: none !important;
}

.hero-actions {
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

/* =====================================================
   6. SUPPORT SECTION
   ===================================================== */
.support {
  background: rgba(248, 136, 0, 0.08);
  padding: 2.5rem 0;
  width: 100%;
}

.support-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.support-box-1,
.support-box-2 {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #f8880045;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 25, 64, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.support-box-2 {
  border-top: 20px solid #ffffff;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.support-box-2::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  background: var(--accent);
  width: 100%;
  height: 50px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-sizing: border-box;
  z-index: -1;
}

/* =====================================================
   7. WHY-US CARDS SECTION
   ===================================================== */
.why-us-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.why-card {
  background: #f8880014;
  border: 1px solid rgba(248, 136, 0, 0.12);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(2, 25, 64, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 0.22s ease, border-color 0.18s ease;
  will-change: transform, box-shadow, border-color;
}

.why-card .icon-box {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(2, 25, 64, 0.08);
  margin-bottom: 0.6rem;
}

.why-card .icon-box i {
  color: var(--accent);
  font-size: 1.25rem;
}

.why-card .card-heading {
  font-size: 1rem;
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

.why-card .card-text {
  margin: 0 0 0.6rem;
  color: var(--muted);
  line-height: 1.4;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 25, 64, 0.14);
  border-color: rgba(248, 136, 0, 0.28);
}

/* CTA box beneath the why-cards */
.why-cta-box {
  margin: 1rem 0 1rem 0;
  width: 100%;
  display: flex;
}

.why-cta-inner {
  width: 100%;
  align-items: left;
  text-align: left;
  min-height: 240px;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(90deg, #2c336a 25%, #f88800 100%);
  color: #fff;
  padding: 4rem 4rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* CTA illustration image positioned bottom-right */
.cta-illustration {
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  position: absolute;
  bottom: -20px;
  right: 45px;
}

/* =====================================================
   8. CBSE/NIOS COMPARISON SECTION
   ===================================================== */
.cbse-vs-nios {
  text-align: center;
  justify-content: center;
}

.cbse-nios-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* individual CBSE/NIOS card styles */
.cbse-nios-card {
  border: 1px solid rgba(248, 136, 0, 0.85);
  border-radius: 12px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(2, 25, 64, 0.04);
  text-align: left;
}

/* small tag badges used in CBSE/NIOS card */
.cbse-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.cbse-tags .cn-tag {
  display: inline-block;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: #fff;
  color: #374151;
  font-size: 0.9rem;
}

.cbse-tags .cn-tag.text-orange {
  border-color: rgba(248, 136, 0, 0.9);
  color: var(--accent);
}

/* =====================================================
   9. TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
  background: rgba(248, 136, 0, 0.08);
  padding: 3rem 0;
}

.testimonials-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

/* Heading section */
.testimonials-header {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-header .section-subtitle {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonials-header h2 {
  color: var(--navy);
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.testimonials-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Swiper testimonials carousel */
.testimonials-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto;
  padding-bottom: 2rem;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  width: auto;
  display: flex !important;
  align-items: stretch;
  justify-content: center;
}

/* Swiper pagination (bullets) */
.testimonials-pagination {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
  z-index: 20;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(44, 51, 106, 0.25);
  opacity: 1;
  transition: all 0.22s ease;
  margin: 0 0.35rem !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  width: 12px;
  height: 12px;
}

/* Swiper navigation buttons (scoped to testimonials) */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  transition: all 0.22s ease;
  z-index: 20;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 1.1rem;
}

.testimonials-swiper .swiper-button-prev {
  left: 12px;
}

.testimonials-swiper .swiper-button-next {
  right: 12px;
}

/* Individual testimonial card - vertical layout (column) */
.testimonial-card {
  background: #fff;
  border: 1px solid #f8880045;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(2, 25, 64, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 0.22s ease;
  width: 320px;
  height: 100%;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(2, 25, 64, 0.12);
}

/* Testimonial photo - circular */
.testimonial-photo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(248, 136, 0, 0.15);
  margin-bottom: 0.5rem;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonial content - centered */
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  flex: 1;
  justify-content: space-between;
}

/* Top row: photo + name/class in two columns */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: flex-start;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.testimonial-meta .testimonial-name {
  margin: 0;
}

.testimonial-meta .testimonial-class {
  margin: 0;
}

.testimonial-name {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.testimonial-class {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* Star rating */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin: 0.35rem 0;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Testimonial text - full width block */
.testimonial-text {
  text-align: left;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0.5rem 0;
  font-style: italic;
  width: 100%;
  display: block;
  word-break: break-word;
}

/* Video story button - full width block */
.testimonial-video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(248, 136, 0, 0.3);
  background: rgba(248, 136, 0, 0.05);
  transition: all 0.22s ease;
  width: fit-content;
}

.testimonial-video-btn:hover {
  background: rgba(248, 136, 0, 0.1);
  border-color: rgba(248, 136, 0, 0.6);
}

.testimonial-video-btn i {
  font-size: 0.75rem;
}

/* Counter section */
.testimonials-counter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(248, 136, 0, 0.08) 0%,
    rgba(44, 51, 106, 0.08) 100%
  );
  border-radius: 12px;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.counter-number {
  color: var(--accent);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.counter-label {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

/* =====================================================
   10. FAQ ACCORDION SECTION
   ===================================================== */
.section {
  padding: 3.5rem 1rem;
}

.faq-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin: 1.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(248, 136, 0, 0.27);
  box-shadow: 0 4px 12px rgba(2, 25, 64, 0.04);
  background: #fff;
  transition: box-shadow 0.22s ease;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(248, 136, 0, 0.08);
  padding: 1rem;
  border: 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.22s ease;
  font-size: 1.25rem;
  color: var(--navy);
}

.faq-question:focus {
  outline: 2px solid rgba(248, 136, 0, 0.27);
}

.faq-question span {
  flex: 1;
  text-align: left;
}

.faq-arrow {
  color: var(--navy);
  font-size: 1rem;
  transition: transform 0.22s ease;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.18s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  padding: 0.75rem 1rem 1rem;
  opacity: 1;
}

.faq-item.is-open .faq-question {
  border-bottom-color: rgba(248, 136, 0, 0.27);
}

.faq-item.is-open .faq-arrow {
  transform: translateY(-6px) rotate(180deg);
}

/* Answer box background and styling */
.faq-answer {
  background: rgba(248, 136, 0, 0.08);
  border-top: 1px solid rgba(248, 136, 0, 0.08);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* =====================================================
   11. FOOTER SECTION
   ===================================================== */
.site-footer {
  border-top: 1px solid #eef2ff;
  padding: 1rem;
  color: var(--muted);
  background: rgba(25, 29, 67, 1);
  margin-top: 2rem;
}

.footer-cta-inner {
  width: 100%;
  align-items: left;
  text-align: left;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f88800;
  gap: 1.5rem;
  background: linear-gradient(198deg, #2c336a 20%, #f88800 100%);
  color: #fff;
  padding: 4rem 4rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  top: -50px;
}

.footer-cta-actions {
  gap: 1rem;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-main {
  padding: 1em 0 1rem 0;
  color: #fff;
  font-size: .90rem;
}

.footer-main a {
  color: #fff;
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-main .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

ul.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

ul.footer-links,
.footer-col a:hover {
  color: var(--accent);
}

ul.footer-links li {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
}

ul.footer-links li::before {
  content: "\2714";
  color: var(--accent);
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.footer-col {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.top-gradient-line {
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, #191d43, #f88800, #191d43);
  border-image-slice: 1;
  width: 100%;
}

/* =====================================================
   12. SCROLL TO TOP BUTTON
   ===================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 25%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(44, 51, 106, 0.2);
  z-index: 999;
}

.scroll-to-top .fas {
  margin: 0;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(248, 136, 0, 0.25);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   13. UTILITY & ICON STYLES
   ===================================================== */
/* Default icon helpers */
.icon,
i.icon,
.fa,
.fas,
.far,
.fab,
.fal {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-style: normal;
  margin: 0 0.4rem 0 0;
  padding: 0.08rem 0.18rem;
  width: auto;
  height: auto;
  pointer-events: none;
  font-size: 1rem;
}

/* Small size modifier and reset when icon is the only element */
.icon--sm {
  font-size: 0.85em;
  margin-right: 0.35rem;
}

.icon--none {
  margin-right: 0;
  padding: 0;
}

/* Inline list with check icon */
.inline-list,
.trust-badges,
ul.inline-list,
ul.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.inline-list li,
.trust-badges li {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
}

.inline-list li::before,
.trust-badges li::before {
  content: "\2714";
  color: var(--accent);
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.order-list,
ul.order-list {
  list-style: none;
  margin: 0 1rem;
  padding: 0;
  gap: 1rem;
  align-items: center;
}

.order-list li {
  margin: 0 0 0.9rem 0;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
}

.order-list li::before {
  color: var(--accent);
  font-family: "icomoon" !important;
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.bullet-1 li::before {
  content: "\e905";
}

.bullet-2 li::before {
  content: "\e900";
}

.bullet-3 li::before {
  content: "\2714";
}

hr.dlorange {
  align-self: stretch;
  width: 100%;
  margin: 2.5rem 0;
  border: none;
  height: 1px;
  background: rgba(248, 136, 0, 0.3);
  margin: 1rem 0;
}

hr.solid {
  border-top: 3px solid #bbb;
  z-index: 9999;
  position: relative;
}

/* Variants */
.inline-list--compact li {
  font-size: 0.95rem;
}

.inline-list--compact li::before {
  margin-right: 0.35rem;
  font-size: 0.95rem;
}

.inline-list--navy li::before {
  color: var(--navy);
}

/* Button styles */
.btn-1,
.btn-2,
.btn-3 {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(2, 25, 64, 0.18);
  font-weight: 600;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
    box-shadow 0.22s ease, background-color 0.22s ease, color 0.18s ease;
  will-change: transform, box-shadow, background-color;
  border: 1px solid #f8880045;
}

.btn-1:hover,
.btn-2:hover,
.btn-3:hover,
.btn-1:focus,
.btn-2:focus,
.btn-3:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(248, 136, 0, 0.18),
    0 12px 30px rgba(2, 25, 64, 0.12);
  outline: none;
}

.btn-2:hover,
.btn-2:focus {
  background: var(--navy);
}

.btn-1:hover,
.btn-1:focus {
  background: var(--accent);
}

.btn-3:hover,
.btn-3:focus {
  background: var(--accent);
}

.btn-primary,
.btn-2.orange,
.large {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}

.btn-ghost {
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(2, 43, 91, 0.06);
}

/* =====================================================
   14. RESPONSIVE MEDIA QUERIES
   ===================================================== */

/* Desktop (min-width 769px) */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* Tablet (max-width 900px) */
@media (max-width: 900px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-illustration {
    width: 140px;
    right: 15px;
    bottom: -15px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 1rem;
    width: 280px;
  }

  .testimonial-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 0.4rem;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-class {
    font-size: 0.85rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .testimonials-counter {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .counter-number {
    font-size: 2rem;
  }
}

/* Mobile Landscape (max-width 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    width: 100%;
    max-width: 90vw;
    right: 0.5rem;
  }

  .nav.open .nav-links,
  .primary-nav.open .nav-links {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    color: var(--muted);
    text-decoration: none;
  }

  /* Regular links - not dropdowns */
  .nav-links li:not(.nav-item-dropdown) a {
    transition: background 0.2s ease, padding-left 0.2s ease;
  }

  .nav-links li:not(.nav-item-dropdown) a:active {
    background: rgba(248, 136, 0, 0.1);
  }

  /* Dropdown parent links (all levels) */
  .nav-link-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-link-parent:active {
    background: rgba(248, 136, 0, 0.1);
  }

  .nav-link-parent i {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }

  .nav-item-dropdown.open > .nav-link-parent i {
    transform: rotate(180deg);
  }

  /* Second-level and deeper dropdowns */
  .nav-dropdown {
    position: static;
    background: rgba(248, 136, 0, 0.04);
    margin: 0;
    margin-top: 0.25rem;
    margin-left: 0;
    border-radius: 6px;
    box-shadow: none;
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item-dropdown.open > .nav-dropdown {
    max-height: 2000px;
  }

  /* Nested dropdowns have left indentation */
  .nav-dropdown .nav-dropdown {
    background: rgba(248, 136, 0, 0.08);
    margin-left: 0.75rem;
    border-radius: 4px;
  }

  .nav-dropdown li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  /* Regular items in dropdowns */
  .nav-dropdown li:not(.nav-item-dropdown) a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: background 0.2s ease, padding-left 0.2s ease;
  }

  .nav-dropdown li:not(.nav-item-dropdown) a:active {
    background: rgba(248, 136, 0, 0.15);
    padding-left: 1.25rem;
  }

  /* Dropdown parents inside dropdowns (nested toggle items) */
  .nav-dropdown .nav-item-dropdown .nav-link-parent {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .nav-dropdown .nav-dropdown .nav-item-dropdown .nav-link-parent {
    padding-left: 1rem;
    font-size: 0.85rem;
  }

  /* Override desktop styles for mobile - critical for proper dropdown behavior */
  .nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-item-dropdown:hover > .nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-dropdown .nav-dropdown {
    transform: none !important;
  }

  .nav-dropdown .nav-item-dropdown:hover > .nav-dropdown {
    transform: none !important;
  }

  .nav-cta {
    padding-top: 0.25rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-cta .btn-primary {
    width: 100%;
  }

  /* Navigation Start button: pill, white with navy text, hover animation */
  .nav-cta .btn-primary {
    display: inline-block;
    font-size: 1rem;
    background: #fff;
    color: var(--navy);
    padding: 0.5rem 0.95rem;
    border-radius: 25px;
    border: 1px solid rgba(44, 51, 106, 0.08);
    box-shadow: 0 6px 18px rgba(2, 25, 64, 0.06);
    transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1),
      box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
    will-change: transform, box-shadow;
    text-decoration: none;
  }

  .nav-cta .btn-primary:hover,
  .nav-cta .btn-primary:focus {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(248, 136, 0, 0.18),
      0 12px 30px rgba(2, 25, 64, 0.12);
    background: var(--accent);
    color: #fff;
    outline: none;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-visual {
    height: 180px;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px 0;
    transition: var(--transition);
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 200;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    right: 0;
  }

  .navbar.active {
    transform: translateX(0);
  }

  .menu-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
  }

  .menu-title {
    font-weight: 600;
    font-size: 1.25rem;
  }

  .close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1;
  }

  .menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    overflow-y: auto;
  }

  .menu-item {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .menu-link {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }

  /* Mobile Dropdown Reset */
  .dropdown-list,
  .sub-dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: var(--gray-100);
    width: 100%;
    padding-left: 0;
  }

  /* Indent nested items */
  .dropdown-item > .dropdown-link {
    padding-left: 2.5rem;
  }

  .sub-dropdown .dropdown-item > .dropdown-link {
    padding-left: 3.5rem;
  }

  /* Class to show dropdown via JS */
  .dropdown-list.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
  }

  .menu-item:hover > .menu-link .arrow {
    transform: rotate(0);
  }

  .menu-item.active > .menu-link .arrow {
    transform: rotate(180deg);
  }

  .arrow-right {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .overlay.active {
    display: block;
    opacity: 1;
  }

  .faq-question {
    padding: 0.85rem;
  }

  .faq-answer {
    padding: 0 0.85rem;
  }

  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

/*******modal-popup-mobile******/

      .modal-content { flex-direction:column; }
      .modal-illustration { width:100%; padding:16px; }
      .modal-right { padding:18px; }
    

}

/* Small Mobile (max-width 600px) */
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .cta-illustration {
    width: 120px;
    right: 10px;
    bottom: -10px;
  }

  .testimonials {
    padding: 2rem 0;
  }

  .testimonials-swiper {
    margin: 1rem auto;
    padding-bottom: 1.5rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 0.75rem;
    width: 260px;
  }

  .testimonial-photo {
    width: 70px;
    height: 70px;
    margin-bottom: 0.3rem;
  }

  .testimonial-name {
    font-size: 0.9rem;
  }

  .testimonial-class {
    font-size: 0.8rem;
  }

  .testimonial-text {
    font-size: 0.8rem;
  }

  .testimonial-rating {
    gap: 0.2rem;
  }

  .testimonial-video-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    margin-top: 0.75rem;
  }

  .testimonial-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-meta {
    align-items: center;
  }

  .testimonial-content {
    align-items: center !important;
    text-align: center !important;
    justify-items: center !important;
  }

  .testimonial-text {
    text-align: center !important;
  }

  .testimonials-counter {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .counter-number {
    font-size: 1.8rem;
  }

  .counter-label {
    font-size: 0.95rem;
  }
}

/* Animation for dropdown slide */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*********modal****/

/* overlay */
    .modal {
      position: fixed; inset: 0; display:flex; align-items:center; justify-content:center;
      background:rgba(44, 51, 106, 0.52); z-index:9999; padding:20px;
      opacity:0; visibility:hidden; pointer-events:none;
      transition: opacity 260ms ease, visibility 260ms ease;
    }
    .modal.show { opacity:1; visibility:visible; pointer-events:auto; }
    .modal.closing { opacity:0; visibility:hidden; pointer-events:none; }

    .modal-content {
      position: relative; background:var(--bg); width:100%; max-width:var(--max-w820);
      border-radius:var(--radius-8); box-shadow:0 12px 30px rgba(0,0,0,.25);
      overflow:hidden; display:flex; min-height:240px;
      transform: translateY(12px) scale(.98); opacity:0;
      transition: transform 260ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
    }
    .modal.show .modal-content { transform: translateY(0) scale(1); opacity:1; }
    .modal.closing .modal-content { transform: translateY(8px) scale(.98); opacity:0; }

    /* close button (fixed styling & z-index) */
    .modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.95);
      color: #111;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
      font-size: 18px;
      cursor: pointer;
      z-index: 3;
      transition: transform .12s ease, background .12s ease;
    }
    .modal-close:hover { transform: scale(1.05); background: #fff; }

    /* illustration (left on desktop) */
    .modal-illustration {
      width: 360px;
      min-width: 240px;
      display:flex; align-items:center; justify-content:center; flex-direction:column;
      padding:1rem; background: linear-gradient(180deg,#F88800 0%,#2C336A 100%); color:#fff;
      gap:.6rem;
    }
    .modal-illustration img { max-width:260px; width:100%; height:auto; display:block; border-radius:6px; padding:6px; }

    /* right content */
    .modal-right {
      flex:1; padding:28px; display:flex; flex-direction:column; justify-content:center; gap:18px; text-align:left;
    }
    .modal-right h2 { margin:0; font-size:1.3rem; color:#111; }
    .modal-right p { margin:0; color:#444; }

    /* basic button rules (fixed missing styles) */
    .btn {
      padding: 10px 18px;
      border-radius: 6px;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 0.95rem;
      display: inline-block;
      text-decoration: none;
    }
    .btn.primary {
      background: var(--accent);
      color: #fff;
      border-color: rgba(0,0,0,0.05);
    }
    .btn.secondary { background:transparent; color:#333; border:1px solid #dcdcdc; padding:10px 18px; border-radius:6px; }

    /* option list (replaces previous simple buttons) */
    .option-list { display:flex; gap:12px; flex-direction:column; }
    .option {
      display:flex; align-items:center; gap:14px;
      padding:14px; border-radius:10px; border:1px solid rgba(0,0,0,0.04);
      background: #fff; cursor:pointer; box-shadow: 0 6px 18px rgba(15,15,15,0.06);
      transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
      text-align:left;
    }
    .option:focus, .option:hover { transform: translateY(-3px); box-shadow:0 16px 30px rgba(15,15,15,0.12); outline:none; }

    .option-icon {
      width:56px; height:56px; border-radius:12px; display:flex; align-items:center; justify-content:center;
      background:#fff; box-shadow:0 6px 18px rgba(15,15,15,0.06);
      flex-shrink:0;
    }
    .option-icon svg { width:28px; height:28px; display:block; }

    .option-content { display:flex; flex-direction:column; gap:4px; flex:1; }
    .option-title { font-weight:600; color:#0f1724; font-size:1rem; }
    .option-desc { font-size:0.9rem; color:#556; }

    .option-arrow { margin-left:12px; color:#9aa; font-size:1.4rem; flex-shrink:0; }

    /* responsive */
    /* @media (max-width:700px) {
      .modal-content { flex-direction:column; }
      .modal-illustration { width:100%; padding:16px; }
      .modal-right { padding:18px; }
    } */
