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

:root {
  --navy:   #1D3F6E;
  --amber:  #F5A623;
  --bg:     #F8F9FB;
  --dark:   #1A1A2E;
  --muted:  #6B7280;
  --green:  #22C55E;
  --white:  #FFFFFF;
  --card:   #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 6%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29,63,110,.08);
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--navy); letter-spacing: -.5px;
}
.logo span { color: var(--amber); }
nav ul { list-style: none; display: flex; gap: 2.2rem; }
nav ul a {
  text-decoration: none; color: var(--muted);
  font-size: .95rem; font-weight: 500;
  transition: color .2s;
}
nav ul a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: .5rem 1.3rem; border-radius: 8px;
  font-weight: 700 !important; font-size: .9rem !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #16305a !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 9rem 6% 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.1); color: #16a34a;
  border: 1px solid rgba(34,197,94,.3);
  padding: .35rem .9rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero-badge::before { content: '●'; font-size: .6rem; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); margin-bottom: 1.2rem;
}
h1 em { font-style: normal; color: var(--amber); }
.hero p {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.7; max-width: 480px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy); color: var(--white);
  padding: .85rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .15s, background .2s;
  box-shadow: 0 4px 20px rgba(29,63,110,.25);
}
.btn-primary:hover { background: #16305a; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--navy); color: var(--navy);
  padding: .85rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.phone-mockup {
  width: 300px; height: 520px;
  background: var(--navy);
  border-radius: 36px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 30px 80px rgba(29,63,110,.35);
  position: relative; overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.phone-screen {
  background: #f0f4ff; border-radius: 24px;
  height: 100%; padding: 1rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.ps-header {
  background: var(--navy); color: var(--white);
  border-radius: 12px; padding: .7rem 1rem;
  font-size: .75rem; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}
.ps-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.ps-map {
  background: #dbeafe; border-radius: 12px; flex: 1;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.route-line {
  position: absolute;
  width: 3px; height: 70%; background: var(--amber);
  border-radius: 3px; left: 50%; transform: translateX(-50%);
}
.bus-icon {
  position: absolute; top: 35%;
  background: var(--amber); color: var(--white);
  border-radius: 8px; padding: .3rem .5rem;
  font-size: .75rem; font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  animation: moveBus 3s ease-in-out infinite;
}
@keyframes moveBus { 0%,100%{top:55%} 50%{top:20%} }
.stop-dot {
  position: absolute; width: 10px; height: 10px;
  border-radius: 50%; background: var(--navy);
  border: 2px solid white; left: calc(50% - 5px);
}
.stop-dot:nth-child(3) { top: 20%; }
.stop-dot:nth-child(4) { top: 50%; }
.stop-dot:nth-child(5) { top: 75%; }
.ps-card {
  background: white; border-radius: 10px; padding: .6rem .8rem;
  display: flex; align-items: center; gap: .6rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.ps-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center;
  justify-content: center; font-size: .7rem; font-weight: 800; color: white;
  flex-shrink: 0;
}
.ps-card-text { font-size: .7rem; color: var(--dark); line-height: 1.3; }
.ps-card-text strong { display: block; font-weight: 700; }
.ps-badge {
  margin-left: auto; font-size: .6rem; font-weight: 700;
  background: rgba(34,197,94,.1); color: #16a34a;
  padding: .15rem .4rem; border-radius: 4px;
}

/* Floating tags */
.hero-tag {
  position: absolute; background: white;
  border-radius: 10px; padding: .5rem .9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  font-size: .78rem; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: .4rem;
}
.hero-tag .icon { font-size: 1rem; }
.tag-1 { top: 10%; left: -10%; animation: float 3.5s ease-in-out infinite; }
.tag-2 { bottom: 15%; right: -5%; animation: float 4.2s ease-in-out infinite .5s; }

/* ── STATS ── */
.stats {
  background: var(--navy);
  padding: 3.5rem 6%;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--amber);
}
.stat-label { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .2rem; }

/* ── SECTIONS ── */
.section { padding: 5.5rem 6%; }
.section-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: .8rem;
}
h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--navy); margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 540px; line-height: 1.7; }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: var(--card); border-radius: 16px;
  padding: 2rem; border: 1px solid rgba(29,63,110,.08);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(29,63,110,.12); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(29,63,110,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── ROLES ── */
.roles-section { background: var(--navy); padding: 5.5rem 6%; }
.roles-section h2, .roles-section .section-label { color: var(--white); }
.roles-section .section-label { color: var(--amber); }
.roles-section .section-sub { color: rgba(255,255,255,.6); }
.roles-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.role-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 2rem;
  transition: background .2s;
}
.role-card:hover { background: rgba(255,255,255,.1); }
.role-emoji { font-size: 2.2rem; margin-bottom: 1rem; }
.role-card h3 { color: var(--amber); font-size: 1.1rem; font-weight: 700; margin-bottom: .8rem; }
.role-card ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.role-card ul li {
  color: rgba(255,255,255,.75); font-size: .88rem;
  padding-left: 1.2rem; position: relative;
}
.role-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--amber); }

