/* ==========================================================================
   STREEINDIA - Clean, Premium Modern Design System
   "Your Laundry, Our Responsibility"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary: #C2185B;
  --primary-hover: #AD1457;
  --primary-light: #FCE4EC;
  --primary-soft: #FFF0F4;
  --primary-gradient: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  --accent-pink: #FF4081;
  
  /* Neutral & Dark */
  --navy-dark: #0B192C;
  --navy-card: #0F172A;
  --navy-border: #1E293B;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Surfaces */
  --bg-page: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-rose-card: #FFF5F7;
  --border-subtle: #F1E3E7;
  --border-light: #E2E8F0;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(194, 24, 91, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px rgba(194, 24, 91, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 900px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(194, 24, 91, 0.35);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--navy-dark);
  border-color: #CBD5E1;
}

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

.btn-sm {
  padding: 6px 16px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-box {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(194, 24, 91, 0.3);
}

.logo-icon-box svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-name span {
  color: var(--primary);
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy-dark);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 50px 0 35px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FA 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  padding-right: 15px;
}

.hero-brand-title {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.hero-brand-title span {
  color: var(--primary);
  background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-headline {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-desc {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Hero 4 Trust Badges */
.hero-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #F1E3E7;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF0F4;
  border: 1px solid #FCE4EC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-badge-item:hover .trust-badge-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.15);
  background: var(--primary);
  color: #ffffff;
}

.trust-badge-icon svg {
  width: 20px;
  height: 20px;
}

.trust-badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.25;
}

/* Hero Right Visual */
.hero-visual {
  position: relative;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 4px solid #ffffff;
}

.hero-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-img-card:hover img {
  transform: scale(1.03);
}

.hero-overlay-pill {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   SECTION: ABOUT STREEINDIA & WHAT WE ARE BUILDING
   ========================================================================== */
.about-split-section {
  padding: 60px 0;
  background: #ffffff;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

.about-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-info-col p {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-info-col strong.highlight-text {
  color: var(--primary);
  font-weight: 700;
}

/* What We Are Building Card */
.building-card {
  background: var(--bg-rose-card);
  border: 1.5px solid #FCD7DF;
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
}

.building-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.building-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.building-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}

.check-badge {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.check-badge svg {
  width: 13px;
  height: 13px;
}

.building-watermark-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 140px;
  height: 140px;
  color: rgba(194, 24, 91, 0.08);
  pointer-events: none;
}

/* ==========================================================================
   SECTION: TWO-SIDED MARKETPLACE BUSINESS MODEL
   ========================================================================== */
.model-section {
  padding: 60px 0 50px;
  background: #FAFCFE;
  border-top: 1px solid #EEF2F6;
  border-bottom: 1px solid #EEF2F6;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.marketplace-flow-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.flow-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.flow-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.flow-card-header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #E2E8F0;
}

.flow-card-role {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
}

.flow-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  transition: all 0.2s ease;
}

.flow-card:hover .step-icon {
  background: var(--primary-soft);
  border-color: #FCD7DF;
  color: var(--primary);
}

.step-icon svg {
  width: 18px;
  height: 18px;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.2;
}

/* Center Hub */
.hub-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 10px;
}

.hub-connector-left, .hub-connector-right {
  font-size: 1.4rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
}

.hub-box {
  background: #FFF5F7;
  border: 2px solid #FCD7DF;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(194, 24, 91, 0.12);
  min-width: 190px;
}

.hub-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 8px;
}

.hub-icon svg {
  width: 28px;
  height: 28px;
}

.hub-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.hub-name span {
  color: var(--primary);
}

.hub-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Revenue Streams Row */
.revenue-bar {
  background: #ffffff;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 170px repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.rev-header-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
  text-transform: uppercase;
  border-right: 2px solid #F1E3E7;
  padding-right: 12px;
  line-height: 1.3;
}

.rev-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rev-icon {
  width: 32px;
  height: 32px;
  background: #FFF0F4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.rev-icon svg {
  width: 17px;
  height: 17px;
}

.rev-content h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.rev-content p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Section: The Gap We're Filling */
.gap-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #FFF9FA 0%, #FDF2F5 100%);
  border-top: 1px solid #FCD7DF;
  border-bottom: 1px solid #FCD7DF;
}

.gap-highlight {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

/* Comparison Table (How It Works) */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid #EEF2F6;
}

.compare-table thead th {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--navy-dark, #14213D);
  color: #ffffff;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
  background: #F8FAFC;
}

.compare-table .col-feature {
  font-weight: 700;
  color: var(--navy-dark);
}

.compare-table .val-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DC2626;
  font-weight: 600;
}

.compare-table .val-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16A34A;
  font-weight: 700;
}

.compare-table .val-no svg,
.compare-table .val-yes svg {
  width: 15px;
  height: 15px;
}

/* Step grids (How It Works) */
.steps-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.steps-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================================
   PARTNER PAGE (mockup v2)
   ========================================================================== */
.partner-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}

.partner-value-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.partner-value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.partner-value-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.cta-dark-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #26304F 0%, var(--navy-card) 100%);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.cta-dark-card::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.35) 0%, transparent 70%);
}

