/* ============================================================
   Shinrai Capital - Main Stylesheet
   shinraicapital.in
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1B3A6B;   /* Deep navy blue */
  --primary-light: #2563EB;   /* Bright blue */
  --accent:        #F59E0B;   /* Gold accent */
  --accent-dark:   #D97706;
  --bg:            #F8FAFC;   /* Page background */
  --bg-card:       #FFFFFF;
  --text-dark:     #1E293B;
  --text-mid:      #475569;
  --text-light:    #94A3B8;
  --border:        #E2E8F0;
  --success:       #10B981;
  --error:         #EF4444;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: #EFF6FF;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

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

.section-header p {
  max-width: 560px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-primary  { background: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-light);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-light);
  color: var(--primary-light);
}
.btn-outline:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
}

.btn-lg { padding: .9rem 2.25rem; font-size: 1.05rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg { width: 22px; height: 22px; fill: #fff; }

.nav-logo span { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-light);
  background: #EFF6FF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.5rem 1.75rem;
  z-index: 999;
  flex-direction: column;
  gap: .25rem;
}

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

.mobile-menu a {
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary-light);
  background: #EFF6FF;
}

.mobile-menu-actions {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 70px; /* navbar offset */
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2b4e 0%, #1B3A6B 45%, #1e4d8c 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(37,99,235,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,.12) 0%, transparent 60%);
}

/* Decorative grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--accent); }

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Trust indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.trust-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.trust-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero visual */
.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  pointer-events: none;
  opacity: .85;
}

.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.hero-card-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.hero-card-change {
  font-size: .85rem;
  color: #4ade80;
  font-weight: 600;
}

.chart-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-top: .75rem;
}

.chart-bar {
  flex: 1;
  background: rgba(255,255,255,.2);
  border-radius: 3px 3px 0 0;
  transition: background .2s;
}

.chart-bar.active { background: var(--accent); }

/* ---------- Disclaimer Banner ---------- */
.disclaimer-banner {
  background: #FEF3C7;
  border-top: 3px solid var(--accent);
  padding: .75rem 0;
  text-align: center;
  font-size: .83rem;
  color: #92400E;
  font-weight: 500;
}

/* ---------- Quick Features Strip ---------- */
.features-strip {
  background: var(--primary);
  padding: 1.75rem 0;
}

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

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: rgba(255,255,255,.85);
}

.feature-strip-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feature-strip-icon svg { width: 20px; height: 20px; fill: var(--accent); }

.feature-strip-item h4 {
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .1rem;
}

.feature-strip-item p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* ---------- About Section (Home) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-img-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.about-stat {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.about-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.about-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}