/* ── PLANS ── */
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.plan-card {
  background: var(--card); border-radius: 20px;
  padding: 2rem; border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--amber);
  box-shadow: 0 8px 40px rgba(245,166,35,.2);
}
.plan-badge {
  display: inline-block; background: var(--amber); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: .25rem .7rem;
  border-radius: 999px; margin-bottom: 1rem; letter-spacing: .5px;
  text-transform: uppercase;
}
.plan-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--navy);
  margin: .6rem 0 0;
}
.plan-price span { font-size: .95rem; font-weight: 500; color: var(--muted); }
.plan-desc { color: var(--muted); font-size: .88rem; margin: .5rem 0 1.5rem; line-height: 1.5; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.8rem; }
.plan-features li {
  font-size: .9rem; color: var(--dark);
  display: flex; align-items: flex-start; gap: .5rem;
}
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.btn-plan {
  display: block; text-align: center; text-decoration: none;
  padding: .8rem; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  transition: all .2s;
}
.btn-plan-primary { background: var(--navy); color: white; }
.btn-plan-primary:hover { background: #16305a; }
.btn-plan-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-plan-outline:hover { background: var(--navy); color: white; }

/* ── HOW IT WORKS ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; max-width: 680px; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--amber);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h4 { font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.step-content p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #16305a 100%);
  padding: 5rem 6%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-amber {
  background: var(--amber); color: var(--dark);
  padding: .9rem 2.2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .15s, opacity .2s;
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.btn-amber:hover { opacity: .9; transform: translateY(-2px); }
.btn-white-outline {
  border: 2px solid rgba(255,255,255,.4); color: white;
  padding: .9rem 2.2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all .2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  text-align: center; padding: 2rem 6%;
  font-size: .85rem;
}
footer strong { color: var(--amber); }

/* Logo Container*/
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
}

/* ── SETTINGS BEFORE RESPONSIVE ── */
.menu-check { display: none; }

.menu-burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-burger span {
  width: 25px; height: 3px; 
  background: var(--navy);
  border-radius: 2px; transition: 0.3s;
}

/* ── RESPONSIVE TABLET (1024px) ── */
@media (max-width: 1024px) {
  .roles-grid, .plans-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE MOBILE SIDEBAR & LAYOUT (768px) ── */
@media (max-width: 768px) {
  .menu-burger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 8rem 2rem;
    gap: 1.5rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease-in-out;
    z-index: 1000;
    display: flex;
  }

  .menu-check:checked ~ .nav-menu { right: 0; }

  .menu-check:checked ~ .menu-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-check:checked ~ .menu-burger span:nth-child(2) { opacity: 0; }
  .menu-check:checked ~ .menu-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { grid-template-columns: 1fr; padding-top: 7rem; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .stats { flex-direction: column; gap: 1.5rem; }
  
  .roles-grid, .plans-grid, .features-grid { grid-template-columns: 1fr; }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3rem 6%; }
}