:root {
  /* Colors */
  --primary-dark: #041020;      /* Deep Midnight Blue */
  --primary: #0A2B5E;           /* Navy */
  --primary-light: #1E4E8C;     /* Blue */
  
  --secondary: #0088ff;         /* Light Blue for CTAs */
  --secondary-hover: #33aaff;   /* Brighter Light Blue */
  --secondary-glow: rgba(0, 136, 255, 0.4);
  
  --bg-color: #f7fbff;          /* Very Light Blue Tinted Off-White */
  --text-main: #334155;
  --text-light: #64748b;
  --text-dark: #0f172a;
  
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Sizes & Spaces */
  --container-max: 1200px;
  --border-radius: 16px;        /* More modern rounded corners */
  --border-radius-sm: 8px;
  --shadow-sm: 0 4px 6px rgba(10, 43, 94, 0.05);
  --shadow-md: 0 10px 25px rgba(10, 43, 94, 0.1);
  --shadow-lg: 0 20px 40px rgba(10, 43, 94, 0.15);
  --shadow-premium: 0 24px 50px -12px rgba(0, 136, 255, 0.25);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ================= Reset & Global ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-tight {
  max-width: 900px;
}

.bg-light { background-color: var(--bg-color); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; max-width: 700px; }

.highlight-text { 
  color: var(--primary); 
}

.highlight-text-light { 
  color: var(--secondary); /* Light Blue for dark backgrounds */
}

.sub-heading {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px var(--secondary-glow);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--secondary-glow);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-outline-primary {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}

.btn-outline-primary:hover {
  background: var(--secondary);
  color: var(--white);
}

.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.125rem; }

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { max-height: 64px; } /* Increased from 40px */

/* ================= Hero Section ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background-color: var(--primary-dark);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/132.jpg'); /* Changed from 2148817031 to a more horizontal appropriate background from the folder */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(4, 16, 32, 0.85) 50%, rgba(4, 16, 32, 0.4) 100%);
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(135deg, rgba(4, 16, 32, 0.95) 0%, rgba(4, 16, 32, 0.8) 100%);
  }
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 136, 255, 0.1);
  border: 1px solid rgba(0, 136, 255, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: #aaddff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--secondary-glow);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--secondary-glow); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 136, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 136, 255, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  margin-bottom: 24px;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 680px;
  text-wrap: balance;
}

