/* CorpoTrek — Design System */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

:root {
  --ink: #1E1635;
  --ink-dark: #140E24;
  --cta-bg: #3D2D6B;
  --cta-bg-light: #4A3880;
  --cloud: #FAF8F4;
  --teal: #2F7A6E;
  --teal-dark: #256358;
  --amber: #F26430;
  --amber-dark: #D95524;
  --coral: #F0645A;
  --slate: #5B6472;
  --white: #FFFFFF;
  --border: rgba(30, 22, 53, 0.12);
  --border-dashed: rgba(30, 22, 53, 0.22);
  --shadow-sm: 0 2px 8px rgba(30, 22, 53, 0.06);
  --shadow-md: 0 8px 32px rgba(30, 22, 53, 0.1);
  --shadow-lg: 0 16px 48px rgba(30, 22, 53, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --font-mono: 'Sora', system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography utilities */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.label-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(242, 100, 48, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--slate);
  padding: 10px 16px;
  border: none;
}
.btn-ghost:hover { color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  height: 52px;
  width: 52px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1;
}

.logo--footer .logo-name {
  color: var(--cloud);
}

.logo--footer .logo-icon {
  height: 48px;
  width: 48px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(250, 248, 244, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cloud);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(250, 248, 244, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--cloud); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(250, 248, 244, 0.5);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--cloud); }

/* Ticket card component */
.ticket-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.ticket-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--amber);
  border-radius: 0 2px 2px 0;
}

.ticket-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ticket-card.coral-accent::before { background: var(--coral); }
.ticket-card.amber-accent::before { background: var(--amber); }

.ticket-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.ticket-card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ticket-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.ticket-card .card-link:hover { color: var(--amber-dark); }

/* Perforated edge */
.perforated {
  position: relative;
}
.perforated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--border-dashed) 0,
    var(--border-dashed) 6px,
    transparent 6px,
    transparent 12px
  );
}

/* Route line (dashed) */
.route-line {
  border-left: 2px dashed var(--border-dashed);
  padding-left: 28px;
  margin-left: 12px;
}

/* Hero — homepage */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin: 16px 0 24px;
}

.hero-content .subhead {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  max-width: 180px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.4;
}

/* Boarding pass visual */
.boarding-pass {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 420px;
  margin-left: auto;
}

.boarding-pass-header {
  background: var(--ink);
  color: var(--cloud);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boarding-pass-header .pnr {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.boarding-pass-body {
  padding: 24px;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.airport-code {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
}

.route-connector {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.route-connector .line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0,
    var(--amber) 4px,
    transparent 4px,
    transparent 8px
  );
}

.route-connector .plane {
  color: var(--amber);
  font-size: 1rem;
}

.flight-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-item label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}

.detail-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.boarding-pass-footer {
  border-top: 2px dashed var(--border-dashed);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(242, 100, 48, 0.06);
}

.status-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(242, 100, 48, 0.15);
  color: var(--ink);
  font-weight: 600;
}

/* Trust bar */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-bar p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--slate);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* Stats band */
.stats-band {
  padding: 64px 0;
  background: var(--ink);
  color: var(--cloud);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(250, 248, 244, 0.7);
  line-height: 1.5;
}

/* Section defaults */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 12px 0 16px;
}

.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid .cta-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-dark) 100%);
  color: var(--cloud);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-grid .cta-card::before { display: none; }
.services-grid .cta-card h3 { color: var(--cloud); }
.services-grid .cta-card p { color: rgba(250, 248, 244, 0.85); }
.services-grid .cta-card .card-link { color: var(--amber); }
.services-grid .cta-card .card-link:hover { color: var(--cloud); }

/* Timeline / steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-item {
  position: relative;
}

.step-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ink);
  background: rgba(242, 100, 48, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 700;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

/* How it works — scroll flight (this section only) */
.steps-wrapper {
  position: relative;
}

.steps-flight-rail {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
  z-index: 2;
}

.steps-flight-line {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0,
    var(--amber) 5px,
    transparent 5px,
    transparent 12px
  );
  opacity: 0.45;
}

.steps-flight-plane {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  color: var(--amber);
  will-change: left, top, transform;
  filter: drop-shadow(0 2px 5px rgba(242, 100, 48, 0.4));
  line-height: 1;
}

.step-item.step-active .step-number {
  background: var(--amber);
  color: var(--white);
  transform: scale(1.08);
}

.step-item.step-active h3 {
  color: var(--amber-dark);
}

