/* ============================================================
   Emonics Capital — site.css
   Extends tokens.css + base.css. All Capital-specific components.
   ============================================================ */

/* ============================================================
   Buttons — Register Interest (primary) + secondary
   ============================================================ */

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  min-height: 44px;
  cursor: pointer;
  transition: filter 150ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.wa-btn:hover {
  filter: brightness(0.88);
}

.wa-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.wa-btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.wa-btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  filter: none;
}

.wa-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: filter 150ms ease;
  flex-shrink: 0;
  text-decoration: none;
}

.wa-btn-icon:hover {
  filter: brightness(0.88);
}

.wa-btn-icon:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 120px;
  gap: 16px;
}

.lockup {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.lockup-img {
  display: block;
  height: 92px;
  width: auto;
  max-width: 380px;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 150ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Short nav labels for narrow screens */
.nav-short {
  display: none;
}

.header-cta {
  font-size: 13px;
  padding: 9px 16px;
  min-height: 40px;
  flex-shrink: 0;
}

/* ============================================================
   Hindi/Hinglish accent signatures
   Emotional accents at brand moments — coral, italic, restrained.
   Used ONLY at section headers, hero, and CTA beats. Never in
   functional copy (nav, labels, legal, product descriptions).
   ============================================================ */

/* Hero-scale accent (Sapnon Ka Saathi) */
.hero-hindi-accent {
  display: block;
  font-size: clamp(14px, 2vw, 17px);
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* Section-header accent (above h2) */
.hindi-accent {
  display: block;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.3;
}

/* Compact card-level accent (inside product cards) */
.hindi-accent-sm {
  display: block;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  line-height: 1.3;
  text-transform: none;
}

/* CTA-section accent (Parivar ki tarah) — on dark/navy bg */
.hindi-accent-cta {
  display: block;
  font-size: clamp(13px, 1.8vw, 16px);
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #18234e 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.hero-inner {
  max-width: 760px;
}

.hero-launch-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-launch-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 640px;
}

/* ============================================================
   Launching Soon Badge (on cards)
   ============================================================ */

.launching-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 4px;
  padding: 3px 8px;
  line-height: 1.4;
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   Section scaffolding — shared
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-body {
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
}

.body-link {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}

.body-link:hover {
  color: var(--orange);
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   Product Grid (Home — 4 cards)
   ============================================================ */

.products-section {
  background: var(--white);
  padding: 96px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 150ms ease;
}

.product-card:hover {
  border-color: var(--orange);
}

.product-card h3 {
  color: var(--navy);
  font-size: 17px;
}

.product-card p {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  color: var(--muted);
}

/* ============================================================
   Infra Connection Section
   ============================================================ */

.infra-section {
  background: var(--navy);
  padding: 96px 0;
}

.infra-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.infra-inner h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.infra-inner p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.infra-inner p:last-of-type {
  margin-bottom: 32px;
}

.infra-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
  transition: color 150ms ease, border-color 150ms ease;
}

.infra-link:hover {
  color: #ffa98a;
  border-color: #ffa98a;
}

/* ============================================================
   Trust Pillars
   ============================================================ */

.pillars-section {
  background: var(--offwhite);
  padding: 96px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
}

.pillar-accent {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 16px;
}

.pillar h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--navy);
}

.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   Final CTA
   ============================================================ */

.final-cta {
  background: var(--navy);
  padding: 96px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
}

/* ============================================================
   Page Header (inner pages)
   ============================================================ */

.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, #18234e 100%);
  padding: 80px 0;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-lead {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

/* ============================================================
   Content Sections (About, Why — centered prose)
   ============================================================ */

.content-section {
  background: var(--white);
  padding: 96px 0;
}

.content-section.bg-offwhite {
  background: var(--offwhite);
}

.content-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.content-inner h2 {
  margin-bottom: 24px;
}

.content-inner p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-inner p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Journey Grid (About page — 4 step cards)
   ============================================================ */

.journey-section {
  background: var(--offwhite);
  padding: 96px 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.journey-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}

.journey-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

.journey-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.journey-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   Products Page — individual product sections
   ============================================================ */

.product-detail {
  padding: 80px 0;
}

.product-detail:nth-child(even) {
  background: var(--offwhite);
}

.product-detail-inner {
  max-width: 800px;
  margin: 0 auto;
}

.product-detail-inner h2 {
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 18px;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 28px;
  display: block;
}

.product-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(28, 20, 84, 0.85);
  margin-bottom: 16px;
}

.product-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.product-infra-note {
  background: rgba(30, 42, 94, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
}

.product-infra-note a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-infra-note a:hover {
  color: var(--orange);
}

/* ============================================================
   Why Page — Credibility cards
   ============================================================ */

.why-section {
  background: var(--white);
  padding: 96px 0;
}

.why-section.bg-offwhite {
  background: var(--offwhite);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.why-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  background: var(--white);
}

.why-card-accent {
  display: block;
  width: 36px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--navy);
}

.why-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   Contact Page
   ============================================================ */

.contact-section {
  background: var(--offwhite);
  padding: 80px 0;
}

.contact-block {
  max-width: 560px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
}

.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 10px;
}

.contact-value {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.5;
}

.contact-placeholder-note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}

.disclaimer-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 32px;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-box p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   Footer — 4-column structured layout
   ============================================================ */

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: start;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand-link {
  display: inline-flex;
  text-decoration: none;
}

.footer-lockup-img {
  display: block;
  height: 84px;
  width: auto;
  max-width: 380px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 220px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 150ms ease;
  display: block;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--white);
}

.footer-contact-placeholder {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-bottom: 8px;
}

.footer-register-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(230, 95, 60, 0.5);
  margin-top: 4px;
  transition: color 150ms ease;
}

.footer-register-link:hover {
  color: #ffa98a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 740px;
}

/* ============================================================
   Mobile FAB
   ============================================================ */

.mobile-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: none;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   Responsive — 768px
   ============================================================ */

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }

  .mobile-fab {
    display: inline-flex;
  }

  .header-inner {
    height: 88px;
  }

  .lockup-img {
    height: 64px;
  }

  .hero {
    min-height: 60vh;
    padding: 64px 0;
  }

  .page-header {
    padding: 56px 0;
  }

  .products-section,
  .pillars-section,
  .infra-section,
  .content-section,
  .why-section,
  .journey-section {
    padding: 64px 0;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .final-cta {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .pillars-grid {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .nav-full {
    display: none;
  }

  .nav-short {
    display: inline;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .product-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
