/* ============================================================
   FastPass CDL — Landing Page Stylesheet
   Brand: Navy #0A2E59 | Orange #F37021
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A2E59;
  --deep-navy:  #061A33;
  --orange:     #F37021;
  --orange-dk:  #D45F10;
  --white:      #FFFFFF;
  --light:      #F8FAFC;
  --alt:        #F0F4FA;
  --text:       #1F2937;
  --text-mid:   #4B5563;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --shadow-sm:  0 4px 12px rgba(15,23,42,.07);
  --shadow-md:  0 8px 28px rgba(15,23,42,.11);
  --shadow-lg:  0 20px 50px rgba(15,23,42,.16);
  --radius:     1rem;
  --radius-sm:  0.6rem;
  --radius-pill:999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography helpers ─────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Tag pill ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(243,112,33,.1);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(243,112,33,.32);
}
.btn-primary:hover {
  background: var(--orange-dk);
  box-shadow: 0 10px 28px rgba(243,112,33,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline-navy:hover {
  background: var(--alt);
  border-color: #C8D4E3;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

.ghost-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0.25rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.18s, color 0.18s;
  font-family: inherit;
}
.ghost-link:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

/* ── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.elevated {
  box-shadow: 0 2px 18px rgba(15,23,42,.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover {
  color: var(--navy);
  background: var(--alt);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1.35rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* mobile nav open state */
.site-header.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}
.site-header.open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #EDF4FF 0%, var(--white) 55%, #FFF6EE 100%);
  padding: 5rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10,46,89,.06);
}
.hero-orbit--one {
  width: 640px; height: 640px;
  top: -200px; right: -180px;
}
.hero-orbit--two {
  width: 380px; height: 380px;
  top: -60px; right: 60px;
}
.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,112,33,.12) 0%, transparent 65%);
  top: -100px; right: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(10,46,89,.07);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.1rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 30rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 28rem;
}

/* Glass card (hero aside + contact) */
.glass-card {
  background: var(--white);
  border-radius: 1.35rem;
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.panel-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}
.panel-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.panel-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.panel-contact span { font-size: 0.82rem; color: var(--text-muted); display: block; }
.panel-contact a {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  transition: color 0.15s;
}
.panel-contact a:hover { color: var(--orange); }

/* Scroll indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(10,46,89,.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.wheel {
  width: 3px; height: 6px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-wheel 1.6s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(8px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--light);
}

.section-header {
  max-width: 52rem;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 2.2vw + 0.8rem, 2.25rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-mid);
  max-width: 42rem;
}

/* ── GRID ───────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── FEATURE CARDS ──────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.68;
}

/* ── TIMELINE ───────────────────────────────────────────── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(243,112,33,.15));
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot--accent {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(243,112,33,.2);
}

.timeline-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.timeline-content p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.68;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { align-items: stretch; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-quote {
  font-size: 0.97rem;
  line-height: 1.72;
  color: var(--text-mid);
  font-style: italic;
  flex: 1;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--orange);
}
.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1.25rem;
  line-height: 1;
}
.price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.pricing-list li {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.85rem;
}

.pricing-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.mini-card h4 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.mini-card p, .mini-card li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.mini-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
}
.mini-card--muted {
  background: var(--alt);
  border-color: #DDE4EF;
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 2.2vw + 0.8rem, 2.25rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.35rem;
}
.contact-details p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-details a {
  color: var(--orange);
  font-weight: 700;
}
.contact-details a:hover { text-decoration: underline; }

.contact-card .glass-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.contact-card .glass-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.contact-meta {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.85rem;
}
.contact-meta a { color: var(--orange); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,.55);
  padding: 2.25rem 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-inner p + p { margin-top: 0.35rem; }
.site-footer a { color: var(--orange); }
.site-footer a:hover { text-decoration: underline; }

.footer-cta { flex-shrink: 0; }

/* ── FLOATING CTA ───────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(243,112,33,.45);
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s, opacity 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.floating-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(243,112,33,.55);
}
.floating-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal="fade-up"]    { transform: translateY(28px); }
[data-reveal="fade-left"]  { transform: translateX(28px); }
[data-reveal="fade-right"] { transform: translateX(-28px); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr 380px; gap: 2.5rem; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .pricing-side    { flex-direction: row; flex-wrap: wrap; }
  .mini-card       { flex: 1 1 260px; }
}

@media (max-width: 900px) {
  .grid-3          { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-panel      { max-width: 520px; }
  .hero-scroll-indicator { display: none; }
  .pricing-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  .section  { padding: 3.5rem 0; }
  .hero     { padding: 3rem 0 2.5rem; }

  .timeline { padding-left: 2rem; }
  .timeline-dot { left: -2rem; }

  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .floating-cta { bottom: 1rem; right: 1rem; font-size: 0.85rem; padding: 0.75rem 1.3rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .panel-footer { flex-direction: column; align-items: flex-start; }
  .pricing-side { flex-direction: column; }
}