.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.about-badge-icon {
  width: 42px; height: 42px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.about-badge-icon svg { width: 22px; height: 22px; fill: var(--primary-light); }

.about-badge strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.about-badge span {
  font-size: .78rem;
  color: var(--text-mid);
}

.about-content h2 { margin-bottom: 1rem; }

.about-content p { margin-bottom: 1rem; }

.about-points {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.check-icon {
  width: 22px; height: 22px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
}

.check-icon svg { width: 12px; height: 12px; fill: var(--success); }

.about-point p {
  color: var(--text-dark);
  font-size: .95rem;
}

/* ---------- Services ---------- */
.services-bg { background: #F1F5F9; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-icon {
  width: 56px; height: 56px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-icon svg {
  width: 28px; height: 28px;
  fill: var(--primary-light);
  transition: fill var(--transition);
}

.service-card:hover .service-icon svg { fill: #fff; }

.service-card h3 {
  margin-bottom: .6rem;
  color: var(--primary);
}

.service-card p {
  font-size: .9rem;
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary-light);
  background: #EFF6FF;
  padding: .25rem .75rem;
  border-radius: 999px;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.why-icon svg { width: 32px; height: 32px; fill: #fff; }

.why-card h3 { margin-bottom: .6rem; color: var(--primary); }

/* ---------- Process Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px; height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.step-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }

/* ---------- Testimonials ---------- */
.testimonials-bg { background: #F1F5F9; }

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
}

.stars svg { width: 16px; height: 16px; fill: var(--accent); }

.testimonial-card p { font-size: .93rem; margin-bottom: 1.25rem; }

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

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}

.author-avatar img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name { font-weight: 600; font-size: .9rem; color: var(--primary); }
.author-role { font-size: .78rem; color: var(--text-light); }

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4d8c 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,158,11,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(37,99,235,.2) 0%, transparent 60%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 { color: #fff; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; }

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

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #0d2b4e, var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(37,99,235,.2) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---------- About Page ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.mission-card .mission-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
}

.mission-card:nth-child(1) .mission-icon { background: #EFF6FF; }
.mission-card:nth-child(2) .mission-icon { background: #FEF3C7; }
.mission-card:nth-child(3) .mission-icon { background: #ECFDF5; }

.mission-card:nth-child(1) .mission-icon svg { fill: var(--primary-light); }
.mission-card:nth-child(2) .mission-icon svg { fill: var(--accent); }
.mission-card:nth-child(3) .mission-icon svg { fill: var(--success); }

.mission-icon svg { width: 30px; height: 30px; }

.mission-card h3 { margin-bottom: .6rem; color: var(--primary); }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 44px; height: 44px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.value-icon svg { width: 22px; height: 22px; fill: var(--primary-light); }

.value-item h4 { margin-bottom: .3rem; color: var(--primary); }
.value-item p  { font-size: .88rem; }

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

.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

.team-card h3 { color: var(--primary); margin-bottom: .25rem; }
.team-role  { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: .88rem; }

/* ---------- Services Page ---------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-detail-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
}

.service-detail-visual h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.service-detail-visual p  { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.service-feature-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; }

.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p  { margin-bottom: 1rem; }

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.25rem;
}

.benefit-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.benefit-num {
  width: 28px; height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .15rem;
}

.benefit-item p { color: var(--text-dark); font-size: .93rem; }

/* ---------- SIP Calculator ---------- */
.calculator-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

.calc-row { margin-bottom: 1.5rem; }

.calc-row label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.range-wrapper {
  position: relative;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary-light);
  cursor: pointer;
}

.range-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .35rem;
}

.calc-result {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  color: #fff;
  margin-top: 1.5rem;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.calc-result-item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .25rem;
}

.calc-result-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p  { margin-bottom: 2rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 22px; height: 22px; fill: var(--primary-light); }

.contact-item h4 { font-size: .9rem; color: var(--primary); margin-bottom: .2rem; }
.contact-item p  { font-size: .88rem; }

.contact-social {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.social-btn:hover { background: var(--primary-light); transform: translateY(-3px); }
.social-btn svg  { width: 18px; height: 18px; fill: #fff; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 { margin-bottom: .5rem; color: var(--primary); }
.contact-form-wrap > p { margin-bottom: 1.75rem; font-size: .9rem; }

/* ---------- Forms (Shared) ---------- */
.form-group { margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .45rem;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: .78rem;
  margin-left: .3rem;
}

.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: all var(--transition);
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-control.error { border-color: var(--error); }
.form-control.success { border-color: var(--success); }

.input-error {
  font-size: .78rem;
  color: var(--error);
  margin-top: .3rem;
  display: none;
}

.input-error.visible { display: block; }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

.form-hint {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .3rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: .1rem;
  cursor: pointer;
  accent-color: var(--primary-light);
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: .85rem;
  color: var(--text-mid);
  margin: 0;
  cursor: pointer;
}

.checkbox-group a { color: var(--primary-light); text-decoration: underline; }

.form-submit { width: 100%; margin-top: .5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 64px; height: 64px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success-icon svg { width: 32px; height: 32px; fill: var(--success); }

.form-success h3 { color: var(--success); margin-bottom: .5rem; }
.form-success p  { font-size: .9rem; }

/* Password strength */
.password-strength {
  margin-top: .5rem;
}

.strength-bars {
  display: flex;
  gap: 4px;
  margin-bottom: .3rem;
}

.strength-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background .2s;
}

.strength-bar.weak   { background: var(--error); }
.strength-bar.fair   { background: #F59E0B; }
.strength-bar.good   { background: #3B82F6; }
.strength-bar.strong { background: var(--success); }

.strength-label {
  font-size: .75rem;
  color: var(--text-light);
}

/* ---------- Register Page ---------- */
.register-layout {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  padding-top: 70px;
}

.register-left {
  background: linear-gradient(160deg, #0d2b4e 0%, var(--primary) 60%, #1e4d8c 100%);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.register-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(245,158,11,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(37,99,235,.2) 0%, transparent 60%);
}

.register-left .content { position: relative; z-index: 1; }

.register-left h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; }
.register-left > .content > p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

.register-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.register-benefit {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { width: 18px; height: 18px; fill: var(--accent); }

.register-benefit h4 { font-size: .9rem; color: #fff; margin-bottom: .2rem; }
.register-benefit p  { font-size: .82rem; color: rgba(255,255,255,.6); }

.register-right {
  background: var(--bg);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-form-wrap {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.register-form-wrap h2 { margin-bottom: .5rem; color: var(--primary); }
.register-form-wrap > p { margin-bottom: 2rem; }

.register-form-wrap .signin-link {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .88rem;
  color: var(--text-mid);
}

.register-form-wrap .signin-link a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: underline;
}

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  background: #e2e8f0;
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: var(--text-mid);
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.map-placeholder svg { width: 32px; height: 32px; fill: var(--text-light); }
.map-placeholder span { font-size: .85rem; }

/* ---------- Footer ---------- */
footer {
  background: #0d2233;
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .nav-logo span { color: var(--accent); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

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

.footer-newsletter input {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .88rem;
  margin-bottom: .65rem;
  outline: none;
  font-family: inherit;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter input:focus { border-color: var(--primary-light); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  max-width: 600px;
  line-height: 1.65;
}

.footer-bottom-right {
  margin-left: auto;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }

/* ---------- SEBI Badge ---------- */
.sebi-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: .4rem .85rem;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: 1rem;
}

.sebi-badge svg { width: 14px; height: 14px; fill: var(--accent); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
  border-left: 4px solid var(--success);
  z-index: 9999;
  transform: translateX(200%);
  transition: transform .35s cubic-bezier(.68,-.55,.27,1.55);
  max-width: 340px;
}

.toast.visible { transform: translateX(0); }
.toast.error   { border-left-color: var(--error); }

.toast-icon svg { width: 22px; height: 22px; }
.toast.error   .toast-icon svg { fill: var(--error); }
.toast         .toast-icon svg { fill: var(--success); }

.toast-text strong { display: block; font-size: .9rem; color: var(--text-dark); }
.toast-text span   { font-size: .82rem; color: var(--text-mid); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
  z-index: 500;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover   { background: var(--primary-light); transform: translateY(-3px); }
.back-to-top svg     { width: 20px; height: 20px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .hero-visual { display: none; }
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid.reverse { direction: ltr; }
  .register-layout { grid-template-columns: 1fr; }
  .register-left   { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .features-strip-grid { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-list  { grid-template-columns: 1fr; }
  .calc-result-grid { grid-template-columns: 1fr; gap: .75rem; }
  .form-row     { grid-template-columns: 1fr; }

  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom-right { margin-left: 0; }

  .section { padding: 3.5rem 0; }
  .hero { min-height: auto; padding-bottom: 4rem; }
  .page-hero { padding: 100px 0 50px; }
}

@media (max-width: 480px) {
  .features-strip-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.25rem; }
  .register-right { padding: 2rem 1.25rem; }
}
