/* ============================================================
   SPAR Rewards Sri Lanka – SaveMor
   Corporate Redesign Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;900&display=swap');

/* ----- Design Tokens ----- */
:root {
  --brand-green:      #5bba47;
  --brand-green-dark: #3d8a2d;
  --brand-red:        #e82429;
  --brand-red-dark:   #b81b1f;
  --corp-dark:        #0f1923;
  --corp-navy:        #1a2e44;
  --corp-slate:       #2d3a4a;
  --corp-mid:         #3d5166;
  --corp-light:       #f4f7fb;
  --corp-lighter:     #f9fafc;
  --corp-white:       #ffffff;
  --corp-border:      #dde3ed;
  --corp-border-light:#edf0f5;
  --corp-text:        #0d1724;
  --corp-text-mid:    #3a4d62;
  --corp-text-light:  #627891;
  --shadow-xs:        0 1px 3px rgba(15,25,35,0.07);
  --shadow-sm:        0 2px 8px rgba(15,25,35,0.09), 0 1px 3px rgba(15,25,35,0.05);
  --shadow-md:        0 4px 20px rgba(15,25,35,0.11), 0 2px 6px rgba(15,25,35,0.06);
  --shadow-lg:        0 12px 48px rgba(15,25,35,0.14), 0 4px 16px rgba(15,25,35,0.08);
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        16px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: var(--corp-white);
  color: var(--corp-text);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.2px;
  overflow-x: hidden;
}
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
*:focus { outline: none; }

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 640px;
  background: var(--corp-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,38,0.92) 0%,
    rgba(15,25,35,0.72) 50%,
    rgba(29,74,45,0.50) 100%
  );
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* ----- Header ----- */
.site-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  width: 190px;
  height: auto;
}

/* ----- Hero Content ----- */
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0 100px;
}

.hero-text {
  max-width: 720px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--corp-white);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--brand-green);
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 400;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   APP DOWNLOAD SECTION
   ============================================================ */
.app-section {
  background: var(--corp-navy);
  position: relative;
  padding: 0 0 40px;
  border-bottom: 3px solid var(--brand-green);
}

.app-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-red) 100%);
}

.app-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 36px 0 0;
  flex-wrap: wrap;
}

.btn-app-store img,
.btn-google-play img {
  width: 180px;
  height: auto;
  transition: opacity 0.2s, transform 0.2s;
  border-radius: var(--radius-sm);
}
.btn-app-store:hover img,
.btn-google-play:hover img {
  opacity: 0.90;
  transform: translateY(-2px);
}

.phone-mockup {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 24px 0 0;
}
.phone-mockup img {
  max-height: 500px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.40));
}

/* ----- Feature Navigation ----- */
.nav-tabs-section {
  width: 100%;
}

.feature-nav {
  width: 100%;
  text-align: center;
  padding: 24px 0 16px;
}

.feature-menu {
  display: inline-flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  padding: 6px;
}

.feature-menu li a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 9px 22px;
  border-radius: 50px;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}
.feature-menu li a:hover {
  color: var(--corp-white);
  background: rgba(255,255,255,0.08);
}
.feature-menu li a.active {
  color: var(--corp-white);
  background: var(--brand-green);
}

.d-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  position: relative;
  top: -2px;
  opacity: 0.7;
}

.feature-nav.sticky-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: auto;
  padding: 0;
}

.feature-nav.sticky-nav .feature-menu {
  background: var(--corp-navy);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(15,25,35,0.22), 0 1px 4px rgba(15,25,35,0.12);
}

/* ============================================================
   SHARED SECTION LAYOUT
   ============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.section-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.section-image {
  flex: 0 0 auto;
  text-align: center;
}

.section-image--mobile { display: none; }
.section-image--desktop { display: block; }

.product-img {
  max-width: 320px;
  margin: 0 auto;
}

.chocolate-img { max-width: 320px; }
.coffee-img    { max-width: 280px; }
.chips-img     { max-width: 300px; }

.spar2u-logo {
  width: 200px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.spar2u-logo:hover { opacity: 0.85; transform: scale(1.02); }

.section-content {
  flex: 1 1 340px;
}

.content-box {
  padding: 20px 0;
}

.content-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  font-weight: 400;
}

.dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
}

/* ----- Feature Buttons ----- */
.feature-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  background: var(--corp-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 54px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid var(--corp-border);
  box-shadow: var(--shadow-xs);
}

