/* ==========================================================================
   FINTRICS CAPITAL PRIVATE LIMITED — Executive Corporate Design System
   SEBI Registered Research Analyst (Reg. No. INH000027919)
   WCAG 2.1 AAA Compliant, High-Contrast Luxury Theme
   ========================================================================== */

:root {
  /* Luxury Corporate Color System */
  --sapphire-navy: #071D49;
  --sapphire-hover: #041230;
  --sapphire-light: #153A66;
  --sapphire-gradient: linear-gradient(135deg, #071D49 0%, #153A66 100%);
  
  --emerald-mint: #00A896;
  --emerald-hover: #028090;
  --emerald-light: #E6F7F5;
  --emerald-glow: rgba(0, 168, 150, 0.25);

  --slate-silver: #708090;
  --slate-muted: #94A3B8;
  --slate-dark: #334155;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-ice: #F4F7FB;
  --bg-subtle: #F8FAFC;

  /* Typography Colors */
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-dim: #64748B;

  /* Status Colors */
  --success-green: #15803D;
  --success-bg: #DCFCE7;
  --danger-red: #B91C1C;
  --danger-bg: #FEE2E2;
  --warning-amber: #D97706;
  --warning-bg: #FEF3C7;

  /* Borders & Shadows */
  --border-color: #E2E8F0;
  --border-dark: #CBD5E1;
  --shadow-sm: 0 2px 10px rgba(7, 29, 73, 0.04);
  --shadow-md: 0 10px 30px rgba(7, 29, 73, 0.08);
  --shadow-lg: 0 20px 48px rgba(7, 29, 73, 0.14);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 3px solid var(--emerald-mint) !important;
  outline-offset: 3px !important;
}

/* WCAG Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--sapphire-navy);
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--sapphire-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--emerald-mint);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--emerald-hover);
}

/* Use Bootstrap's responsive .container widths and gutters site-wide. */

/* Text & Helper Badges */
.text-emerald { color: var(--emerald-mint) !important; }
.text-danger { color: var(--danger-red) !important; }
.bg-ice { background-color: var(--bg-ice) !important; }

/* Top Contact Bar */
.top-bar {
  background-color: var(--sapphire-navy);
  color: #FFFFFF;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: #FFFFFF;
}
.top-bar a:hover {
  color: #A7F3D0;
  text-decoration: underline;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sebi-badge-pill {
  background: rgba(0, 168, 150, 0.2);
  border: 1px solid var(--emerald-mint);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: #6EE7B7;
  font-size: 0.78rem;
}

.btn-whatsapp-sm {
  background: #25D366;
  color: #FFFFFF !important;
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp-sm:hover {
  background: #1EBE5D;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Site Header Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .logo-img {
    height: 44px;
    max-width: 170px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  color: var(--sapphire-navy);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--emerald-mint);
  background-color: var(--emerald-light);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-menu-custom {
  position: absolute;
  top: 110%;
  left: 0;
  width: 285px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  z-index: 1005;
}

.nav-dropdown:hover .dropdown-menu-custom,
.dropdown-menu-custom.show {
  display: flex;
}

.dropdown-item-custom {
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: var(--sapphire-navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.dropdown-item-custom:hover {
  background-color: var(--emerald-light);
  color: var(--emerald-hover);
}

/* Button Styling System */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25 ease;
  white-space: nowrap;
  text-decoration: none !important;
}

.btn-primary-sapphire {
  background-color: var(--sapphire-navy);
  color: #FFFFFF !important;
}
.btn-primary-sapphire:hover {
  background-color: var(--sapphire-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-navy-outline {
  background-color: transparent;
  border: 1px solid var(--sapphire-navy);
  color: var(--sapphire-navy) !important;
}
.btn-navy-outline:hover {
  background-color: var(--sapphire-navy);
  color: #FFFFFF !important;
}

.btn-emerald-outline {
  background-color: transparent;
  border: 1px solid var(--emerald-mint);
  color: var(--emerald-hover) !important;
}
.btn-emerald-outline:hover {
  background-color: var(--emerald-mint);
  color: #FFFFFF !important;
}

/* PDF Download Buttons */
.btn-pdf-download {
  background: linear-gradient(135deg, #071D49 0%, #00A896 100%);
  color: #FFFFFF !important;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 168, 150, 0.25);
}
.btn-pdf-download:hover {
  background: var(--sapphire-hover);
  transform: translateY(-2px);
}

.btn-pdf {
  background-color: var(--emerald-light);
  color: var(--emerald-hover) !important;
  border: 1px solid var(--emerald-mint);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
}
.btn-pdf:hover {
  background-color: var(--emerald-mint);
  color: #FFFFFF !important;
}

.btn-pdf-outline {
  background-color: #FFFFFF;
  color: var(--sapphire-navy) !important;
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
}
.btn-pdf-outline:hover {
  background-color: var(--bg-ice);
  border-color: var(--sapphire-navy);
}

.btn-pdf-link {
  color: var(--emerald-hover) !important;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
}
.btn-pdf-link:hover {
  color: var(--sapphire-navy) !important;
  text-decoration: underline !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--sapphire-navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 29, 73, 0.65);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 290px;
  height: 100vh;
  background-color: var(--bg-white);
  border-left: 1px solid var(--border-color);
  z-index: 1002;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s ease;
}

.mobile-nav-overlay.open .mobile-drawer {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.brand-name-mobile {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--sapphire-navy);
}

.close-drawer {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--sapphire-navy);
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sapphire-navy);
}

/* ==========================================================================
   HOMEPAGE HERO SECTION & GRID LAYOUT
   ========================================================================== */

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-ice) 0%, #FFFFFF 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sebi-tag-hero {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background-color: var(--emerald-light);
  color: var(--emerald-hover);
  font-weight: 800;
  font-size: 0.82rem;
  border: 1px solid rgba(0, 168, 150, 0.3);
}

.hero-copy h1 {
  font-size: 3.25rem;
  letter-spacing: -0.03em;
}

.hero-copy h1 span {
  color: var(--emerald-hover);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sapphire-navy);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--slate-silver);
}

