﻿/* =====================================================
   Alpha Plus Capital Associates LLP — Main Stylesheet
   ===================================================== */

/* 1. FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* 2. DESIGN TOKENS */
:root {
  --navy-950: #020603;
  --navy-900: #060907;
  --navy-800: #0F1F14;
  --navy-700: #1A3325;
  --navy-600: #2D5040;
  --gold-700: #3A865C;
  --gold-600: #476B55;
  --gold-500: #54C2B6;
  --gold-400: #75C593;
  --gold-300: #8CC96E;
  --gold-100: #EBF7EC;
  --gold-50:  #F4FAF5;
  --brand-gradient: linear-gradient(90deg, #8CC96E, #75C593, #54C2B6);
  --white:    #FFFFFF;
  --cream:    #FAFCFA;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --success:  #059669;
  --warning:  #D97706;
  --error:    #DC2626;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1240px;
  --header-height: 80px;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.18);
  --shadow-card: 0 1px 4px rgba(15,31,20,0.07), 0 4px 16px rgba(15,31,20,0.05);

  --transition:      0.25s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.4s ease;

  --z-dropdown: 100;
  --z-header:   200;
}

/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
table { border-collapse: collapse; width: 100%; }
address { font-style: normal; }

/* 4. TYPOGRAPHY */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-800);
}
h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy-800);
}
h1 { font-size: clamp(2rem,    5vw, 3.5rem);  }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.875rem);}
h4 { font-size: 1.0625rem; }
h5 { font-size: 0.9375rem; }

p { color: var(--gray-600); line-height: 1.75; }
strong { font-weight: 600; color: var(--gray-800); }

/* 5. LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section      { padding: 5rem 0; }
.section--sm  { padding: 3rem 0; }
.section--lg  { padding: 7rem 0; }
.section--navy {
  background-color: var(--navy-800);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,0.7); }
.section--cream   { background-color: var(--cream); }
.section--gray    { background-color: var(--gray-50); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.gold-text   { color: var(--gold-500); }

/* Section label / eyebrow */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.875rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--gold-500);
}

.section-header          { margin-bottom: 3rem; }
.section-header--center  { text-align: center; }
.section-header--center .section-label { justify-content: center; }
.section-header h2       { margin-bottom: 1rem; }
.section-header p        { max-width: 600px; font-size: 1.0625rem; }
.section-header--center p { margin: 0 auto; }

/* 6. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-gradient);
  color: #060907;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #75C593, #54C2B6);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(84,194,182,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}
.btn-ghost {
  color: var(--gold-600);
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-700); }
.btn--sm  { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* 7. HEADER / NAV */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background-color: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background-color var(--transition), box-shadow var(--transition);
}
.site-header.header-transparent { background-color: transparent; border-color: transparent; }
.site-header.scrolled {
  background-color: var(--navy-800) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 2rem;
}
.header-brand a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.header-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.brand-sebi {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.header-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.08);
}
.nav-list > li > a.active { color: var(--gold-400); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-chevron  { font-size: 0.65rem; transition: transform var(--transition-fast); margin-top: 1px; }
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open  .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 230px;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: var(--z-dropdown);
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open  .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav-dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Nav CTA button */
.nav-cta { margin-left: 0.5rem; }
.nav-cta a {
  padding: 0.5rem 1.125rem !important;
  background: var(--brand-gradient) !important;
  color: #060907 !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: opacity var(--transition-fast), box-shadow var(--transition-fast) !important;
}
.nav-cta a:hover { opacity: 0.88; box-shadow: 0 4px 14px rgba(84,194,182,0.4) !important; }

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
  display: block;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 8. HOME HERO */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy-900);
  background-image:
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(26,51,37,0.75) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 70%, rgba(140,201,110,0.12) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.011) 80px, rgba(255,255,255,0.011) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.011) 80px, rgba(255,255,255,0.011) 81px);
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -250px; right: -250px;
  width: 700px; height: 700px;
  border: 1px solid rgba(84,194,182,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border: 1px solid rgba(84,194,182,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 3rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(84,194,182,0.12);
  border: 1px solid rgba(84,194,182,0.35);
  color: var(--gold-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-400); }
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-sebi-info {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.125rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.hero-sebi-info .sep { color: rgba(255,255,255,0.2); }
.hero-sebi-info strong { color: var(--gold-400); font-weight: 600; }

/* 9. INNER PAGE HERO */
.page-hero {
  background-color: var(--navy-800);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(84,194,182,0.09) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  padding: calc(var(--header-height) + 3.5rem) 0 3.5rem;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(84,194,182,0.5), transparent);
}
.page-hero h1    { color: var(--white); margin-bottom: 0.875rem; }
.page-hero .lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  max-width: 650px;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.375rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* 10. TRUST BAR */
.trust-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.trust-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.trust-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.1);
}