.highlight-gradient {
  background: linear-gradient(90deg, #fff 0%, #aaddff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-chip i { color: var(--secondary); }

/* Form Card */
.form-card.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  color: var(--white);
  position: relative;
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.microcopy {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.sprint-hub-wrapper {
  min-height: 380px; 
  /* The Sprinthub script will load an iframe/form here. 
     Giving it min-height prevents layout shifts */
  background: rgba(255,255,255,0.02);
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
}
.sprint-hub-wrapper iframe {
  width: 100% !important;
  border: none !important;
}

.form-footer .secure-note {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

/* ================= Benefits Section ================= */
.benefits { padding: 120px 0; }
.section-header { margin-bottom: 64px; }
.section-description { font-size: 1.125rem; color: var(--text-light); }

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
}

.rounded-image {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.floating-card.top-right {
  bottom: -30px;
  right: -30px;
}

.floating-card i {
  font-size: 2rem;
  color: #eab308; /* warning yellow */
}

.floating-card strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.floating-card span {
  color: var(--text-light);
  font-size: 0.85rem;
}

.benefits-content .value-title {
  margin-bottom: 40px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.5;
}
.benefits-content .value-title strong { color: var(--primary); font-weight: 700;}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 136, 255, 0.15);
  border: 1px solid rgba(0, 136, 255, 0.1);
}

.item-text h4 { font-size: 1.35rem; margin-bottom: 8px; }
.item-text p { color: var(--text-light); font-size: 1rem; margin: 0; }

/* ================= Authority Section ================= */
.authority {
  padding: 120px 0;
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.authority h2 { color: var(--white); }

.authority-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent, black);
  -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.authority-wrapper { position: relative; z-index: 10; }

.lead-text { font-size: 1.2rem; color: #cbd5e1; }

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.premium-card {
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid;
}

.pioneer-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.pioneer-card h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 16px; }
.pioneer-card p { color: #cbd5e1; }

.card-icon-large {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

.testimonial-card.dark-card {
  background: var(--primary);
  border-color: rgba(0, 136, 255, 0.2);
}

.quote-icon { font-size: 2.5rem; color: var(--secondary); opacity: 0.5; margin-bottom: 10px; }
.quote-text { font-size: 1.15rem; font-style: italic; line-height: 1.7; font-weight: 300; }
.author { display: flex; align-items: center; gap: 16px; }
.author-avatar { font-size: 2.5rem; color: var(--secondary); opacity: 0.8;}
.author-info strong { display: block; font-size: 1.1rem; color: var(--white); }
.author-info span { font-size: 0.85rem; color: #94a3b8; }

/* ================= Steps Section ================= */
.steps { padding: 120px 0; background-color: var(--white); }

.steps-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  margin-top: 64px; 
}

.step-card {
  text-align: left;
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 136, 255, 0.2);
}

.step-number-wrap {
  margin-bottom: 24px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  opacity: 0.25;
}

.step-content h4 { font-size: 1.4rem; color: var(--primary-dark); }
.step-content p { color: var(--text-light); }


/* ================= FAQ Section ================= */
.faq-section { padding: 120px 0;}
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lead-p { font-size: 1.125rem; color: var(--text-light); margin-bottom: 32px;}

.urgency-banner {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(234, 179, 8, 0.1); /* Soft yellow */
  border-left: 4px solid #eab308;
  border-radius: 8px;
}
.urgency-banner .icon-wrap { font-size: 1.5rem; color: #eab308; }
.urgency-banner strong { display: block; color: var(--text-dark); margin-bottom: 4px; }
.urgency-banner p { margin: 0; color: var(--text-main); font-size: 0.95rem; }

.accordion-item { 
  background: var(--white); 
  border-radius: 12px; 
  margin-bottom: 16px; 
  border: 1px solid var(--border-color);
  overflow: hidden; 
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-dark);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
}

.accordion-header:hover { color: var(--secondary); }
.accordion-header i { transition: transform 0.3s; color: var(--secondary); font-size: 1.2rem; }
.accordion-item.active .accordion-header i { transform: rotate(45deg); }
.accordion-item.active { border-color: rgba(0,136,255,0.3); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-item.active .accordion-body { max-height: 600px; }
.inner-p { padding: 0 32px 24px 32px; color: var(--text-light); }
.inner-p p { margin: 0; }

/* Final CTA */
.final-cta-banner {
  position: relative;
  margin-top: 100px;
  border-radius: 24px;
  overflow: hidden;
  padding: 80px 40px;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 16, 32, 0.95) 0%, rgba(10, 43, 94, 0.8) 100%);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 10;
  color: var(--white);
}

.banner-content h2 { color: var(--white); font-size: 3rem; margin-bottom: 24px; }
.banner-content p { font-size: 1.25rem; color: #cbd5e1; max-width: 600px; margin: 0 auto; }

/* ================= Footer ================= */
.footer { padding: 60px 0; background: var(--text-dark); color: var(--text-light); }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px; }
.footer-brand p { max-width: 300px; font-size: 0.9rem; margin-top: 16px; margin-bottom: 0; }
.footer-logo { max-height: 48px; opacity: 0.8; }
.footer-links p { margin: 0; font-size: 0.9rem; }

/* ================= Animations ================= */
.pulse-glow { animation: pulse-glow 2.5s infinite; }
@keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(0, 136, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0); } }

[data-animate] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-title { max-width: 800px; margin-left: auto; margin-right: auto; }
  .hero-subtitle { max-width: 800px; margin-left: auto; margin-right: auto; }
  .hero-features { justify-content: center; }
  .form-card.glass { margin: 0 auto; max-width: 600px; text-align: left; }
  
  .benefits-layout { grid-template-columns: 1fr; gap: 56px; }
  .benefits-image { order: -1; max-width: 600px; margin: 0 auto; }
  .floating-card.top-right { right: 20px; bottom: -20px; }
  
  .authority-grid { grid-template-columns: 1fr; }
  .authority-bg { width: 100%; mask-image: linear-gradient(to bottom, transparent, black); -webkit-mask-image: linear-gradient(to bottom, transparent, black); }
  
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .faq-layout { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; }
  .hero-title { font-size: 2.25rem; }
  
  .benefits, .authority, .steps, .faq-section { padding: 80px 0; }
  
  .banner-content h2 { font-size: 2.25rem; }
  .final-cta-banner { padding: 60px 24px; }
  
  .footer-container { flex-direction: column; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
}
