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

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #011C38;
  --navy-dark: #002147;
  --yellow: #F0C43D;
  --yellow-bg: #D7B956;
  --red: #F04535;
  --text-white: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-yellow: #F0C43D;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-yellow: #F0C43D;
  
  --font-sans: 'Figtree', sans-serif;
  --font-serif: 'Kaisei Decol', serif;
  
  --container-width: 1100px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 4vw, 3.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 25px; }

/* Buttons */
.btn-white-outline {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--text-white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-red {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--red);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-yellow {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  margin-top:0 !important;
  transition: all 0.3s;
}
.btn-yellow.large { padding: 14px 32px; font-size: 1.1rem; }

.btn-yellow-outline {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}




/* Hero Section */
.hero-section {
  padding: 140px 0 80px;
  background: var(--navy);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.edu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.edu-icon { height: 45px; filter: brightness(0) saturate(100%) invert(85%) sepia(35%) saturate(1148%) hue-rotate(344deg) brightness(99%) contrast(93%); }
.edu-logo.center { justify-content: center; margin-bottom: 20px; }

.hero-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-white);
  margin-bottom: 40px;
}
.dot { color: var(--text-muted); }

.hero-image img { border-radius: 12px; }

/* Act One Section */
.act-one-section {
  padding: 80px 0;
  background: var(--navy);
}

.act-one-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.act-one-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 60px;
}

.systems-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 15px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.systems-flow::-webkit-scrollbar {
  display: none;
}

.system-node {
  border: 2px dashed var(--text-muted);
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-white);
  white-space: nowrap;
  position: relative;
}
.red-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  background-color: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 15px 2px rgba(240, 69, 53, 0.7);
}