/* 11. CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card--accent-top { border-top: 3px solid var(--gold-500); }

.card-icon {
  width: 50px; height: 50px;
  background: var(--gold-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.375rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.card > p { font-size: 0.9375rem; margin-bottom: 1.375rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-600);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.card-link:hover { color: var(--gold-700); gap: 0.625rem; }

/* Service Pricing Cards */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-400);
}
.pricing-card--featured {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(84,194,182,0.25), var(--shadow-lg);
}
.pricing-card-head {
  background: var(--navy-800);
  padding: 1.75rem 2rem;
  position: relative;
}
.pricing-card--featured .pricing-card-head { background: var(--navy-700); }
.featured-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-card-name {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.pricing-card-type {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}
.pricing-card-body { padding: 2rem; }
.price-line       { margin-bottom: 1.5rem; }
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}
.price-period { font-size: 0.875rem; color: var(--gray-500); margin-top: 0.25rem; }
.price-note   { font-size: 0.8125rem; color: var(--gray-400); margin-top: 0.25rem; }
.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.features-list li::before {
  content: '✓';
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* 12. ABOUT / PROFILE */
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-photo-wrap {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}
.profile-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.photo-placeholder-icon { font-size: 3.5rem; }
.photo-placeholder-text { font-size: 0.8125rem; color: var(--gray-400); }
.profile-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.profile-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.profile-badge-icon {
  width: 34px; height: 34px;
  background: var(--gold-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.profile-badge-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
}
.profile-badge-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* 13. COMPLIANCE BLOCKS */
.compliance-block {
  background: #F0FAF7;
  border: 1px solid #54C2B6;
  border-left: 4px solid #54C2B6;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.compliance-block-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warning);
  margin-bottom: 0.5rem;
}
.compliance-block p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.compliance-block p:last-child { margin-bottom: 0; }

/* 14. TABLES */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  -webkit-overflow-scrolling: touch;
}
.data-table { width: 100%; font-size: 0.9rem; }
.data-table th {
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}
.data-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-50); }
.data-table tr:hover td { background: var(--gold-50); }

/* 15. FORMS */
.form-group   { margin-bottom: 1.25rem; }
.form-grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
.form-label-req::after { content: ' *'; color: var(--error); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(84,194,182,0.18);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-hint { font-size: 0.8125rem; color: var(--gray-400); margin-top: 0.3rem; }

/* Form success alert */
.alert-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-md);
  color: #065F46;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* 16. GRIEVANCE STAGES */
.grievance-stages { display: flex; flex-direction: column; }
.grievance-stage {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  position: relative;
}
.grievance-stage:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-300), transparent);
}
.stage-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.stage-circle {
  width: 56px; height: 56px;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold-500);
}
.stage-body { padding-bottom: 3rem; }
.stage-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.25rem;
}
.stage-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
}
.stage-body p { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.stage-meta {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-400);
}
.stage-meta-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  align-items: baseline;
}
.stage-meta-key {
  font-weight: 600;
  color: var(--gray-700);
  min-width: 90px;
  flex-shrink: 0;
}
.stage-meta-val { color: var(--gray-600); }
.stage-meta-val a { color: var(--gold-600); }
.stage-meta-val a:hover { color: var(--gold-700); text-decoration: underline; }

/* 17. DISCLOSURE SECTIONS */
.disclosure-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
}
.disclosure-section:last-child { border-bottom: none; }
.disclosure-h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-500);
  display: inline-block;
}

.dl-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dl-row {
  display: contents;
}
.dl-row:nth-child(even) .dl-key,
.dl-row:nth-child(even) .dl-val { background: var(--gray-50); }
.dl-key {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray-200);
}
.dl-val {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
}
.dl-row:last-child .dl-key,
.dl-row:last-child .dl-val { border-bottom: none; }

