/* style.css 

/* -------------------------------------------------------------------------- */
/* VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
  --color-primary: #4682b4;
  --color-primary-dark: #315f85;
  --color-navy: #0f172a;
  --color-navy-light: #1e293b;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;

  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* UTILITIES */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center {
  text-align: center;
}
.section {
  padding: 5rem 0;
}
.section-light {
  background-color: var(--color-surface);
}
.section-alt {
  background-color: var(--color-bg);
}
.spacer-xl {
  height: 4rem;
}

/* Skip link (new) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: var(--color-navy);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  z-index: 2000;
}
.skip-link:focus {
  left: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-navy);
}
.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-block {
  width: 100%;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-navy);
  color: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}
.brand-mark.sm {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.brand-subtitle {
  font-size: 0.7rem;
  opacity: 0.8;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a:not(.btn) {
  font-size: 0.95rem;
  opacity: 0.9;
}
.nav-links a:not(.btn):hover {
  opacity: 1;
  color: var(--color-primary);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.hamburger::before {
  top: -6px;
}
.hamburger::after {
  top: 6px;
}

/* HERO */
.hero {
  position: relative;
  background-color: var(--color-navy);
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  color: #fff;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, #3b6c96 0%, transparent 40%),
    radial-gradient(circle at bottom left, #1e293b 0%, var(--color-navy) 60%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.hero-lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.trust-indicators {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.deal-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.deal-card:hover {
  transform: rotateY(0) rotateX(0);
}
.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.deal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}
.status-badge {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}
.deal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.deal-row.secondary {
  color: #94a3b8;
  font-size: 0.9rem;
}
.deal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}
.deal-highlight {
  background: var(--color-primary);
  color: #fff;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-weight: 600;
}
.deal-footer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

/* SECTIONS */
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* Benefits Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.icon-box {
  width: 50px;
  height: 50px;
  background: #f0f9ff;
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.icon-box svg {
  width: 28px;
  height: 28px;
}
.feature-card h3 {
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Split Sections */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #e0f2fe;
  color: var(--color-primary-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.split-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-navy);
  margin-top: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}
.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Process */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.step-connector {
  flex: 0 0 100px;
  height: 2px;
  background: var(--color-border);
  margin-top: 30px;
}
.step h3 {
  margin-bottom: 0.5rem;
  color: var(--color-navy);
}
.step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* CTA / Form Section */
.section-cta {
  background-color: var(--color-primary);
  color: #fff;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.contact-methods {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-methods a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-form-wrapper {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--color-text-main);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  margin-top: 0;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-navy);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.2);
}

.help-text {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--color-navy-light);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .trust-indicators {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 3rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }
  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-text {
    text-align: center;
  }
  .contact-methods {
    justify-content: center;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    display: none;
  }
  .step {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 2rem;
    flex-direction: column;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    box-shadow: var(--shadow-lg);
  }
  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
