/* =========================================================
   SATVIK CERTIFIED — Global Design System
   Premium Trust-Driven Certification Authority
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Serif+Devanagari:wght@400;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Palette */
  --saffron:        #E8772E;
  --saffron-light:  #F5A623;
  --saffron-dark:   #C45E1A;
  --gold:           #C9A84C;
  --gold-light:     #E8D48B;
  --gold-dark:      #9B7E2E;
  --green:          #1B5E20;
  --green-light:    #2E7D32;
  --green-accent:   #43A047;
  --white:          #FFFFFF;
  --off-white:      #FFF9F0;
  --cream:          #FDF5E6;
  --ivory:          #FFFDF7;
  --charcoal:       #2C2C2C;
  --text-primary:   #1A1A1A;
  --text-secondary: #555555;
  --text-muted:     #888888;
  --border:         #E5DFD5;
  --border-light:   #F0EAE0;
  --danger:         #C0392B;
  --warning-bg:     #FFF3CD;
  --success:        #27AE60;

  /* Typography */
  --font-primary:   'Outfit', sans-serif;
  --font-display:   'Noto Serif Devanagari', serif;

  /* Spacing (8px base) */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --nav-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.heading-display {
  font-family: var(--font-display);
  font-weight: 700;
}
h1, .h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2, .h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3, .h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4, .h4 { font-size: 1.25rem; }
h5, .h5 { font-size: 1.1rem; }

p { margin-bottom: var(--space-md); color: var(--text-secondary); }
.lead { font-size: 1.15rem; line-height: 1.8; }
.text-saffron { color: var(--saffron); }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; font-weight: 600; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}
.section-sm { padding: var(--space-3xl) 0; }
.section-bg { background: var(--off-white); }
.section-dark {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}
.section-header .label {
  display: inline-block;
  color: var(--saffron);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
}
.section-header h2 {
  margin-bottom: var(--space-md);
}
.section-header p {
  font-size: 1.05rem;
}

/* --- Grid --- */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Flex Helpers --- */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green);
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.nav-links a {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--saffron);
  background: rgba(232,119,46,0.06);
}
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.88rem;
}
.dropdown-menu a:hover {
  background: var(--off-white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(232,119,46,0.3);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,119,46,0.4);
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    overflow-y: auto;
    gap: 0;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 12px var(--space-md); font-size: 1rem; }
  .nav-links .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: var(--space-md);
    display: none;
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-cta { width: 100%; justify-content: center; margin-top: var(--space-md); }
}

/* --- Mobile Nav Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,119,46,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,119,46,0.4);
}
.btn-secondary {
  background: var(--white);
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-secondary:hover {
  background: var(--saffron);
  color: var(--white);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,94,32,0.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,94,32,0.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--saffron);
  border-color: var(--white);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-icon { font-size: 1.1em; }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}
.card-icon-saffron {
  background: rgba(232,119,46,0.1);
  color: var(--saffron);
}
.card-icon-green {
  background: rgba(27,94,32,0.1);
  color: var(--green);
}
.card-icon-gold {
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
}
.card h3, .card h4 {
  margin-bottom: var(--space-sm);
}
.card p:last-child { margin-bottom: 0; }

/* Featured / Tier Cards */
.tier-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}
.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.tier-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.tier-card .tier-header {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  text-align: center;
}
.tier-card .tier-body {
  padding: 0 var(--space-xl) var(--space-xl);
}
.tier-card .tier-body ul li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.tier-card .tier-body ul li:last-child { border-bottom: none; }
.tier-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}
.badge-green { background: rgba(27,94,32,0.12); color: var(--green); }
.badge-gold { background: rgba(201,168,76,0.18); color: var(--gold-dark); }
.badge-premium {
  background: linear-gradient(135deg, #2C2C2C, #444);
  color: var(--gold-light);
}
.popular-tag {
  position: absolute;
  top: -1px;
  right: var(--space-xl);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E0 30%, #FFF9F0 70%, #F0F7F0 100%);
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,119,46,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,94,32,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
}
.hero-visual {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(232,119,46,0.08);
  color: var(--saffron);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(232,119,46,0.15);
}
.hero h1 {
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-lg) 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item .icon {
  font-size: 1.2rem;
  color: var(--green);
}

/* =========================================================
   STEPS / PROCESS
   ========================================================= */
.steps {
  counter-reset: step;
}
.step-item {
  display: flex;
  gap: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-2xl);
}
.step-item:last-child { padding-bottom: 0; }
.step-item::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-item:last-child::before { display: none; }
.step-number {
  counter-increment: step;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,119,46,0.2);
}
.step-content h3 {
  margin-bottom: var(--space-sm);
}
.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .step-item { gap: var(--space-md); }
  .step-number { width: 44px; height: 44px; min-width: 44px; font-size: 0.95rem; }
  .step-item::before { left: 21px; top: 48px; }
}

/* =========================================================
   CERTIFICATION SEAL / BADGE
   ========================================================= */
