*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-900: #0c1e3a;
  --blue-800: #122a52;
  --blue-700: #1a3d6e;
  --blue-600: #2563a8;
  --blue-500: #3b82f6;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-alert: #e64a19;
  --teal: #10b981;
  --teal-dark: #059669;
  --teal-glow: #34d399;
  --dark-green: #0a1f1c;
  --green: #22c55e;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(12, 30, 58, 0.12);
  --shadow-lg: 0 12px 40px rgba(12, 30, 58, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--gray-50);
}

.section--dark {
  background: var(--blue-900);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Top bar */
.top-bar {
  background: var(--orange-alert);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.top-bar-icon {
  margin-right: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
}

.btn-cta {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
}

.btn-cta:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.55);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.125rem;
  border-radius: 14px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 24, 0.82) 0%,
    rgba(6, 22, 19, 0.88) 40%,
    rgba(4, 16, 14, 0.94) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 42px);
}

.hero-content {
  text-align: center;
  padding: 3rem 0 2rem;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
}

.hero-stats-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(10, 40, 35, 0.75);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 8px var(--teal-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--teal-glow); }
}

.divider {
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  line-height: 1.65;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-location {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

.hero-location strong {
  color: var(--white);
  font-weight: 700;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-features-bar {
  margin-top: auto;
  padding: 0 0 2rem;
}

.hero-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  text-align: center;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--teal);
  color: var(--teal-glow);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Comparison */
.comparison-grid {
  display: grid;
  gap: 2.5rem;
}

.comparison-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.comparison-text p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.badge {
  display: inline-block;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.comparison-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 320px;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.compare-card--muted {
  background: var(--gray-50);
}

.compare-card--highlight {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
}

.compare-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--blue-900);
}

.compare-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.compare-card ul {
  list-style: none;
}

.compare-card li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.compare-card--muted li::before {
  content: '✕';
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-card--highlight li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* Steps */
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.steps-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.steps-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.steps-sub {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steps-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.steps-list h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.steps-list p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* Why */
.why h2 {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.testimonials-header p {
  color: var(--gray-600);
}

.testimonials-accent {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--blue-900);
}

.testimonial footer span:last-child {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* Pricing */
.pricing-inner {
  text-align: center;
}

.pricing-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.pricing-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pricing-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 0.5rem;
}

.pricing-main {
  font-size: 2rem;
  font-weight: 800;
}

.pricing-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}

.pricing-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
}

/* FAQ */
.faq h2 {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--blue-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-right: 2rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 30, 58, 0.92) 0%,
    rgba(12, 30, 58, 0.75) 100%
  );
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.final-cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.final-cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.875rem;
}

/* Sticky call button */
.sticky-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
  transition: transform 0.15s, background 0.15s;
}

.sticky-call:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .compare-cards {
    grid-template-columns: 1fr;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-image {
    order: -1;
  }

  .steps-image img {
    min-height: 260px;
  }

  .testimonials-header {
    flex-direction: column;
    text-align: center;
  }

  .pricing-box {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .pricing-divider {
    width: 80px;
    height: 1px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-content {
    padding: 2.5rem 0 1.5rem;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .hero-features li {
    font-size: 0.8125rem;
    padding: 0.875rem 0.5rem;
  }

  .sticky-call {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}

@media (min-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text image"
      "cards cards";
  }

  .comparison-text {
    grid-area: text;
  }

  .comparison-image {
    grid-area: image;
    max-height: none;
  }

  .compare-cards {
    grid-area: cards;
  }
}