/* 18. CHARTER CONTENT */
.charter-section { margin-bottom: 2.5rem; }
.charter-section h3 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-300);
}
.charter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.charter-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.charter-list li::before {
  content: '→';
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* 19. TERMS / MITC */
.terms-doc { max-width: 820px; }
.terms-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.875rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}
.terms-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.terms-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  font-weight: 600;
}
.terms-meta-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}
.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.terms-section:last-child { border-bottom: none; margin-bottom: 0; }
.terms-section-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.terms-section h4 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--navy-800); }
.terms-section p,
.terms-section li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.terms-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

/* 20. OFFERING GRID (services page) */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .offering-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .offering-grid { grid-template-columns: 1fr; }
}
.offering-card {
  background: var(--white);
  border: 1px solid rgba(71,107,85,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}
.offering-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.offering-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  color: var(--navy-800);
}
.offering-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* 20b. METHODOLOGY */
.method-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.method-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.method-card h4 { font-size: 1.0625rem; margin-bottom: 0.625rem; }
.method-card p  { font-size: 0.9rem; }

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--navy-800);
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
}
.tag--gold {
  background: var(--gold-100);
  color: var(--gold-700);
  border-color: var(--gold-300);
}

/* 21. PLACEHOLDER STYLE */
.placeholder {
  background: #FFF3CD;
  border: 1px dashed #E8A829;
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-size: 0.9em;
  color: #856404;
  font-style: italic;
  font-family: var(--font-sans);
}

/* Last-updated badge */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--gold-700);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* 22. CONTACT CARDS */
.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--gold-400); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--navy-800);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.contact-card-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
}
.contact-card-sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.125rem;
}

/* 23. COMPLIANCE STRIP (home) */
.compliance-strip {
  background: var(--navy-800);
  border-top: 1px solid rgba(84,194,182,0.2);
  padding: 2rem 0;
}
.compliance-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.compliance-strip p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.compliance-strip strong { color: var(--white); }

/* 24. PHILOSOPHY POINTS */
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.philo-num {
  width: 36px; height: 36px;
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-700);
  flex-shrink: 0;
}
.philo-text h5 { font-size: 1rem; margin-bottom: 0.25rem; }
.philo-text p  { font-size: 0.9rem; }

/* 25. SEBI OFFICE BOX */
.office-box {
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.office-box h5 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-700);
  margin-bottom: 0.75rem;
}
.office-box address {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* 26. FOOTER */
.site-footer { background: var(--navy-900); color: var(--white); }
.footer-disclaimer {
  background: rgba(84,194,182,0.08);
  border-top: 1px solid rgba(84,194,182,0.2);
  border-bottom: 1px solid rgba(84,194,182,0.1);
  padding: 1.375rem 0;
}
.footer-disclaimer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-disclaimer p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.footer-disclaimer p::before {
  content: '⚠';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  color: var(--gold-500);
}
.footer-main { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col p,
.footer-col address,
.footer-col li { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-col ul li a[target="_blank"]::after { content: ' ↗'; font-size: 0.7rem; opacity: 0.6; }

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.125rem;
}
.footer-brand-reg {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
  margin-bottom: 1rem;
}
.footer-reg-box {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
}
.footer-reg-box p { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-reg-box strong { color: var(--gold-400); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--gold-400); }

/* 27. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 28. RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .profile-grid { grid-template-columns: 240px 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

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

  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--navy-800);
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .header-nav.open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.25rem;
  }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { width: 100%; padding: 0.875rem 1rem; font-size: 1rem; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    padding: 0.25rem 0.5rem;
    border: none;
    border-radius: 0;
    display: none;
    margin: 0.25rem 0 0 1rem;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo-wrap { position: static; max-width: 260px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .trust-divider { display: none; }
  .grievance-stage { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .stage-circle { width: 46px; height: 46px; font-size: 1.25rem; }
  .grievance-stage:not(:last-child)::after { left: 22px; top: 62px; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-key { border-right: none; border-bottom: none; padding-bottom: 0.25rem; font-size: 0.8125rem; }
  .dl-val { padding-top: 0.25rem; }
  .dl-key, .dl-val { border-right: none; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .compliance-strip-inner { flex-direction: column; align-items: flex-start; }
  .brand-name { font-size: 1.125rem; }
  .brand-sebi { font-size: 0.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 2rem; }
  .trust-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