.flow-connector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow-connector::before,
.flow-connector::after {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  background-color: var(--text-muted);
}
.flow-connector .cross {
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.flow-caption {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.quote-block {
  background: rgb(23, 42, 58);
  border-left: 3px solid var(--yellow);
  padding: 30px 40px;
  border-radius: 4px;
  position: relative;
}
.quote-icon {
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 15px;
}
.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color:#fff;
  margin-bottom: 20px;
}
.quote-author {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.quote-author strong { color: var(--text-white); }

/* Parallax Cards Section */
.parallax-cards {
  width: 100%;
  height: 80vh; /* Adjust height as needed */
  background-image: url('assets/parallax2.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
}

/* Act Two Section */
.act-two-section {
  padding: 100px 0;
  background: var(--navy-dark);
}

.act-two-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
.act-two-section h2 { text-align: center; margin-bottom: 20px; }
.act-two-subtext {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 60px;
}

.tabs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 50px;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs-container::-webkit-scrollbar {
  display: none;
}
.tab {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1; /* distribute evenly */
}
.tab:hover {
  opacity: 0.8;
}
.tab-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #172b43; /* Lighter navy for inactive */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  flex-shrink: 0;
}
.tab.active .tab-icon-wrapper {
  background: #434832; /* Dark olive for active */
}
.tab-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(0.8) sepia(0.1) hue-rotate(180deg);
}
.tab.active .tab-icon {
  filter: brightness(0) saturate(100%) invert(85%) sepia(35%) saturate(1148%) hue-rotate(344deg) brightness(99%) contrast(93%);
}
.tab-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1; /* Take remaining space */
}
.tab-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #9ca3af;
  transition: color 0.3s;
  white-space: nowrap;
}
.tab.active .tab-label {
  color: #ffffff;
  font-weight: 600;
}
.tab-progress-track {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.tab-progress-bar {
  height: 100%;
  width: 0;
  background: var(--yellow);
}

.tab-pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  animation: fadeIn 0.5s ease-in-out;
}
.tab-pane.active {
  display: grid;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.phase-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
}
.tab-text h3 { font-family: var(--font-sans); font-size: 1.5rem; margin-bottom: 10px; }
.phase-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }
.phase-list { list-style: none; }
.phase-list li {
  font-size: 0.85rem;
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.phase-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-size: 0.6rem;
  top: 4px;
}
.tab-image img {
  width: 600px;
  max-width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.launch-text {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.launch-divider {
  display: none;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 40px;
  max-width: var(--container-width);
  width: 100%;
}

.perspective-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.perspective-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.perspective-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.perspective-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Pause Section */
.pause-section {
  padding: 80px 0;
  background: var(--yellow-bg);
  color: var(--navy);
  text-align: center;
}
.pause-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pause-section h2 { color: var(--navy); margin-bottom: 20px; }
.pause-section p {
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Calculator Section */
.calculator-section {
  padding: 0;
  background: var(--navy);
  line-height: 0;
}
.calc-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.calculator-section h2 { margin-bottom: 15px; }
.calc-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.stats-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 50px;
}
.stat-item { flex: 1; }
.stat-value {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.calc-footer {
  margin-top: 60px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.powered-by {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .edu-logo { justify-content: center; }
  .hero-subtext { margin: 0 auto 30px; }
  .laptop-transition { display: none; }
  .hero-links { justify-content: center; }
  .tab-pane { grid-template-columns: 1fr; }
  .perspective-cards { grid-template-columns: 1fr; }
  .stats-box { flex-direction: column; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
  .hero-image { display: none; }
  .laptop-transition { display: none; }
  .systems-flow { flex-direction: column; gap: 10px; }
  .flow-connector { transform: rotate(90deg); }
  .tabs-container { flex-direction: row; align-items: center; gap: 15px; margin-bottom: 30px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
  .tabs-container::-webkit-scrollbar { display: none; }
  .tab { padding: 8px 12px; background: rgba(255,255,255,0.05); border-radius: 20px; flex-shrink: 0; }
  .tab.active { background: #434832; }
  .tab-icon-wrapper { display: none; }
  .tab-progress-track { display: none; }
  .step-item { flex-direction: column; text-align: center; gap: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Back to story */
.back-to-story {
  text-align: center;
  padding: 40px 0;
  background: var(--navy-dark);
}

.back-to-story a {
  color: var(--yellow);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* Laptop Transition */
.laptop-transition {
  position: sticky;
  top: 0;
  height: 100vh;
  background-image: url('assets/parallax1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}
.laptop-mock {
  max-width: 900px;
  width: 90%;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}

/* Act Three */
.act-three-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--navy);
}
.act-three-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.act-three-section h2 { text-align: center; }
.act-three-subtext {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 60px;
}
.before-after-boxes {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.box-before {
  flex: 1;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 8px;
}
.box-before h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; }
.box-before ul { list-style: none; }
.box-before ul li { margin-bottom: 12px; font-size: 0.9rem; padding-left: 20px; position: relative; }
.box-before ul li::before { content: '■'; color: var(--text-muted); position: absolute; left: 0; font-size: 0.6rem; top: 5px; }

.arrow-connector {
  display: flex;
  align-items: center;
  color: var(--yellow);
  font-size: 2rem;
}

.box-after {
  flex: 1;
  background: var(--yellow);
  color: var(--navy);
  padding: 40px;
  border-radius: 8px;
}
.box-after h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; }
.box-after ul { list-style: none; }
.box-after ul li { margin-bottom: 12px; font-size: 0.9rem; padding-left: 20px; position: relative; font-weight: 500; }
.box-after ul li::before { content: '■'; color: var(--navy); position: absolute; left: 0; font-size: 0.6rem; top: 5px; }

/* Act Four */
.act-four-section {
  padding: 100px 0;
  background: #f8fafc;
  color: var(--navy);
}
.act-four-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.act-four-section h2 { text-align: center; color: var(--navy); }
.act-four-subtext {
  text-align: center;
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 60px;
}
.questions-block {
  display: flex;
  max-width: 1100px;
  margin: 0 auto 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.questions-list {
  flex: 1;
  background: var(--navy);
  padding: 50px 40px;
  color: var(--text-white);
  border-left: 6px solid var(--yellow);
}
.q-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.q-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.q-icon-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}
.q-item p { font-size: 1.1rem; font-style: italic; color:#fff;}

.questions-image {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.image-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100%;
  height: 100%;
  scrollbar-width: none; /* Firefox */
}
.image-carousel::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.image-carousel img {
  scroll-snap-align: start;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dots .dot { width: 30px; height: 3px; background: rgba(255,255,255,0.5); }
.carousel-dots .dot.active { background: var(--yellow); }

.questions-footer {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4b5563;
  letter-spacing: 1px;
}

/* Act Five */
.act-five-section {
  padding: 100px 0;
  background: var(--navy-dark);
}
.act-five-eyebrow {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.act-five-section h2 { text-align: center; }
.act-five-subtext {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 60px;
}
.numbered-steps {
  max-width: 800px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 8px;
}
.step-number {
  font-size: 72px;
  font-family: var(--font-sans);
  color: transparent;
  -webkit-text-stroke: 1px rgba(219, 187, 66, 1);
  line-height: 72px;
  font-weight: 700;
  letter-spacing: 0.12px;
}
.step-content h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 5px; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); }

/* Final CTA */
.final-cta-section {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
.final-cta-section h2 { margin-bottom: 20px; }
.cta-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 60px;
}
.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
.cta-feature {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 12px;
  flex: 1;
  width: 100%;
  max-width: 300px;
}
.cta-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cta-icon { height: 30px; }
.cta-feature h4, .cta-feature p { 
  font-family: 'Figtree', sans-serif;
  font-weight: 500; 
  font-size: 16px; 
  line-height: 24px; 
  letter-spacing: 0px; 
  color: #FFFFFF; 
}
.cta-feature h4 { margin-bottom: 10px; }

.cta-action { margin-bottom: 40px; }
.cta-footer {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
}

@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: flex; justify-content: center; }
  .hero-image img { max-width: 100%; margin: 0 auto; display: block; }
  .edu-logo { justify-content: center; }
  .hero-subtext { margin: 0 auto 30px; }
  .laptop-transition { display: none; }
  .hero-links { justify-content: center; }
  .tab-pane { grid-template-columns: 1fr; }
  .perspective-cards { grid-template-columns: 1fr; }
  .stats-box { flex-direction: column; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; }
  .before-after-boxes { flex-direction: column; }
  .arrow-connector { transform: rotate(90deg); margin: 20px 0; justify-content: center; }
  .questions-block { flex-direction: column; box-shadow: none; background: transparent; }
  .questions-list { border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
  .questions-image { margin-top: 30px; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
  .cta-features { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
}

/* Global Footer */
.global-footer {
  background-color: #1a1a1a;
  color: #d1d5db;
  padding: 60px 0 20px;
  font-family: var(--font-sans);
}

@media (max-width: 1200px) {
  .laptop-transition { display: none; }
}



.brand-desc {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 15px;
  line-height: 1.5;
}

.badges {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: nowrap;
}

.badge {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(200%); /* Makes them white/grey */
}



@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}




:root {
    --bg-dark-blue: #041e42;
    --bg-off-white: #f8f7f2;
    --color-yellow: #f4cd4e;
    --color-orange: #ef533f;
    --color-white: #ffffff;
    --color-text-dark: #041e42;
    --color-text-light: #d1d5db;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-border-dark: rgba(4, 30, 66, 0.1);
    
    --font-sans: 'Figtree', sans-serif;
    --font-serif: 'Kaisei Decol', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--bg-dark-blue);
    overflow-x: hidden;
	font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
}

.e360-logo {
    height: 40px;
    width: auto;
}



.light-text {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-left: 0.5rem;
}



.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #d44331;
}

/* ================= HERO SECTION ================= */
.hero-section {
    padding-bottom: 5rem;
}

.hero-content {
    max-width: 750px;
    margin-top: 0rem;
    padding: 0;
}

.initiative-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-yellow);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.shield-icon {
    font-size: 1.8rem;
}

.subtitle {
    color: var(--color-yellow);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.main-heading {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.small-italic {
    font-size: 0.8rem;
    font-style: italic;
    color: #cbd5e1;
}

.btn-yellow {
    background: var(--color-yellow);
    color: var(--color-text-dark);
    border: 1px solid var(--color-yellow);
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
}

.btn-yellow:hover {
    background: #e5b93d;
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-dark-blue);
}

.section-subtitle {
    color: var(--color-yellow);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-subtitle.center {
    text-align: center;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.section-heading.center {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.author-name {
    font-family: 'Fasthand', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.bottom-divider {
    border: none;
    border-top: 1px solid var(--color-border-light);
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-yellow);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
}

.process-steps span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.inline-icon {
    width: 28px;
    height: 28px;
    /* vertical-align: middle; no longer needed with flex */
}

/* ================= WHY WE BUILT THIS ================= */
.light-section {
    background-color: var(--bg-off-white);
    color: var(--color-text-dark);
    padding: 6rem 0;
}

.yellow-text {
    color: #cca42d;
}

.dark-text {
    color: var(--color-text-dark);
}

.why-built .section-heading {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.why-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.why-quote {
    background: rgb(230, 233, 237);
    padding: 1.5rem 1.5rem;
    border-radius: 4px;
    border-left: 4px solid rgb(219, 187, 66);
}

.quote-img {
    height: 35px;
}

.quote-text {
    font-family: var(--font-sans);
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    color: var(--color-text-dark);
}

/* ================= WHO WE'RE BUILDING THIS WITH ================= */
.who-building {
    background: rgb(251, 248, 236);
    padding: 6rem 0 8rem;
    color: var(--color-text-dark);
}

.who-building .section-subtitle {
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.who-building .section-heading {
    font-family: 'Kaisei Decol', serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0.5px;
    margin-bottom: 3.5rem;
    color: var(--color-text-dark);
}

.light-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0 0 4rem 0;
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.audience-card {
    background: var(--color-white);
    padding: 1.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #01214733;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgb(219, 187, 66);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-circle img {
    width: 24px;
    height: 24px;
}

.audience-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.audience-text {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Icons for process steps */
.inline-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 0.3rem;
}

/* Image styles for footer certifications */
.cert-img {
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ================= WHERE WE ARE SECTION ================= */
.where-we-are {
    background-color: var(--bg-dark-blue);
    padding: 8rem 0;
    color: var(--color-white);
}

.where-we-are-container {
    margin: 0 auto;
}

.where-we-are .section-subtitle {
    margin-bottom: 1.5rem;
}

.where-heading {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.where-we-are-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.leadership-quote {
    background: rgb(23, 48, 71);
    border-left: 4px solid var(--color-yellow);
    padding: 1.5rem 1rem;
    border-radius: 4px;
    margin-top: 4rem;
}

.quote-icon-container {
    
}

.leadership-quote .quote-img {
    height: 32px;
}

.quote-text-italic {
    font-family: var(--font-sans);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--color-white);
}

.quote-author {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ================= THREE STEPS SECTION ================= */
.three-steps {
    padding: 6rem 0;
    background-color: rgb(1, 26, 57);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    padding: 2rem;
}

.step-number {
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px rgb(219, 187, 66);
    line-height: 1;
    margin-right: 2.5rem;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

.step-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.steps-divider {
    border: none;
    border-top: 1px solid var(--color-border-light);
    max-width: 800px;
    margin: 3rem auto;
}

.center {
    text-align: center;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 6rem 0 8rem;
    background-color: var(--bg-dark-blue);
}

.faq-heading {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 4rem;
    border-radius: 4px;
}

.faq-list {
    margin-top: 0;
}

.faq-item {
    display: flex;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.faq-q-col {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-white);
    width: 3.5rem;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--color-white);
}

.faq-answer {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ================= WHY WE CARE SECTION ================= */
.why-care-section {
    background-color: #dcb64b;
    padding: 8rem 0;
    color: var(--color-text-dark);
}

.why-care-section .section-heading{
    font-size: 3 rem;
}

.why-care-container {
    max-width: 800px;
    margin: 0 auto;
}

.why-care-content p {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.why-care-author {
    margin-top: 3rem;
}

.author-name {
    font-family: 'Brush Script MT', cursive, var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 1.375rem;
    font-weight: 500;
    font-style: italic;
}

/* ================= FINAL CTA SECTION ================= */
.final-cta {
    background-color: #041E42;
    padding: 6rem 0;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.cta-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 0 3rem 0;
    width: 100%;
}

.cta-subtext {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 1);
    margin-top: 2rem;
}


/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none; /* simple mobile nav approach */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .brand-col {
        grid-column: span 3;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .where-heading {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .audiences-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .step-card {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .faq-container {
        padding: 2rem;
    }
    
    .faq-item {
        flex-direction: column;
    }
    
    .faq-q-col {
        margin-bottom: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .brand-col {
        grid-column: span 2;
    }
    
    
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .audiences-grid {
        grid-template-columns: 1fr;
    }
    
  
}