/* SEBI Hero Card */
.sebi-hero-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.card-header-banner {
  background: var(--sapphire-navy);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.card-body-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entity-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sapphire-navy);
}

.entity-reg {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--emerald-hover);
  background: var(--emerald-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.info-list-mini {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--border-color);
}

.info-row .label {
  color: var(--slate-silver);
  font-weight: 500;
}

.info-row .value {
  color: var(--text-primary);
  font-weight: 700;
}

/* ==========================================================================
   HOMEPAGE SECTIONS: PARTICULARS, ABOUT, SERVICES, CHARTER, CONTACT
   ========================================================================== */

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-badge-emerald {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background-color: var(--emerald-light);
  color: var(--emerald-hover);
  font-weight: 700;
  font-size: 0.82rem;
}

.section-header h2 {
  font-size: 2.35rem;
  margin-top: 0.5rem;
}

.section-header p {
  color: var(--slate-silver);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* SEBI Registration Particulars Table Section */
.sebi-details-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.sebi-table-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--bg-ice);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy h2 {
  font-size: 2.25rem;
  margin: 0.75rem 0 1.25rem;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.highlight-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sapphire-navy);
  display: flex;
  align-items: center;
}

.corporate-shield-card {
  background: linear-gradient(135deg, var(--sapphire-navy) 0%, #102B66 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.shield-icon {
  font-size: 3.5rem;
  color: var(--emerald-mint);
  margin-bottom: 1rem;
}

.corporate-shield-card h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.corporate-shield-card p {
  color: var(--slate-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.pdf-box-mini {
  margin-top: 1.75rem;
}

/* Services / Research Offerings Section */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-mint);
}

.service-card.featured {
  border: 2px solid var(--emerald-mint);
  box-shadow: var(--shadow-md);
}

.featured-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background-color: var(--emerald-mint);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--emerald-light);
  color: var(--emerald-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--slate-silver);
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

/* Investor Charter Section */
.charter-section {
  padding: 6rem 0;
  background-color: var(--bg-ice);
}

.charter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.charter-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.charter-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.charter-card-header h3 {
  font-size: 1.25rem;
}

.charter-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.charter-bullet-list li {
  position: relative;
  padding-left: 1.25rem;
}

.charter-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--emerald-mint);
  font-size: 1.3rem;
  line-height: 1;
}