.cta-dark-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-dark-card p {
  font-size: 0.92rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.feature-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.feature-chip {
  background: #FFF9FA;
  border: 1.5px solid #FCD7DF;
  border-radius: var(--radius-md, 14px);
  padding: 18px;
}

.feature-chip-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-chip-icon svg {
  width: 19px;
  height: 19px;
}

.feature-chip h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.feature-chip p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.trust-badges-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.trust-badge-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #EEF2F6;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}

.trust-badge-chip svg {
  width: 15px;
  height: 15px;
  color: #16A34A;
  flex-shrink: 0;
}

.mission-band {
  padding: 64px 0;
  background: linear-gradient(180deg, #FFF3F7 0%, #FEF5F8 100%);
  border-top: 1px solid #FCD7DF;
  border-bottom: 1px solid #FCD7DF;
}

.mission-pillars-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mission-pillar-cell {
  text-align: center;
}

.mission-pillar-cell .pillar-icon-box {
  margin: 0 auto 12px;
}

.mission-pillar-cell h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.mission-pillar-cell p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.closing-line-section {
  padding: 52px 0;
  background: #ffffff;
  text-align: center;
}

.closing-line-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  max-width: 760px;
  margin: 0 auto 10px;
  line-height: 1.45;
}

.closing-line-brand {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

/* ==========================================================================
   SECTION: OUR MISSION & BUSINESS SNAPSHOT
   ========================================================================== */
.mission-snapshot-section {
  padding: 60px 0;
  background: #ffffff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 44px;
  align-items: start;
}

/* Mission Left */
.mission-left {
  display: flex;
  flex-direction: column;
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF0F4;
  border: 1px solid #FCE4EC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-icon-box svg {
  width: 18px;
  height: 18px;
}

.pillar-body {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.5;
}

.pillar-body strong {
  font-weight: 800;
  color: var(--navy-dark);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  margin-right: 4px;
}

.mission-statement-card {
  background: var(--navy-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid #1E293B;
  box-shadow: 0 10px 30px rgba(11, 25, 44, 0.15);
}

.statement-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #FF4081;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.statement-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #E2E8F0;
  font-weight: 500;
}

.statement-watermark {
  position: absolute;
  right: 15px;
  bottom: 10px;
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* Business Snapshot Right */
.snapshot-card {
  background: #FFF9FA;
  border: 1.5px solid #FCD7DF;
  border-radius: var(--radius-lg);
  padding: 28px;
}

.snapshot-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.snapshot-table {
  width: 100%;
  border-collapse: collapse;
}

.snapshot-row {
  border-bottom: 1px solid #F3DFE5;
}

.snapshot-row:last-child {
  border-bottom: none;
}

.snapshot-cell-key {
  padding: 10px 12px 10px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
}

.snapshot-cell-key svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.snapshot-cell-val {
  padding: 10px 0;
  font-size: 0.82rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION: DARK FOOTER BANNER / VALUE PROPOSITION
   ========================================================================== */
.footer-banner-section {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 38px 0;
  border-top: 1px solid #1E293B;
}

.footer-banner-grid {
  display: grid;
  grid-template-columns: 90px 1.4fr 1.6fr;
  gap: 28px;
  align-items: center;
}

.footer-basket-thumb {
  width: 85px;
  height: 85px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.footer-basket-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-quote-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #CBD5E1;
}

.footer-quote-text strong {
  color: #ffffff;
}

.footer-quote-text .brand-highlight {
  color: #FF4081;
  font-weight: 700;
}

.footer-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.footer-pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF4081;
  transition: all 0.25s ease;
}

.footer-pillar-card:hover .footer-pillar-icon {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-pillar-icon svg {
  width: 18px;
  height: 18px;
}

.footer-pillar-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #F1F5F9;
  line-height: 1.2;
}

.footer-pillar-sub {
  font-size: 0.65rem;
  color: #94A3B8;
}

/* ==========================================================================
   GLOBAL SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #060D17;
  color: #94A3B8;
  padding: 50px 0 24px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FF4081;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #CBD5E1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

/* ==========================================================================
   MODALS & FORMS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 25, 44, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.35rem;
  color: var(--navy-dark);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #94A3B8;
  padding: 4px;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--primary);
}

.modal-body {
  padding: 24px 28px;
}

.form-group {
  margin-bottom: 16px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.15);
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--primary);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   PAGE SPECIFIC: INNER PAGES (ABOUT, HOW IT WORKS, BOOK, PARTNER, DASHBOARD)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #0B192C 0%, #1A2840 100%);
  color: #ffffff;
  padding: 50px 0 45px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

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

.feature-box {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-box-icon {
  width: 50px;
  height: 50px;
  background: #FFF0F4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Pricing / Service Cards */
.service-calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 32px;
}

.calc-summary-card {
  background: #FFF5F7;
  border: 2px solid #FCD7DF;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.price-display {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

/* Dashboard Tables */
.admin-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-pending {
  background: #FEF3C7;
  color: #92400E;
}

.badge-approved, .badge-confirmed {
  background: #D1FAE5;
  color: #065F46;
}

.badge-progress {
  background: #DBEAFE;
  color: #1E40AF;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.86rem;
}

.data-table th {
  background: #F8FAFC;
  font-weight: 700;
  color: var(--navy-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-split-grid, .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .marketplace-flow-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .hub-center {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .revenue-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .steps-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partner-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .mission-pillars-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  
  .rev-header-tag {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 2px solid #F1E3E7;
    padding-bottom: 8px;
  }
  
  .footer-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-basket-thumb {
    margin: 0 auto;
  }
  
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.show {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-brand-title {
    font-size: 2.7rem;
  }
  
  .hero-headline {
    font-size: 1.35rem;
  }
  
  .hero-badges-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .steps-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .mission-pillars-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-chips {
    grid-template-columns: 1fr;
  }
  
  .trust-badges-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .revenue-bar {
    grid-template-columns: 1fr;
  }
  
  .footer-pillars-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .form-row, .service-calc-grid, .card-grid-3, .footer-columns-grid {
    grid-template-columns: 1fr;
  }
}