.feature-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-btn--dark {
  background: var(--corp-white);
  border-color: var(--corp-border);
}

.feature-btn--spar2u {
  height: auto;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.feature-btn--spar2u:hover {
  background: none;
  box-shadow: none;
  transform: scale(1.03);
}
.feature-btn--spar2u .spar2u-logo { width: 200px; }

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.feature-btn em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--corp-text);
  padding: 0 16px;
  line-height: 54px;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-icon i {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-wallet       { background-image: url('https://savemor.sparrewards.lk/img/store_p.svg'); }
.icon-voucher      { background-image: url('https://savemor.sparrewards.lk/img/e_voucher.svg'); }
.icon-qr           { background-image: url('https://savemor.sparrewards.lk/img/qr_code.svg'); }
.icon-notification { background-image: url('https://savemor.sparrewards.lk/img/notify.svg'); }
.icon-chat         { background-image: url('https://savemor.sparrewards.lk/img/chat_d.svg'); }
.icon-nearme       { background-image: url('https://savemor.sparrewards.lk/img/near_me.svg'); }
.icon-deals        { background-image: url('https://savemor.sparrewards.lk/img/deals.svg'); }
.icon-deals-r      { background-image: url('https://savemor.sparrewards.lk/img/deals_r.svg'); }
.icon-promo        { background-image: url('https://savemor.sparrewards.lk/img/promo_code.svg'); }
.icon-spar2u       { background-image: url('https://savemor.sparrewards.lk/img/spar2u_logo.png'); background-size: 80%; }

/* ============================================================
   REWARDS SECTION
   ============================================================ */
.rewards-section {
  background: var(--corp-white);
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--corp-border-light);
}

.rewards-section .section-label {
  color: var(--brand-green-dark);
}

.rewards-section .content-box h2 {
  color: var(--corp-text);
}

.rewards-section .feature-list li {
  color: var(--corp-text-mid);
}

.rewards-section .dot {
  background: var(--brand-green);
}

.rewards-section .btn-icon {
  background: var(--brand-green);
}

.rewards-section .feature-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.rewards-section .feature-btn:hover em {
  color: var(--corp-white);
}

.rewards-section .feature-btn:hover .btn-icon {
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   COMMUNICATION SECTION
   ============================================================ */
.communication-section {
  background: var(--corp-light);
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--corp-border);
}

.communication-section .section-label {
  color: var(--corp-navy);
}

.communication-section .content-box h2 {
  color: var(--corp-text);
}

.communication-section .feature-list li {
  color: var(--corp-text-mid);
}

.communication-section .dot {
  background: var(--corp-navy);
}

.communication-section .btn-icon {
  background: var(--corp-navy);
}

.communication-section .btn-icon i {
  filter: brightness(0) invert(1);
}

.communication-section .feature-btn:hover {
  background: var(--corp-navy);
  border-color: var(--corp-navy);
}

.communication-section .feature-btn:hover em {
  color: var(--corp-white);
}

/* ============================================================
   DEALS SECTION
   ============================================================ */
.deals-section {
  background: var(--corp-dark);
  padding: 100px 0;
  position: relative;
}

