/* ========= GLOBAL ========= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111827;
}

/* ========= HEADER ========= */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}


.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* LOGO */

.header-logo a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* NAV */

.header-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.header-logo img {
	height: 58px;
	width: auto;
}

.header-nav a {
  font-size: 0.95rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #111827;
}

/* CTA */

.header-cta {
  display: flex;
  justify-content: flex-end;
}

/* Smaller button for header */
.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* ========= HEADER RESPONSIVE ========= */

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


/* ========= HERO ========= */

.hero {
  position: relative;
  padding: 140px 24px 100px;
  background:
    linear-gradient(
      135deg,
      rgba(31, 60, 79, 0.7),
      rgba(47, 143, 152, 0.7)
    ),
    url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}


.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.0fr 1.0fr;
  gap: 64px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-left p {
  font-size: 1.1rem;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ========= BUTTONS ========= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #ff8a3d;
  color: #0f172a;
}

.btn-primary:hover {
  background: #ff7a22;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

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

/* ========= HERO IMAGE ========= */

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-right img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* ========= TRUST BAR ========= */
/* ========= TRUST BAR ========= */

.trust-bar {
  background: #f8fafc;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-item img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.trust-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.4;
}


/* ========= HOW IT WORKS ========= */

.how-it-works {
  padding: 24px;
  background: #ffffff;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  max-width: 1200px;
  margin-bottom: 64px;
	text-align: center;
}

.how-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: #111827;
}

.how-header p {
  font-size: 1.05rem;
  color: #4b5563;
}
.how-inner p.subHead {
	font-style: italic; 
	font-size: 90%;
}
/* GRID */

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

/* CARD */

.how-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-align: center;
}

.how-card .subHead {
	border-radius: 18px;
	background:  #fff;
	padding: 12px;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.how-icon {
  margin-bottom: 24px;
	text-align: center;
}

.how-icon img {
  height: 112px;
  width: auto;
}

.how-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #111827;
}

.how-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ========= TIME → MONEY (WITH GRADIENT TRANSITION) ========= */

.time-money {
  padding: 96px 24px 120px;
  background: linear-gradient(
    180deg,
    #ede9fe 0%,   /* soft purple at top */
    #f8fafc 40%,  /* smooth fade */
    #f8fafc 100%  /* light gray base */
  );
}


.time-money-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* TEXT */

.time-money-text h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-btop: -24px;
  color: #111827;
}

.time-money-text p {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 32px;
}

.time-money-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.time-money-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #374151;
}

.time-money-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* VISUAL */

.time-money-visual img {
  max-width: 100%;
  /*border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);*/
background: none;
}


/* ========= WHY (COMPRESSED STYLE) ========= */

.why-compact {
  padding: 96px 24px;
  background: #1f3c4f;
  color: #ffffff;
}

.why-compact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */

.why-compact-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.why-compact-header h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.why-compact-header p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* CAPABILITY STRIP */

.why-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 56px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.why-capabilities span::before {
  content: "✓";
  margin-right: 8px;
  color: #9fe7e5;
  font-weight: 700;
}

/* PANELS */

.why-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-panel {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers the icon */
  text-align: center;
}

.why-panel img {
  width: 88px;           /* adjust if needed */
  height: auto;
  margin-bottom: 16px;
}

.why-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-panel p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ========= USE CASES ========= */

.use-cases {
  padding: 58px 24px;
  background: #ffffff;
}

.use-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */

.use-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.use-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.use-header p {
  font-size: 1.05rem;
  color: #4b5563;
}

/* ROLE SELECTOR */

.role-timeline {
  display: none;
  max-width: 100%;
}

.role-timeline.active {
  display: block;
}


.role-selector {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

/* TABS */

.role-tabs {
  display: flex;
  background: #f8fafc;
}

.role-tab {
  flex: 1;
  padding: 16px;
  background: #1f3c4f;
  border-left: 1px solid #fff;
  border-top: none;
	border-bottom: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

.role-tab.active {
  background: #ffffff;
  color: #111827;
  border-bottom: 2px solid #ff8a3d;
}

/* PANEL */

.role-panel {
  background: linear-gradient(
    135deg,
    #f7f9fc 0%,
    #f1f5ff 40%,
    #ffffff 100%
  );
  border-radius: 0;
  padding: 48px;
}
.role-content {
  display: none;
}

.role-content.active {
  display: block;
}

/* CONTENT */

.role-content img {
  width: 72px;
  margin-bottom: 16px;
}

.role-content h3 {
  margin-bottom: 12px;
}

.role-content ul {
  padding-left: 18px;
  margin: 0;
}

.role-content li {
  margin-bottom: 8px;
  color: #374151;
}

/* SPLIT LAYOUT */

.role-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: flex-start;
}

/* LEFT */
.role-right {
  background: #ffffff;
  border-radius: 18px;
  padding: 0px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}


.role-left h3 {
  margin-bottom: 12px;
}

.role-left ul {
  padding-left: 18px;
}

.role-left li {
  margin-bottom: 8px;
}


/* ========= FINAL CTA ========= */

.final-cta {
  padding: 58px 24px;
  background: linear-gradient(
    135deg,
    #1f3c4f,
    #2f8f98
  );
  color: #ffffff;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 48px;
}

/* CTA BUTTONS */

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}
/* ========= FOOTER ========= */

.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 80px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 40px;
}

/* BRAND */

.footer-brand h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* LINKS */

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #cbd5f5;
  text-decoration: none;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}



/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 900px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: center;
    text-align: center;
  }

  .trust-item img {
    margin-bottom: 8px;
  }
}
@media (max-width: 900px) {
  .why-panels {
    grid-template-columns: 1fr;
  }

  .why-capabilities {
    gap: 12px 20px;
  }
}

@media (max-width: 900px) {
  .use-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-icon {
    order: -1;
  }
}
@media (max-width: 600px) {
  .final-cta {
    padding: 100px 24px;
  }
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 900px) {
  .time-money-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .time-money-visual {
    order: -1;
  }
}

@media (max-width: 900px) {
  .timeline-track {
    flex-direction: column;
    padding-top: 0;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-step {
    text-align: left;
    max-width: none;
    padding-left: 24px;
    margin-bottom: 16px;
  }

  .timeline-step::before {
    position: absolute;
    left: 0;
    top: 4px;
    margin: 0;
  }
}


@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