.cert-seal {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--space-md);
}
.cert-seal::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4);
}
.cert-seal-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(27,94,32,0.25);
}
.cert-seal-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.cert-seal-premium {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cert-seal .seal-icon { font-size: 2rem; margin-bottom: 4px; }
.cert-seal .seal-title { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.cert-seal .seal-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }

/* =========================================================
   FORMS
   ========================================================= */
.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.form-group label .required {
  color: var(--danger);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,119,46,0.1);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--saffron);
  flex-shrink: 0;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover { border-color: var(--saffron); }
.accordion-btn {
  width: 100%;
  padding: var(--space-lg);
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: var(--transition);
}
.accordion-btn:hover { color: var(--saffron); }
.accordion-btn .icon {
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.accordion-item.active .accordion-btn .icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* =========================================================
   DIRECTORY CARDS
   ========================================================= */
.listing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: var(--transition);
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--saffron);
}
.listing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.listing-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

@media (max-width: 640px) {
  .listing-card { flex-direction: column; }
}

/* =========================================================
   VERIFICATION RESULT
   ========================================================= */
.verify-result {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 600px;
  margin: var(--space-xl) auto;
  position: relative;
  overflow: hidden;
}
.verify-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--saffron));
}
.verify-result .status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}
.status-active { background: rgba(39,174,96,0.1); color: var(--success); }
.status-suspended { background: rgba(243,156,18,0.1); color: #F39C12; }
.status-expired { background: rgba(192,57,43,0.1); color: var(--danger); }
.status-revoked { background: rgba(192,57,43,0.15); color: var(--danger); }

.verify-details {
  text-align: left;
  margin-top: var(--space-lg);
}
.verify-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}
.verify-row:last-child { border-bottom: none; }
.verify-row .label { color: var(--text-muted); font-weight: 500; }
.verify-row .value { color: var(--text-primary); font-weight: 600; }

/* =========================================================
   FILTERS
   ========================================================= */
.filter-bar {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
}
.filter-bar .form-control {
  flex: 1;
  min-width: 180px;
}

/* =========================================================
   PAGE HEADER (for interior pages)
   ========================================================= */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--green) 0%, #1a3d1e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .breadcrumb {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.6);
}
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb .sep { margin: 0 4px; }
.page-header h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-header p { color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: var(--space-4xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: var(--space-md); color: rgba(255,255,255,0.5); }
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  position: relative;
}
.footer h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--saffron);
  margin-top: var(--space-sm);
}
.footer ul li { margin-bottom: var(--space-sm); }
.footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer ul li a:hover { color: var(--saffron); }

.footer-bottom {
  margin-top: var(--space-3xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
  border: none;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   MANDALA DECORATIVE ELEMENT
   ========================================================= */
.mandala-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  opacity: 0.5;
}
.mandala-bg::before, .mandala-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}
.mandala-bg::before {
  inset: 40px;
}
.mandala-bg::after {
  inset: 80px;
}

/* =========================================================
   ANIMATIONS (scroll-reveal)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   TABS
   ========================================================= */
.tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.tab-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(232,119,46,0.05);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th, .comparison-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
  background: var(--off-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.comparison-table td { color: var(--text-secondary); }
.comparison-table tr:hover td { background: var(--ivory); }

@media (max-width: 768px) {
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: var(--space-sm) var(--space-md); }
}

/* =========================================================
   LEGAL PAGE STYLES
   ========================================================= */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--green);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.legal-content ul, .legal-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content ul li, .legal-content ol li {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 50%, var(--gold-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-md); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-xl); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline-white { margin-left: var(--space-md); }

/* =========================================================
   MISC
   ========================================================= */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: var(--space-md) auto;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

@media (max-width: 768px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   CHECKLIST STYLE (for standards)
   ========================================================= */
.checklist li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* =========================================================
   TIER CARDS (Certification Levels)
   ========================================================= */
.tier-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.tier-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tier-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-gold); }
.tier-header { padding: var(--space-xl); text-align: center; }
.tier-header h3 { margin-bottom: var(--space-xs); }
.tier-header p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }
.tier-body { padding: 0 var(--space-xl) var(--space-xl); }
.tier-body ul { list-style: none; padding: 0; }
.tier-body ul li { padding: 6px 0; font-size: 0.9rem; color: var(--text-secondary); }
.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}
.badge-green { background: rgba(27,94,32,0.1); color: var(--green); }
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.badge-premium { background: rgba(44,44,44,0.1); color: var(--charcoal); }
.popular-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); }
.btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--white); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

.listing-badge.badge-green { background: rgba(27,94,32,0.1); color: var(--green); }
.listing-badge.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.listing-badge.badge-premium { background: rgba(44,44,44,0.1); color: var(--charcoal); }

.lead { font-size: 1.1rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: var(--space-xl); }

/* =========================================================
   RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: var(--space-3xl) 0; }
  .section-header { margin-bottom: var(--space-2xl); }
  .container, .container-wide { padding: 0 var(--space-md); }
  .hero { min-height: 80vh; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: var(--space-2xl) 0; }
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + var(--space-2xl)); padding-bottom: var(--space-2xl); }
}

/* Print */
@media print {
  .navbar, .footer, .scroll-top, .cta-banner { display: none; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 20px 0; }
}