/* Contact & Registered Office Section */
.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.contact-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--emerald-light);
  color: var(--emerald-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.address-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.particulars-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   SUB-PAGE HERO BANNER SYSTEM (Luxury Executive Gradient Banners)
   ========================================================================== */

.subpage-hero {
  background: linear-gradient(135deg, #071D49 0%, #153A66 100%);
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.25) 0%, rgba(7, 29, 73, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.subpage-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.subpage-hero h1 {
  color: #FFFFFF;
  font-size: 2.75rem;
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.subpage-hero p.lead {
  color: #CBD5E1;
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--emerald-mint);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.breadcrumb-custom a {
  color: #94A3B8;
}
.breadcrumb-custom a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   CONTENT CARDS & COMPLIANCE BOXES
   ========================================================================== */

.content-card-main {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}

.card-header-styled {
  border-bottom: 2px solid var(--emerald-light);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-header-styled h2 {
  font-size: 1.65rem;
  margin: 0;
}

/* Styled Particulars Tables */
.sebi-particulars-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sebi-particulars-table th, .sebi-particulars-table td {
  padding: 1.1rem 1.6rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.sebi-particulars-table tr:last-child th,
.sebi-particulars-table tr:last-child td {
  border-bottom: none;
}

.sebi-particulars-table th {
  background-color: var(--bg-ice);
  color: var(--sapphire-navy);
  width: 32%;
  font-weight: 700;
}

.sebi-particulars-table td {
  background-color: var(--bg-white);
  color: var(--text-primary);
}

.sebi-particulars-table tr:hover td {
  background-color: var(--bg-subtle);
}

.highlight-reg {
  color: var(--emerald-hover);
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--emerald-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.badge-verified {
  background-color: var(--success-bg);
  color: var(--success-green);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
}

.contact-box-modal {
  background-color: var(--bg-ice);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--emerald-mint);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.pdf-action-bar {
  background: linear-gradient(135deg, var(--bg-ice) 0%, #FFFFFF 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--sapphire-navy);
}

.pdf-btn-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Complaint & Matrix Tables */
.complaint-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.complaint-table th, .complaint-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: center;
}

.complaint-table th:last-child, .complaint-table td:last-child {
  border-right: none;
}

.complaint-table th {
  background: var(--sapphire-navy);
  color: #FFFFFF;
  font-weight: 700;
}

.complaint-table td {
  background-color: var(--bg-white);
}

.complaint-table tr:hover td {
  background-color: var(--bg-ice);
}

/* Grid Layouts for Subpages */
.subpage-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.subpage-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card-subpage {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.info-card-subpage h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Footer Styling */
.site-footer {
  background-color: var(--sapphire-navy);
  color: #FFFFFF;
  padding: 5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-desc {
  color: var(--slate-muted);
  font-size: 0.92rem;
  margin: 1.25rem 0 1.5rem;
  line-height: 1.65;
}

.footer-logo img {
  display: block;
  width: min(220px, 100%);
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: var(--emerald-mint);
  transform: translateY(-2px);
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.35rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0px;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-regulatory-box {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.75rem 0;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.65;
}

.site-footer .footer-regulatory-box p {
  color: #B8C7DD;
  margin-bottom: 0.6rem;
}

.site-footer .footer-regulatory-box p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: #CBD5E1;
}

/* Scroll To Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--sapphire-navy);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: var(--emerald-mint);
  transform: translateY(-3px);
}

/* Responsive Adaptations */
@media (max-width: 1024px) {
  .hero-grid, .sebi-particulars-table th, .about-grid, .services-grid, .charter-grid, .contact-grid, .subpage-grid-2, .subpage-grid-3 {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
  .header-cta-group > a {
    display: none;
  }
  .header-inner {
    min-height: 58px;
  }
  .hamburger {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    background: var(--bg-white);
  }
  .site-header .hamburger {
    display: inline-flex;
  }
  .subpage-hero h1 {
    font-size: 2.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-card-main {
    padding: 1.75rem;
    margin-top: -1.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.6rem 0;
  }
  .header-inner {
    gap: 0.75rem;
  }
  .logo-img {
    height: 42px;
    max-width: min(190px, calc(100vw - 110px));
  }
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .top-bar-contact {
    justify-content: center;
    gap: 0.75rem;
  }
  .top-bar-contact a {
    font-size: 0.76rem;
  }
  .sebi-badge-pill {
    font-size: 0.68rem;
  }
  .mobile-drawer {
    width: min(330px, 88vw);
    right: -100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================================
   FINTRICS HERO — DARK RESEARCH-DESK EXPERIENCE
   =========================================================================== */
.hero-section {
  background: #06183d;
  color: #fff;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.hero-section::before {
  width: 38rem;
  height: 38rem;
  top: -20rem;
  right: -14rem;
  border: 1px solid rgba(73, 227, 207, .18);
  box-shadow: 0 0 0 5rem rgba(73, 227, 207, .025), 0 0 0 10rem rgba(73, 227, 207, .018);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .36;
  background-image: linear-gradient(rgba(152, 180, 222, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(152, 180, 222, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}

.hero-copy h1 { color: #fff; }
.hero-copy h1 span { color: #58e0cd; }
.hero-lead { color: #c5d2e8; }
.sebi-tag-hero { background: rgba(93, 227, 205, .1); color: #72ead8; border-color: rgba(93, 227, 205, .35); }
.hero-section .btn-primary-sapphire { background: #21baa8; color: #031633 !important; }
.hero-section .btn-primary-sapphire:hover { background: #54e1ce; }
.hero-section .btn-emerald-outline { color: #d8f8f3 !important; border-color: rgba(217, 248, 243, .5); }
.hero-section .btn-emerald-outline:hover { background: #fff; color: #06183d !important; }
.hero-stats-row { border-color: rgba(196, 215, 241, .23); }
.stat-item { border-color: rgba(196, 215, 241, .23); }
.stat-num { color: #fff; }
.stat-label { color: #aebed7; }

.research-visual {
  position: relative;
  border: 1px solid rgba(147, 213, 224, .25);
  border-radius: 24px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  color: #e8f3ff;
  background: linear-gradient(145deg, rgba(28, 69, 123, .72), rgba(5, 24, 61, .95));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .09);
  overflow: hidden;
}
.research-visual::before { content: ""; position: absolute; width: 13rem; height: 13rem; right: -5rem; bottom: -7rem; border-radius: 50%; background: rgba(25, 194, 174, .17); filter: blur(16px); }
.visual-topline, .visual-footer, .chart-labels { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.visual-topline { font-size: .71rem; font-weight: 800; letter-spacing: .1em; color: #a9c3e8; }
.visual-topline i { color: #54e1ce; margin-right: .35rem; }
.live-dot { display: inline-flex; align-items: center; gap: .35rem; color: #8ff1dc; letter-spacing: 0; font-weight: 600; }
.live-dot::before { content: ""; width: .42rem; height: .42rem; border-radius: 50%; background: #5de0c9; box-shadow: 0 0 0 .22rem rgba(93, 224, 201, .14); }
.visual-heading { margin: 2.1rem 0 1.3rem; }
.visual-heading p { color: #82eccf; font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: .3rem; }
.visual-heading h2 { color: #fff; font-size: clamp(1.65rem, 2.4vw, 2.3rem); margin: 0; }
.chart-panel { position: relative; padding: 1rem .7rem .3rem; border-radius: 16px; background: rgba(2, 16, 45, .34); border: 1px solid rgba(186, 215, 250, .12); }
.chart-labels { font-size: .65rem; color: #a7bad9; text-transform: uppercase; letter-spacing: .08em; padding: 0 .55rem .3rem; }
.chart-panel svg { width: 100%; display: block; }
.chart-grid-line { stroke: rgba(189, 212, 244, .15); stroke-width: 1; }
.chart-area { fill: url(#areaFill); }
.chart-line { fill: none; stroke: #50dfc9; stroke-width: 4; stroke-linecap: round; }
.chart-point { fill: #fff; stroke: #50dfc9; stroke-width: 4; }
.framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1rem 0 1.4rem; }
.framework-grid div { display: flex; flex-direction: column; gap: .45rem; padding: .85rem; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(203, 226, 255, .1); font-size: .72rem; font-weight: 700; color: #cddbf0; }
.framework-grid i { color: #59e0cd; font-size: 1.1rem; }
.visual-footer { position: relative; padding-top: 1rem; border-top: 1px solid rgba(192, 217, 248, .16); font-size: .78rem; color: #b7c8e1; }
.visual-footer span i { color: #60e0cc; margin-right: .3rem; }
.visual-footer a { color: #8ff1dc; font-weight: 700; }
.visual-footer a:hover { color: #fff; }

@media (max-width: 640px) {
  .hero-section::after { mask-image: none; }
  .research-visual { margin-top: .25rem; }
  .framework-grid { gap: .45rem; }
  .framework-grid div { padding: .65rem .45rem; font-size: .64rem; }
}

/* ===========================================================================
   HOMEPAGE VISUAL REFINEMENTS
   Keeps the existing content intact while improving hierarchy and polish.
   =========================================================================== */
.hero-section {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 168, 150, 0.14), transparent 23rem),
    radial-gradient(circle at 5% 92%, rgba(21, 58, 102, 0.09), transparent 25rem),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  top: -12rem;
  right: -7rem;
  border: 1px solid rgba(0, 168, 150, 0.18);
  border-radius: 50%;
}

.hero-grid,
.about-grid {
  gap: clamp(2.25rem, 5vw, 5rem);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  line-height: 1.12;
}

.hero-lead {
  max-width: 660px;
  font-size: 1.1rem;
}

.hero-stats-row {
  max-width: 700px;
  gap: 0;
  padding-top: 1.5rem;
}

.stat-item {
  padding: 0.25rem 1.25rem;
  border-right: 1px solid var(--border-color);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-num {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.sebi-hero-card {
  border-color: rgba(7, 29, 73, 0.14);
  box-shadow: 0 24px 56px rgba(7, 29, 73, 0.15);
}

.card-header-banner {
  background: linear-gradient(110deg, var(--sapphire-navy), #143d78);
}

.info-row {
  gap: 1rem;
}

.info-row .value {
  text-align: right;
}

.section-header.center {
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.sebi-details-section,
.about-section,
.services-section,
.charter-section,
.contact-section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.sebi-table-card,
.service-card,
.charter-card,
.contact-card {
  border-color: rgba(148, 163, 184, 0.4);
}

.sebi-table-card {
  box-shadow: 0 16px 36px rgba(7, 29, 73, 0.07);
}

.highlight-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.highlight-box:hover {
  transform: translateX(5px);
  border-color: rgba(0, 168, 150, 0.55);
  box-shadow: var(--shadow-sm);
}

.services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.service-card {
  min-height: 100%;
  padding: 2.4rem 2rem 2rem;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 0;
  height: 3px;
  background: var(--emerald-mint);
  border-radius: 0 0 4px 4px;
  transition: width 0.3s ease;
}

.service-card:hover::after,
.service-card.featured::after {
  width: calc(100% - 4rem);
}

.charter-card,
.contact-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.charter-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 641px) and (max-width: 1024px) {
  .services-grid,
  .charter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3.5rem 0 4rem;
  }

  .hero-copy {
    gap: 1.2rem;
  }

  .sebi-tag-hero {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat-item,
  .stat-item:first-child {
    padding: 0 0 0.8rem;
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .card-body-content,
  .contact-card,
  .service-card,
  .charter-card {
    padding: 1.5rem;
  }

  .info-row {
    flex-direction: column;
    gap: 0.1rem;
  }

  .info-row .value {
    text-align: left;
  }

  .services-grid,
  .charter-grid {
    grid-template-columns: 1fr;
  }
}

/* Final hero overrides — placed after legacy refinements intentionally. */
.hero-section {
  background: #06183d;
  color: #fff;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}
.hero-section::before {
  width: 38rem;
  height: 38rem;
  top: -20rem;
  right: -14rem;
  border-color: rgba(73, 227, 207, .18);
  box-shadow: 0 0 0 5rem rgba(73, 227, 207, .025), 0 0 0 10rem rgba(73, 227, 207, .018);
}
.hero-section::after { z-index: 0; }
.hero-section .hero-grid { position: relative; z-index: 1; }
.hero-copy h1 { color: #fff; }
.hero-copy h1 span { color: #58e0cd; }
.hero-lead { color: #c5d2e8; }
.sebi-tag-hero { background: rgba(93, 227, 205, .1); color: #72ead8; border-color: rgba(93, 227, 205, .35); }
.hero-section .btn-primary-sapphire { background: #21baa8; color: #031633 !important; }
.hero-section .btn-primary-sapphire:hover { background: #54e1ce; }
.hero-section .btn-emerald-outline { color: #d8f8f3 !important; border-color: rgba(217, 248, 243, .5); }
.hero-section .btn-emerald-outline:hover { background: #fff; color: #06183d !important; }
.hero-stats-row { border-color: rgba(196, 215, 241, .23); }
.stat-item { border-color: rgba(196, 215, 241, .23); }
.stat-num { color: #fff; }
.stat-label { color: #aebed7; }

@media (max-width: 640px) {
  .hero-section { padding: 3.75rem 0 4.25rem; }
  .stat-item, .stat-item:first-child { border-bottom-color: rgba(196, 215, 241, .23); }
}

/* ===========================================================================
   HOME SECTIONS — DISTINCT VISUAL TREATMENT
   =========================================================================== */
.sebi-details-section {
  position: relative;
  background: linear-gradient(135deg, #f1f8f8 0%, #fff 52%, #eef5ff 100%);
}
.sebi-details-section .section-header h2,
.about-section h2,
.services-section .section-header h2,
.charter-section .section-header h2,
.contact-section .section-header h2 { letter-spacing: -.035em; }
.section-badge-emerald {
  box-shadow: 0 8px 20px rgba(0, 168, 150, .13);
  letter-spacing: .045em;
  text-transform: uppercase;
  font-size: .7rem;
}
.sebi-table-card {
  border: 0;
  border-radius: 22px;
  padding: .65rem;
  background: #fff;
  box-shadow: 0 24px 55px rgba(5, 36, 83, .12);
}
.sebi-particulars-table { border: 0; border-radius: 15px; }
.sebi-particulars-table th { background: #082452; color: #e9f8f6; width: 35%; }
.sebi-particulars-table td { font-weight: 500; }
.sebi-particulars-table tr:nth-child(even) td { background: #f7fbfc; }
.pdf-action-bar { margin: 1.2rem .35rem .35rem; background: #e7f8f5; border: 0; }

.about-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #f4faff 0%, #ffffff 55%, #eef8f6 100%); }
.about-section::before { content: ""; position: absolute; width: 34rem; height: 34rem; top: -19rem; left: -12rem; border-radius: 50%; background: rgba(0, 168, 150, .10); filter: blur(8px); }
.about-section .about-grid { position: relative; z-index: 1; }
.about-section .section-badge-emerald { background: var(--emerald-light); color: var(--emerald-hover); border: 1px solid rgba(0, 168, 150, .28); }
.about-section h2 { color: var(--sapphire-navy); font-size: clamp(2rem, 3vw, 2.85rem); }
.about-section .about-copy > p { color: var(--text-secondary); }
.about-highlights-list { gap: .7rem; }
.highlight-box { background: #fff; border: 1px solid var(--border-color); color: var(--text-secondary); box-shadow: var(--shadow-sm); backdrop-filter: none; }
.highlight-box:hover { background: #fff; border-color: rgba(0, 168, 150, .45); box-shadow: var(--shadow-md); }
.corporate-shield-card { position: relative; border: 1px solid rgba(106, 236, 216, .3); background: linear-gradient(150deg, #0cbaaa, #123b76 72%); }

.services-section { background: #fff; }
.services-section .section-header { position: relative; }
.services-section .section-header::after { content: ""; display: block; width: 66px; height: 4px; margin: 1.25rem auto -1.6rem; border-radius: 99px; background: linear-gradient(90deg, #00a896, #0c2e68); }
.services-grid { gap: 1.35rem; }
.service-card { border: 0; border-radius: 18px; background: #fff; box-shadow: 0 14px 35px rgba(7, 29, 73, .09); }
.service-card:nth-child(1) { border-top: 5px solid #13a996; }
.service-card:nth-child(2) { border-top: 5px solid #0c3a78; }
.service-card:nth-child(3) { border-top: 5px solid #e5a91c; }
.service-card.featured { border: 0; box-shadow: 0 20px 45px rgba(7, 51, 106, .17); transform: translateY(-10px); }
.service-card.featured:hover { transform: translateY(-15px); }
.featured-badge { top: 18px; right: 18px; background: #0c3a78; }
.service-icon { border-radius: 14px; background: #e8f7f5; }

.charter-section { background: linear-gradient(135deg, #e7f7f4 0%, #f7fbff 55%, #edf3ff 100%); }
.charter-card { position: relative; overflow: hidden; border: 0; border-radius: 18px; background: rgba(255, 255, 255, .92); box-shadow: 0 12px 32px rgba(7, 29, 73, .08); }
.charter-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: #00a896; }
.charter-card:nth-child(2)::before { background: #235da7; }
.charter-card:nth-child(3)::before { background: #d89912; }
.charter-card-header { border-bottom: 1px solid #e2eaf4; }
.charter-card:hover { box-shadow: 0 22px 45px rgba(7, 29, 73, .14); }

.contact-section { background: #fff; }
.contact-section .section-header { padding: 1rem 0; }
.contact-grid { gap: 1.35rem; }
.contact-card { border: 1px solid #dce7f3; border-radius: 20px; box-shadow: none; }
.contact-card:first-child { background: #082452; border-color: #082452; }
.contact-card:first-child h3, .contact-card:first-child .address-text, .contact-card:first-child .particulars-list, .contact-card:first-child .particulars-list a { color: #eff7ff; }
.contact-card:first-child .contact-card-header { border-bottom-color: rgba(255, 255, 255, .16); }
.contact-card:first-child .icon-circle { background: rgba(91, 229, 210, .14); color: #6becd8; }
.contact-card:nth-child(2) { background: #e9f8f5; border-color: #c9eee8; }

@media (max-width: 1024px) {
  .service-card.featured { transform: none; }
  .service-card.featured:hover { transform: translateY(-6px); }
}

/* ===========================================================================
   REGULATORY SUBPAGES — CONSISTENT PREMIUM LAYOUT
   =========================================================================== */
.legacy-header { display: none; }
.subpage main.container { padding: 4rem 0 5rem; }
.subpage main > .my-4 { margin: 0 0 2rem; }
.subpage main h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.045em; }
.subpage main > .my-4 > p { color: var(--text-dim); }
.subpage .card {
  border-radius: 20px;
  padding: clamp(1.5rem, 3.5vw, 2.75rem) !important;
  background: #fff;
  box-shadow: 0 22px 50px rgba(7, 29, 73, .1) !important;
  border: 1px solid #e5edf6 !important;
}
.subpage .card p { line-height: 1.8; }
.subpage .card h2, .subpage .card h3 { color: #09295b; }
.subpage .card .border-top { border-top-color: #dce8f3 !important; padding-top: 1.5rem; }
.subpage .btn { min-height: 44px; }

.subpage-accessibility main.container,
.subpage-advertisement main.container,
.subpage-complaints main.container { position: relative; }
.subpage-accessibility main.container::before,
.subpage-advertisement main.container::before,
.subpage-complaints main.container::before {
  content: ""; position: absolute; width: 25rem; height: 25rem; border-radius: 50%; right: -13rem; top: .5rem; z-index: -1; filter: blur(6px);
}
.subpage-accessibility main.container::before { background: rgba(0, 168, 150, .13); }
.subpage-advertisement main.container::before { background: rgba(28, 94, 176, .12); }
.subpage-complaints main.container::before { background: rgba(0, 168, 150, .12); }
.subpage-accessibility .card { border-left: 6px solid #00a896 !important; }
.subpage-accessibility .card h2::before { content: "✓"; display: inline-grid; place-items: center; width: 1.5rem; height: 1.5rem; margin-right: .5rem; border-radius: 50%; color: #fff; background: #00a896; font-size: .9rem; }
.subpage-advertisement .card { border-top: 6px solid #184f9e !important; }
.subpage-advertisement .card > p:first-child { font-size: 1.12rem; color: #153b70; font-weight: 600; }
.subpage-advertisement .card > p:nth-child(2) { padding: 1.15rem; border-radius: 12px; color: #784b00; background: #fff7df; border-left: 4px solid #e3a422; }
.subpage-complaints .card { border-top: 6px solid #00a896 !important; }
.subpage-complaints .complaint-table { margin-top: 1.5rem; box-shadow: 0 10px 25px rgba(7, 29, 73, .08); }
.subpage-complaints .complaint-table td { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #008b7d; padding: 1.4rem 1.25rem; }


.subpage-about .content-card-main { border-top: 5px solid #00a896; }
.subpage-about .subpage-hero { background: linear-gradient(125deg, #071d49, #0e5482); }

@media (max-width: 640px) {
  .subpage main.container { padding: 2.75rem 0 3.5rem; }
  .subpage .card .d-flex { gap: .75rem; }
  .subpage .card .btn { width: 100%; justify-content: center; }
}

/* Policy, safety and grievance pages */
.subpage-disclosure main.container, .subpage-investors main.container, .subpage-escalation main.container, .subpage-fraud main.container, .subpage-grievance main.container { min-height: 58vh; }
.subpage-disclosure main.container, .subpage-escalation main.container, .subpage-grievance main.container { background: linear-gradient(135deg, #f8fcff, #fff); }
.subpage-disclosure .card { border-top: 6px solid #00a896 !important; }
.subpage-disclosure .card h2 { color: #007c71; }
.subpage-investors { background: linear-gradient(140deg, #f4fbfa, #fff 38%, #f7f9ff); }
.subpage-investors .row .card { border-top: 6px solid #18a58d !important; }
.subpage-investors .row .col-md-6:nth-child(2) .card { border-top-color: #d39316 !important; }
.subpage-investors .row .card h2 { padding-bottom: 1rem; border-bottom: 1px solid #e2ebf1; }
.subpage-investors .row .col-md-6:nth-child(1) .charter-bullet-list li::before { color: #16a085; }
.subpage-investors .row .col-md-6:nth-child(2) .charter-bullet-list li::before { color: #d39316; }
.subpage-escalation .card, .subpage-grievance .card { border-top: 6px solid #174e9b !important; }
.subpage-escalation .complaint-table th, .subpage-grievance .complaint-table th { background: #082b61; }
.subpage-escalation .complaint-table td:first-child, .subpage-grievance .complaint-table td:first-child { color: #008c7d; font-weight: 800; }
.subpage-fraud { background: #fffafb; }
.subpage-fraud .card { border-top: 6px solid #c84a3d !important; }
.subpage-fraud .card > p:first-child { color: #8d2f26; font-size: 1.1rem; font-weight: 700; }
.subpage-fraud .card > p:nth-child(2) { padding: 1rem 1.2rem; border-left: 4px solid #d77b24; background: #fff4e8; border-radius: 10px; }

/* ============================================================
   Contact page — Get In Touch + framed contact form
   ============================================================ */
.subpage-contact .contact-page { background: #fff; }

.ct-intro { padding: 4rem 0 1rem; text-align: center; }
.ct-eyebrow {
  margin: 0 0 .65rem; font-family: var(--font-heading);
  font-size: .98rem; font-weight: 700; letter-spacing: .01em;
  color: var(--emerald-mint);
}
.ct-title {
  margin: 0 0 2.75rem; font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.4vw, 2.85rem); font-weight: 800;
  line-height: 1.18; color: var(--sapphire-navy);
}

.ct-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  text-align: left;
}
.ct-info-card {
  display: flex; align-items: flex-start; gap: 1.15rem;
  padding: 1.75rem 1.6rem; min-height: 172px;
  background: #fff; border: 1px solid var(--border-color);
  border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ct-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 150, .35);
  box-shadow: var(--shadow-md);
}
.ct-info-icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--emerald-light); color: var(--emerald-mint);
  font-size: 1.65rem;
}
.ct-info-body h3 {
  margin: .35rem 0 .6rem; font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800; color: var(--sapphire-navy);
}
.ct-info-body p { margin: 0; color: var(--text-secondary); line-height: 1.65; }
.ct-info-body a { color: var(--text-secondary); text-decoration: none; word-break: break-word; }
.ct-info-body a:hover { color: var(--emerald-hover); text-decoration: underline; }

/* ---- Form band ---- */
.ct-form-band { padding: 3.5rem 0 4.5rem; }
.ct-form-frame {
  position: relative; isolation: isolate;
  padding: 3.25rem 1.5rem; border-radius: 22px; overflow: hidden;
  background: url("../img/about-us-page.webp") center/cover no-repeat, var(--sapphire-navy);
}
.ct-form-frame::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(7, 29, 73, .88), rgba(21, 58, 102, .74));
  backdrop-filter: blur(2px);
}
.ct-form-card {
  max-width: 760px; margin: 0 auto;
  padding: 2.75rem clamp(1.25rem, 3.5vw, 2.75rem) 2.5rem;
  background: #fff; border-radius: 18px;
  box-shadow: 0 28px 60px rgba(4, 18, 48, .28);
}
.ct-form-title {
  margin: 0 0 2rem; text-align: center; font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800;
  color: var(--sapphire-navy);
}

.ct-form { display: grid; gap: 1.15rem; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.ct-row-phone { grid-template-columns: .62fr 1fr 1.15fr; }
.ct-field { min-width: 0; }

.ct-input {
  display: block; width: 100%; min-height: 52px;
  padding: .85rem 1.05rem; font: inherit; color: var(--text-primary);
  background: #fff; border: 1px solid var(--border-color);
  border-radius: 10px; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ct-input::placeholder { color: var(--slate-muted); }
.ct-input:focus {
  border-color: var(--emerald-mint);
  box-shadow: 0 0 0 4px var(--emerald-glow);
}
.ct-select {
  appearance: none; padding-right: 2.5rem; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23708090'%3E%3Cpath d='M8 11.5 2.5 6h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px;
}
.ct-textarea { min-height: 148px; resize: vertical; line-height: 1.6; }

.ct-consent { display: flex; align-items: flex-start; gap: .6rem; margin-top: .35rem; }
.ct-consent input[type="checkbox"] {
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: .15rem;
  accent-color: var(--emerald-mint); cursor: pointer;
}
.ct-consent label { font-size: .95rem; color: var(--text-secondary); cursor: pointer; }
.ct-consent a { color: var(--sapphire-navy); font-weight: 600; text-decoration: underline; }
.ct-consent a:hover { color: var(--emerald-hover); }

.ct-submit {
  justify-self: center; min-width: 190px; margin-top: .75rem;
  padding: .95rem 2.5rem; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff;
  background: var(--sapphire-gradient);
  box-shadow: 0 12px 26px rgba(7, 29, 73, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ct-submit:hover {
  background: linear-gradient(135deg, var(--emerald-hover) 0%, var(--emerald-mint) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 168, 150, .3);
}
.ct-submit:active { transform: translateY(0); }

@media (max-width: 992px) {
  .ct-info-grid { grid-template-columns: 1fr; }
  .ct-info-card { min-height: 0; }
}
@media (max-width: 640px) {
  .ct-intro { padding-top: 2.75rem; }
  .ct-title { margin-bottom: 2rem; }
  .ct-form-band { padding: 2.5rem 0 3.25rem; }
  .ct-form-frame { padding: 1.5rem .9rem; border-radius: 16px; }
  .ct-form-card { padding: 2rem 1.15rem 1.85rem; }
  .ct-row, .ct-row-phone { grid-template-columns: 1fr; }
  .ct-submit { width: 100%; }
}

/* ============================================================
   Header — Dashboard CTA
   ============================================================ */
.btn-dashboard {
  background-color: var(--emerald-mint);
  color: #FFFFFF !important;
  border-color: var(--emerald-mint);
  box-shadow: 0 4px 14px rgba(0, 168, 150, .22);
}
.btn-dashboard:hover {
  background-color: var(--emerald-hover);
  border-color: var(--emerald-hover);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 168, 150, .3);
}
.hero-section .btn-dashboard { color: #031633 !important; background: #21baa8; border-color: #21baa8; }

/* Mobile drawer variant (header CTAs are hidden below 1024px) */
.mobile-menu-links .drawer-dashboard {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1rem; margin-bottom: .35rem;
  border-radius: var(--radius-pill);
  background: var(--emerald-mint); color: #FFFFFF !important;
  font-weight: 700;
}
.mobile-menu-links .drawer-dashboard:hover { background: var(--emerald-hover); }

/* Keep the header on one line on narrow desktops */
@media (max-width: 1240px) and (min-width: 1025px) {
  .header-cta-group .btn-navy-outline { display: none; }
  .header-cta-group { gap: .5rem; }
  .header-cta-group .btn { padding: .65rem 1.15rem; font-size: .86rem; }
}

/* ============================================================
   Client Dashboard (dashboard.html)
   ============================================================ */
.dash-page { padding: 3rem 0 4.5rem; background: linear-gradient(180deg, var(--bg-ice) 0%, #FFFFFF 45%); }
.dash-shell { display: grid; grid-template-columns: 300px 1fr; gap: 2rem; align-items: start; }

/* ---- Sidebar ---- */
.dash-sidebar {
  position: sticky; top: 96px;
  padding: 1.25rem; border-radius: 20px;
  background: linear-gradient(160deg, var(--sapphire-navy) 0%, #0C2A5E 100%);
  box-shadow: var(--shadow-lg);
}
.dash-user {
  display: flex; align-items: center; gap: .85rem;
  padding: .35rem .35rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 1rem;
}
.dash-avatar {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--emerald-mint); color: #fff;
  font-family: var(--font-heading); font-weight: 800; letter-spacing: .02em;
}
.dash-user-meta { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.dash-user-meta strong { color: #fff; font-family: var(--font-heading); font-size: 1rem; }
.dash-user-meta span { color: #A9BDD9; font-size: .8rem; }

.dash-nav { display: flex; flex-direction: column; gap: .55rem; }
.dash-nav-item {
  display: flex; align-items: center; gap: .9rem; width: 100%;
  padding: .8rem .9rem; border: 0; border-radius: 14px; cursor: pointer;
  background: transparent; color: #E7EEF9 !important;
  font-family: var(--font-heading); font-size: .98rem; font-weight: 600;
  text-align: left; text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.dash-nav-item:hover { background: rgba(255, 255, 255, .09); transform: translateX(2px); }
.dash-nav-item.active {
  background: #fff; color: var(--sapphire-navy) !important;
  box-shadow: 0 8px 20px rgba(2, 12, 34, .28);
}
.dash-nav-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 12px; font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .22); color: #CFE9E4;
  transition: all .2s ease;
}
.dash-nav-item.active .dash-nav-icon {
  border-color: transparent; background: var(--emerald-light); color: var(--emerald-hover);
}
.dash-nav-logout { margin-top: .5rem; border-top: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; padding-top: 1rem; }
.dash-nav-logout:hover { background: rgba(185, 28, 28, .28); }

/* ---- Content ---- */
.dash-content { min-width: 0; }
.dash-title {
  margin: 0 0 1.75rem; font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--sapphire-navy);
}
.dash-panel { animation: dashFade .3s ease; }
.dash-panel[hidden] { display: none; }
@keyframes dashFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- Plan cards ---- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.plan-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  padding: 2.25rem 1.5rem; text-align: center;
  background: #fff; border: 1px solid var(--border-color); border-radius: 18px;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan-card-featured { border-color: rgba(0, 168, 150, .45); }
.plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: .25rem .85rem; border-radius: var(--radius-pill);
  background: var(--emerald-mint); color: #fff;
  font-family: var(--font-heading); font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.plan-price {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 800; color: var(--sapphire-navy);
}
.plan-price span { font-size: .82em; font-weight: 700; }
.plan-term { margin: .9rem 0 1.6rem; color: var(--text-dim); font-size: 1.02rem; }

.plan-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 190px; padding: .85rem 2rem; border: 1px solid transparent;
  border-radius: var(--radius-pill); cursor: pointer;
  background: var(--emerald-mint); color: #fff !important;
  font-family: var(--font-heading); font-size: .98rem; font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0, 168, 150, .22);
  transition: all .22s ease;
}
.plan-btn:hover { background: var(--emerald-hover); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 168, 150, .3); }
.plan-btn-soft {
  background: var(--emerald-light); color: var(--emerald-hover) !important;
  border-color: rgba(0, 168, 150, .4); box-shadow: none;
}
.plan-btn-soft:hover { background: var(--emerald-mint); color: #fff !important; }
.plan-btn-block { width: 100%; }

/* ---- Cards, tables, forms ---- */
.dash-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; align-items: start; }
.dash-card {
  padding: 1.85rem; background: #fff;
  border: 1px solid var(--border-color); border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.dash-card-muted { background: var(--bg-ice); }
.dash-card-title {
  margin: 0 0 1.25rem; font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800; color: var(--sapphire-navy);
}
.dash-meta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.25rem; }
.dash-meta-label { display: block; margin-bottom: .3rem; color: var(--slate-silver); font-size: .88rem; font-weight: 600; }
.dash-meta-value { margin: 0; color: var(--text-primary); font-weight: 600; }
.dash-alert {
  margin: 0 0 1.25rem; padding: 1rem 1.15rem;
  border: 1px solid rgba(0, 168, 150, .3); border-radius: 12px;
  background: var(--emerald-light); color: #0A6F64;
}
.dash-support-text { margin-bottom: 1.35rem; color: var(--text-secondary); }
.dash-support-list { list-style: none; margin: 1.5rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--border-color); }
.dash-support-list li { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; color: var(--text-secondary); }
.dash-support-list li i { color: var(--emerald-mint); }
.dash-support-list a { color: var(--text-secondary); }
.dash-support-list a:hover { color: var(--emerald-hover); }

.dash-table-wrap { overflow-x: auto; border: 1px solid var(--border-color); border-radius: 12px; }
.dash-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.dash-table th {
  padding: .95rem 1.1rem; text-align: left; white-space: nowrap;
  background: var(--bg-ice); color: var(--sapphire-navy);
  font-family: var(--font-heading); font-size: .9rem; font-weight: 700;
}
.dash-table td { padding: .95rem 1.1rem; border-top: 1px solid var(--border-color); color: var(--text-secondary); }
.dash-empty { text-align: center; color: var(--text-dim); padding: 2rem 1rem !important; }
.dash-link { font-weight: 700; }
.dash-note { margin: 1.15rem 0 0; color: var(--text-dim); font-size: .9rem; }

.dash-pill {
  display: inline-block; padding: .25rem .75rem; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 700;
}
.dash-pill-ok { background: var(--success-bg); color: var(--success-green); }
.dash-pill-fail { background: var(--danger-bg); color: var(--danger-red); }
.dash-pill-idle { background: var(--bg-ice); color: var(--slate-dark); }

.dash-form { display: grid; gap: 1.15rem; justify-items: start; }
.dash-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; width: 100%; }
.dash-field { width: 100%; min-width: 0; }
.dash-field label {
  display: block; margin-bottom: .4rem;
  color: var(--sapphire-navy); font-size: .92rem; font-weight: 700;
}
.dash-input {
  display: block; width: 100%; min-height: 50px; padding: .8rem 1rem;
  font: inherit; color: var(--text-primary); background: #fff;
  border: 1px solid var(--border-color); border-radius: 10px; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea.dash-input { min-height: 96px; resize: vertical; }
.dash-input:focus { border-color: var(--emerald-mint); box-shadow: 0 0 0 4px var(--emerald-glow); }

@media (max-width: 1100px) {
  .dash-shell { grid-template-columns: 250px 1fr; gap: 1.5rem; }
  .dash-split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .dash-shell { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .dash-nav { display: grid; grid-template-columns: repeat(2, 1fr); }
  .dash-nav-logout { grid-column: 1 / -1; border-top: 0; padding-top: .8rem; }
  .plan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dash-page { padding: 2rem 0 3rem; }
  .dash-nav { grid-template-columns: 1fr; }
  .dash-card { padding: 1.35rem; }
  .dash-meta-row { grid-template-columns: 1fr 1fr; }
  .dash-form-row { grid-template-columns: 1fr; }
  .plan-btn, .dash-form .plan-btn { width: 100%; }
}

/* ============================================================
   "Why FINTRICS Research Analyst Services" — index.html
   ============================================================ */
.why-section {
  position: relative; isolation: isolate;
  padding: 5.5rem 0 6rem;
  background: url("../img/about-us.webp") center/cover no-repeat, var(--sapphire-navy);
}
.why-section::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, rgba(4, 16, 44, .92) 0%, rgba(7, 29, 73, .86) 45%, rgba(2, 60, 74, .88) 100%);
}
.why-title {
  margin: 0 0 3.25rem; text-align: center;
  font-family: var(--font-heading); font-weight: 800; color: #FFFFFF;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.2;
}

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.why-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.why-card:hover, .why-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--emerald-mint);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}
.why-num {
  display: grid; place-items: center;
  width: 48px; height: 48px; margin-bottom: 1.6rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--emerald-mint) 0%, #0C7F76 100%);
  color: #FFFFFF; font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 168, 150, .35);
}
.why-card-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-heading); font-size: 1.22rem; font-weight: 700;
  line-height: 1.35; color: #FFFFFF;
}
.why-text {
  margin: 0 0 1.35rem; color: #C9D8EC; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.why-card.open .why-text { -webkit-line-clamp: unset; overflow: visible; }
.why-more {
  margin-top: auto; padding: 0; border: 0; background: none; cursor: pointer;
  color: var(--emerald-mint); font-family: var(--font-heading);
  font-size: .95rem; font-weight: 700;
  text-decoration: underline; text-underline-offset: 5px;
  transition: color .2s ease;
}
.why-more:hover { color: #FFFFFF; }
.why-card.open .why-more { color: #FFFFFF; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
}
@media (max-width: 700px) {
  .why-section { padding: 3.5rem 0 4rem; }
  .why-title { margin-bottom: 2.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.6rem 1.35rem 1.4rem; }
}
