@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070B14;
  --surface: #111827;
  --surface-2: #1E293B;
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --accent: #D4AF37;
  --accent-2: #38BDF8;
  --border: rgba(212, 175, 55, 0.15);
  --border-light: rgba(255, 255, 255, 0.05);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --fs-display: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 12px;
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: var(--fs-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

img {
  max-width: 100%;
}

main {
  flex: 1 0 auto;
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="fade-up"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.site-header {
  background-color: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: var(--space-md);
  position: relative;
  z-index: 2;
  background-color: rgba(7, 11, 20, 0.95);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--text);
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-line2 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
}

.ad-notice {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-list a {
  font-weight: 500;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background-color: var(--text);
  transition: 0.3s;
}

.hero {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-overline-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.overline {
  display: inline-block;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}

.overline-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-2);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  max-width: 520px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.badge {
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.badge:hover {
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--accent);
}

.badge-icon {
  color: var(--accent);
  font-size: 0.8rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: var(--fs-body);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #B8962E 100%);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  color: var(--bg);
}

.btn-full {
  width: 100%;
}

.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.telemetry-card {
  position: absolute;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.card-top {
  top: 20px;
  left: -40px;
}

.card-bottom {
  bottom: 20px;
  right: -40px;
}

.telemetry-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.telemetry-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.telemetry-bar {
  width: 100%;
  height: 3px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}

.telemetry-fill {
  height: 100%;
  background: var(--accent-2);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease-out;
}

.fill-accent {
  background: var(--accent);
}

.hero-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top: var(--space-xl);
  opacity: 0.3;
}

.section {
  padding: var(--space-xl) 0;
}

.section-surface {
  background-color: var(--surface);
}

.section-surface-2 {
  background-color: var(--surface-2);
}

.section-bg {
  background-color: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.fleet-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.fleet-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, var(--bg) 100%);
}

.fleet-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.05);
}

.fleet-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.fleet-tag {
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(5px);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}

.fleet-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-content h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.fleet-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  flex: 1;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.spec-chip {
  background: var(--surface-2);
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.price-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.stats-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.stat-showcase-card {
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-showcase-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.stat-showcase-card:hover::before {
  opacity: 1;
}

.stat-showcase-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-showcase-label {
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.stat-showcase-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  margin-top: var(--space-lg);
}

.process-line {
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--accent), var(--border), transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--space-sm);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.step-content {
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.process-step p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.feature-image-wrap {
  position: relative;
}

.feature-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.feature-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  color: var(--accent);
  font-size: 1.5rem;
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feature-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text);
  font-size: var(--fs-small);
}

.list-icon {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.cert-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.cert-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cert-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cert-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-tag {
  background: var(--surface-2);
  color: var(--accent-2);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.form-intro {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.premium-form {
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.premium-form .form-group {
  margin-bottom: var(--space-md);
}

.premium-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--surface-2);
}

.premium-form textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.checkbox-group label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.faq-wrapper {
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.faq-wrapper h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: var(--fs-body);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question[aria-expanded="true"] {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: var(--space-md);
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.site-footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border-light);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-disclaimer {
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 0.25rem;
}

.footer-legal {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-md);
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  word-break: break-word;
}

.legal-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.legal-section {
  margin-bottom: var(--space-md);
  background: var(--surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.legal-subheading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.legal-subheading::before {
  content: '◆';
  font-size: 0.8rem;
  color: var(--accent-2);
}

.legal-text {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-callout {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--accent);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0;
}

.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.legal-footer-note {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.thanks-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.thanks-card {
  background: var(--surface-2);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.thanks-logo {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
}

.thanks-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.thanks-highlight {
  color: var(--accent);
}

.thanks-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.thanks-steps {
  text-align: left;
  background: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-lg);
}

.thanks-steps-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--text);
}

.thanks-step-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.thanks-step-item:last-child {
  margin-bottom: 0;
}

.thanks-step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.thanks-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.thanks-step-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.thanks-info {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.thanks-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.thanks-info-list {
  list-style: none;
  padding: 0;
}

.thanks-info-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.thanks-info-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.thanks-contact {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--accent);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
}

.thanks-contact p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
}

.thanks-contact-details {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 992px) {
  .hero-grid,
  .feature-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid,
  .stats-showcase,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: var(--surface);
    padding: var(--space-md);
    transform: translateY(-120%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    border-bottom: 1px solid var(--border-light);
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav.active {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .feature-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-md);
    display: inline-flex;
  }

  .cert-card {
    flex-direction: column;
  }

  .thanks-card {
    padding: var(--space-md);
  }

  .thanks-step-item {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .thanks-contact-details {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-grid > *,
  .feature-split > *,
  .contact-grid > *,
  .fleet-grid > *,
  .stats-showcase > *,
  .cert-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: nowrap;
    height: auto;
    min-height: 64px;
    padding: 10px 0;
    gap: 8px;
  }

  .logo {
    flex-direction: column;
    align-items: center;
    min-width: 0;
    flex: 1;
  }

  .logo-text {
    word-break: break-all;
    min-width: 0;
    text-align: center;
  }

  .ad-notice {
    word-break: break-all;
    flex-shrink: 0;
  }

  .mobile-menu-btn {
    flex-shrink: 0;
    margin-left: auto;
  }

  .footer-brand,
  .footer-links,
  .footer-legal {
    word-break: break-all;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .telemetry-card {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .card-top,
  .card-bottom {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-image-wrapper {
    order: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .premium-form {
    padding: 12px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero-content h1,
  .section-header h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .legal-content {
    padding: 2rem 12px;
  }

  .thanks-card {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-aos] {
    transition: none !important;
    animation: none !important;
  }
}