.deals-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(91,186,71,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(232,36,41,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.deals-section .section-label {
  color: var(--brand-red);
}

.deals-section .content-box h2 {
  color: var(--corp-white);
}

.deals-section .feature-list li {
  color: rgba(255,255,255,0.72);
}

.deals-section .dot {
  background: var(--brand-red);
}

.deals-section .btn-icon {
  background: var(--brand-red);
}

.deals-section .feature-btn {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

.deals-section .feature-btn em {
  color: var(--corp-white);
}

.deals-section .feature-btn:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.deals-section .feature-btn:hover .btn-icon {
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   CLICK & COLLECT SECTION
   ============================================================ */
.cc-section {
  background: var(--corp-white);
  padding: 100px 0;
  position: relative;
  border-top: 4px solid var(--brand-green);
}

.cc-section .section-label {
  color: var(--brand-green-dark);
}

.cc-section .content-box h2 {
  color: var(--corp-text);
}

.cc-section .feature-list li {
  color: var(--corp-text-mid);
}

.cc-section .dot {
  background: var(--brand-green);
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-section {
  background: var(--corp-navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,186,71,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.download-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,36,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.download-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.download-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 18px;
}

.download-eyebrow::before,
.download-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand-green);
  opacity: 0.6;
}

.download-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--corp-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.download-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.download-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.download-btns img {
  width: 160px;
  height: auto;
  border-radius: var(--radius-sm);
  transition: transform 0.2s, opacity 0.2s;
}

.download-btns a:hover img {
  transform: translateY(-3px);
  opacity: 0.90;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--corp-dark);
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: inline-block;
  opacity: 0.90;
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 1; }
.footer-logo img {
  width: 180px;
  margin: 0 auto;
  /*filter: brightness(0) invert(1);*/
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.2px;
  transition: color 0.2s;
  padding: 2px 0;
}
.footer-nav a:hover { color: var(--brand-green); }

.footer-nav-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  flex-shrink: 0;
}

.copy-rights {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.3px;
}

/* ============================================================
   MODAL SYSTEM
   ============================================================ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,32,0.80);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-backdrop.active { display: block; }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1010;
  overflow-y: auto;
  padding: 30px 16px;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: var(--corp-white);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  font-size: 24px;
  line-height: 1;
  color: var(--corp-text-light);
  background: var(--corp-light);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  color: var(--corp-white);
  background: var(--brand-red);
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel { position: relative; }
.carousel-inner { overflow: hidden; }
.carousel-slide { display: none; }
.carousel-slide.active { display: block; }

.modal-feature {
  padding: 36px 36px 24px;
  background: var(--corp-white);
}

.slide-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--corp-text);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}

.slide-step {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-green);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.slide-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 0 8px;
}

.slide-text {
  flex: 1;
  text-align: center;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--corp-white);
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step-desc {
  font-size: 17px;
  font-weight: 600;
  color: var(--corp-text);
  display: block;
  line-height: 1.5;
}

.slide-img {
  flex: 1;
  text-align: center;
}

.slide-img img {
  max-height: 320px;
  width: auto;
  margin: 0 auto;
  display: inline-block;
  border-radius: var(--radius-sm);
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--corp-light);
  border-top: 1px solid var(--corp-border-light);
}

.carousel-prev,
.carousel-next {
  font-size: 28px;
  color: var(--corp-text-mid);
  background: var(--corp-white);
  border: 1px solid var(--corp-border);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.2s;
  font-weight: 300;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}
.carousel-prev:hover,
.carousel-next:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--corp-white);
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   INNER PAGE — SHARED HEADER (non-hero pages)
   ============================================================ */
.inner-header {
  background: var(--corp-dark);
  border-bottom: 3px solid var(--brand-green);
}

.inner-header .site-header {
  padding: 20px 0;
  border-bottom: none;
}

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-banner {
  background: var(--corp-navy);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(91,186,71,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 30% 80% at 0% 80%, rgba(232,36,41,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--brand-green); }

.page-breadcrumb span { color: rgba(255,255,255,0.25); }

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
}

.page-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--corp-white);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 620px;
}

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-content {
  padding: 72px 0 96px;
  background: var(--corp-white);
}

.page-content-inner {
  max-width: 820px;
}

/* Policy / Prose Typography */
.prose h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--corp-text);
  margin: 40px 0 12px;
  padding-top: 36px;
  border-top: 1px solid var(--corp-border-light);
  letter-spacing: -0.1px;
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--corp-text);
  margin: 24px 0 8px;
}

