/* ---------------------------------------------------
   Google Fonts
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ---------------------------------------------------
   Root Variables
--------------------------------------------------- */
:root {
  --bg: #0b0f1a;
  --panel: #0f1526;
  --muted: #aab3c5;
  --text: #e9eefb;
  --brand: #6ee7b7;  /* mint */
  --brand-2: #60a5fa; /* blue */
  --danger: #ef4444;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

/* ---------------------------------------------------
   Global Reset & Base Styles
--------------------------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', system-ui, -apple-system, Segoe UI, Roboto, Inter, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* ---------------------------------------------------
   Typography
--------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--brand-2);
  text-decoration: none;
}

a:hover {
  opacity: .9;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------
   Header & Navigation
--------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 26, .85);
  backdrop-filter: blur(10px);
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-2);
}

.logo-logo {
  width: 100px;
  height: 100px;
}

.bus-name {
  justify-self: center;
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.nav a.btn {
  padding: 10px 16px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0a0f1a;
  font-weight: 700;
}

.nav-link.active {
  font-weight: bold;
  color: #0077ff;
  border-bottom: 2px solid #0077ff;
}

nav.hide-mobile {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--brand-2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Mobile Nav */
.links {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 60px;
  right: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 10px;
}

/* ---------------------------------------------------
   Hero Section
--------------------------------------------------- */
.hero {
  padding: 80px 0;
  background:
    radial-gradient(1200px 400px at 50% -50%, rgba(96, 165, 250, .25), transparent),
    radial-gradient(800px 300px at 90% 10%, rgba(110, 231, 183, .15), transparent);
}

.hero h1 {
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1.1;
  margin: 0 0 10px;
}

.hero p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 9999px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px; /* better tap target */
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0a0f1a;
}

.btn-primary-plus {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .15);
}

/* ---------------------------------------------------
   Trust Badges
--------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.trust .card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .06);
}

/* ---------------------------------------------------
   Sections & Subheadings
--------------------------------------------------- */
section {
  padding: 64px 0;
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 8px;
}

.sub {
  color: var(--muted);
  margin: 0 0 24px;
}

/* ---------------------------------------------------
   Services Grid
--------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
  word-wrap: break-word;
}

.card h3 {
  margin: 0 0 6px;
}

.list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  margin: 8px 0;
  display: inline-block;
  gap: 10px;
  color: var(--muted);
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 9999px;
  background: rgba(110, 231, 183, .15);
  color: var(--brand);
  white-space: nowrap;
}

.pill.bonus {
  background: rgba(96, 165, 250, 0.2);
  color: var(--brand);
  font-weight: 600;
}

/* ---------------------------------------------------
   Pricing
--------------------------------------------------- */
.pricing .plan {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 34px;
  font-weight: 800;
}

/* ---------------------------------------------------
   About Section
--------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

/* ---------------------------------------------------
   FAQ Accordion
--------------------------------------------------- */
details {
  background: var(--panel);
  border-radius: var(--radius);
  margin: 12px 0;
  border: 1px solid rgba(255, 255, 255, .06);
}

summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
}

details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

/* ---------------------------------------------------
   Contact Form
--------------------------------------------------- */
form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #0c1222;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: #8291ab;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

/* ---------------------------------------------------
   Cookie Policy Page
--------------------------------------------------- */
main.wrap h1 {
  font-size: clamp(36px, 6vw, 50px);
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--brand-2);
  padding-bottom: 8px;
}

main.wrap h2 {
  font-size: clamp(26px, 5vw, 36px);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--brand-2);
  border-left: 4px solid var(--brand);
  padding-left: 12px;
}

main.wrap h3 {
  font-size: clamp(22px, 4vw, 28px);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--brand);
}

main.wrap p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--muted);
}

main.wrap ul {
  margin: 12px 0 24px 20px;
  padding: 0;
  list-style-type: disc;
  color: var(--muted);
}

main.wrap ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

main.wrap a {
  color: var(--brand-2);
  text-decoration: underline;
  font-weight: 500;
}

main.wrap a:hover {
  opacity: 0.85;
}

main.wrap strong {
  color: var(--text);
  font-weight: 700;
}

main.wrap {
  padding-bottom: 80px;
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
footer {
  background: var(--panel);
  color: var(--text);
  margin-top: 60px;
  font-size: 0.95rem;
}

footer .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-grid h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--brand-2);
}

footer .center {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: var(--muted);
}

footer .small {
  font-size: 0.85rem;
}

/* ---------------------------------------------------
   Media Queries (Mobile)
--------------------------------------------------- */
@media (max-width: 728px) {
  .hide-mobile {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hamburger span {
    background: var(--text); /* theme-colored burger lines */
  }
  .nav {
    height: 64px;
    padding: 0 16px;
  }
  .logo-logo {
    width: 56px;
    height: 56px;
  }
  .links {
    right: 0;
    left: 0;
    top: 64px;
    padding: 14px 20px;
    background: var(--panel);
    border-top: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
  }
  .links a {
    padding: 12px 0;
    color: var(--text);
  }
  .hero {
    padding: 48px 0;
  }
  .hero h1 {
    font-size: clamp(26px, 9vw, 42px);
  }
  .hero p {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .cta-row {
    flex-direction: column;
    gap: 10px;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  section {
    padding: 40px 0;
  }
  .price {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