@media (max-width: 768px) {
  .steps-flight-rail {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .steps-flight-line {
    background: repeating-linear-gradient(
      180deg,
      var(--amber) 0,
      var(--amber) 5px,
      transparent 5px,
      transparent 12px
    );
  }

  .steps-wrapper .steps-grid {
    padding-left: 48px;
  }
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-item p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Tabs */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover { border-color: var(--ink); color: var(--ink); }
.tab-btn.active {
  background: var(--ink);
  color: var(--cloud);
  border-color: var(--ink);
}

.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

.tab-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.tab-content h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.tab-content ul {
  list-style: none;
  margin: 20px 0 24px;
}

.tab-content li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--slate);
  font-size: 0.95rem;
}

.tab-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
}

/* Testimonial */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 32px;
  line-height: 1;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--slate);
  display: block;
  margin-bottom: 24px;
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.testimonial-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--amber);
}

.testimonial-stat span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* CTA section */
.cta-section {
  background: linear-gradient(145deg, var(--cta-bg-light) 0%, var(--cta-bg) 50%, #322456 100%);
  color: var(--cloud);
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(242, 100, 48, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.cta-section .section-header p {
  color: rgba(250, 248, 244, 0.7);
}

.cta-form {
  max-width: 520px;
  margin: 40px auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(250, 248, 244, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(250, 248, 244, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cloud);
  transition: border-color 0.2s, background 0.2s;
}

.cta-section .form-group input:focus,
.cta-section .form-group select:focus,
.cta-section .form-group textarea:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(242, 100, 48, 0.6);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 244, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(242, 100, 48, 0.15);
  border-radius: var(--radius);
  color: var(--cloud);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 12px 0 20px;
  max-width: 720px;
}

.page-hero .intro {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--amber-dark); }

/* Feature list */
.feature-list {
  list-style: none;
  margin: 32px 0;
}

.feature-list li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--slate);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}

/* Content layout */
.content-section {
  padding: 64px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.content-main { max-width: 640px; }
.content-main h2 { font-size: 1.5rem; margin-bottom: 16px; }
.content-main p { color: var(--slate); margin-bottom: 16px; line-height: 1.7; }

.content-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.content-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.25s;
}

.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--amber);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.pricing-card .tier-for {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--slate);
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  max-width: 640px;
  margin: 48px auto 0;
  padding: 24px;
  background: rgba(242, 100, 48, 0.1);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--slate);
}

/* Services hub cards */
.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
  display: block;
}

.service-hub-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.service-hub-card .service-icon {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.service-hub-card h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-hub-card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-hub-card .arrow {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

/* Solutions cards */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  display: block;
}

.solution-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-sm);
  color: inherit;
}

.solution-card h2 { font-size: 1.25rem; margin-bottom: 12px; }
.solution-card p { color: var(--slate); font-size: 0.9rem; margin-bottom: 20px; }

.solution-card ul { list-style: none; }
.solution-card li {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 6px 0 6px 20px;
  position: relative;
}
.solution-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* Legal content */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-placeholder {
  background: rgba(242, 100, 48, 0.1);
  border: 1px solid rgba(242, 100, 48, 0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 32px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p { color: var(--slate); margin-bottom: 32px; }

.contact-detail {
  margin-bottom: 20px;
}

.contact-detail label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-card .form-group label { color: var(--slate); }
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  background: var(--cloud);
  border-color: var(--border);
  color: var(--ink);
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
  color: var(--slate);
  opacity: 0.6;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
}

.mission-card h3 { margin-bottom: 12px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(242, 100, 48, 0.15);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--slate); }

/* Inline CTA band */
.inline-cta {
  background: rgba(242, 100, 48, 0.08);
  border: 1px solid rgba(242, 100, 48, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.inline-cta h3 { margin-bottom: 12px; }
.inline-cta p { color: var(--slate); margin-bottom: 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .content-grid,
  .contact-grid,
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid,
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .pricing-grid,
  .solutions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .boarding-pass { margin: 0 auto; }
}

@media (max-width: 900px) {
  .logo-tagline { display: none; }
  .logo-icon { height: 46px; width: 46px; }
  .logo-name { font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .logo-icon { height: 42px; width: 42px; }
  .logo-name { font-size: 1.1rem; }
  .nav-main {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--cloud);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  .nav-main.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-actions { width: 100%; flex-direction: column; }
  .nav-actions .btn { width: 100%; }
  .nav-toggle { display: block; }

  .hero { padding: 48px 0 64px; }
  .hero-stats { gap: 20px; }
  .stats-grid,
  .steps-grid,
  .why-grid,
  .service-hub-grid,
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero load animations */
.hero-content {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.boarding-pass {
  animation: slideInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 400ms; }

/* Header scroll state */
.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

/* Enhanced hovers */
.ticket-card,
.why-item,
.service-hub-card,
.solution-card,
.pricing-card {
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.btn-primary {
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 100, 48, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}


/* Trust logos subtle pulse */
.trust-logo {
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 0.8;
}

/* Form success */
.form-success {
  animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stat items pop */
.stat-item.reveal.is-visible .stat-value {
  animation: scaleIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