.prose p {
  font-size: 15px;
  color: var(--corp-text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul {
  margin: 8px 0 20px 0;
  padding: 0;
  list-style: none;
}

.prose ul li {
  font-size: 15px;
  color: var(--corp-text-mid);
  line-height: 1.75;
  padding: 6px 0 6px 20px;
  position: relative;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
}

.prose .policy-intro {
  background: var(--corp-light);
  border-left: 4px solid var(--brand-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 36px;
  font-size: 15px;
  color: var(--corp-text-mid);
  line-height: 1.8;
}

.prose .policy-effective {
  display: inline-block;
  background: var(--corp-light);
  border: 1px solid var(--corp-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--corp-text-light);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
}

/* ============================================================
   HELP & SUPPORT — SECTIONS
   ============================================================ */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0 48px;
}

.help-card {
  background: var(--corp-light);
  border: 1px solid var(--corp-border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.help-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--corp-border);
  transform: translateY(-2px);
}

.help-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--corp-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.help-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--corp-text);
  margin-bottom: 8px;
}

.help-card-desc {
  font-size: 14px;
  color: var(--corp-text-mid);
  line-height: 1.65;
}

.help-card-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--corp-text-light);
  margin-top: 10px;
  display: block;
}

/* FAQ */
.faq-list {
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--corp-border-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--corp-text);
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--corp-light);
  border: 1px solid var(--corp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--corp-text-light);
  transition: all 0.2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--corp-white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--corp-text-mid);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* Registration Steps */
.steps-list {
  counter-reset: step-counter;
  margin: 24px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--corp-border-light);
}

.step-item:last-child { border-bottom: none; }

.step-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--corp-navy);
  color: var(--corp-white);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--corp-text);
  margin-bottom: 4px;
}

.step-body-desc {
  font-size: 14px;
  color: var(--corp-text-mid);
  line-height: 1.65;
}

/* Query Form */
.query-form-wrap {
  background: var(--corp-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--corp-border);
  margin-top: 48px;
}

.query-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--corp-text);
  margin-bottom: 6px;
}

.query-form-desc {
  font-size: 14px;
  color: var(--corp-text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--corp-text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-label .req {
  color: var(--brand-red);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  color: var(--corp-text);
  background: var(--corp-white);
  border: 1px solid var(--corp-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.5;
}

.form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(91,186,71,0.12);
  outline: none;
}

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

.form-hint {
  font-size: 12px;
  color: var(--corp-text-light);
  margin-top: 4px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-green);
  color: var(--corp-white);
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}

.btn-submit:hover {
  background: var(--brand-green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Additional Feature cards (small) */
.add-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}

.add-feature-card {
  background: var(--corp-white);
  border: 1px solid var(--corp-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-xs);
}

.add-feature-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--corp-navy);
  color: var(--corp-white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.add-feature-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--corp-text);
  margin-bottom: 6px;
}

.add-feature-card-desc {
  font-size: 13px;
  color: var(--corp-text-mid);
  line-height: 1.6;
}

/* Section heading inside inner pages */
.inner-section {
  margin-bottom: 56px;
}

.inner-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--corp-text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.inner-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand-green-dark);
  margin-bottom: 10px;
}

.inner-section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.inner-section-divider {
  width: 100%;
  height: 1px;
  background: var(--corp-border-light);
  margin-bottom: 28px;
}

/* Contact info box */
.contact-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--corp-dark);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-top: 12px;
}

.contact-box a {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
}
.contact-box a:hover { opacity: 0.8; }

.contact-box-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

/* Responsive inner pages */
@media screen and (max-width: 767px) {
  .page-title { font-size: 28px; }
  .page-banner { padding: 40px 0 36px; }
  .page-content { padding: 48px 0 64px; }
  .query-form-wrap { padding: 24px 20px; }
  .help-grid { grid-template-columns: 1fr; }
  .add-feature-grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 420px) {
  .page-title { font-size: 24px; }
  .add-feature-grid { grid-template-columns: 1fr; }
}
