@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #111111;
  --dark-bg: #1a1a1a;
  --dark-card: #222222;
  --yellow: #FFC10D;
  --yellow-hover: #E5AD0C;
  --orange: #f36e21;
  --orange-hover: #d15615;
  --brand-gradient: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  --brand-gradient-hover: linear-gradient(135deg, var(--yellow-hover) 0%, var(--orange-hover) 100%);
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-gray: #b0b0b0;
  --text-dark: #333333;
  --brand-blue: #00396b;
  --brand-blue-hover: #002a50;
  --font: 'Montserrat', sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-yellow {
  background: var(--brand-gradient);
  color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-yellow:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 110, 33, 0.35);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  padding: 18px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
  border-bottom: 6px solid var(--brand-blue);
}

.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo {
  height: 24px;
  width: auto;
  transition: var(--transition);
}

.header-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.header-separator {
  width: 1px;
  height: 24px;
  background: #e0e0e0;
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 5px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  white-space: nowrap;
}

.btn-header-blue {
  background: var(--brand-blue);
  color: var(--white);
  border: 1px solid var(--brand-blue);
}

.btn-header-blue:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 57, 107, 0.25);
}

.btn-header-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-header-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 0;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.marked-text {
  position: relative;
  display: inline-block;
  padding: 0 10px;
  color: var(--white);
}

.marked-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 49%; /* Shift slightly left */
  width: 110%; /* Slightly narrower to clear the T */
  height: 160%;
  transform: translate(-50%, -50%) rotate(-1deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 150' preserveAspectRatio='none'%3E%3Cpath d='M7.7,85.2c0,0,11.7-72.2,255.4-80.4c0,0,223.7-12.7,232,78.2c0,0,1,64.2-255.4,59.2c0,0-234.3-3.2-228.4-61' fill='none' stroke='%2300396b' stroke-width='3' stroke-linecap='round' /%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Square dot for "i" in Axion */
.square-i {
  position: relative;
  display: inline-block;
}

.square-i::before {
  content: "";
  position: absolute;
  top: 0.12em; /* Position where the dot usually is */
  left: 50%;
  width: 0.18em;
  height: 0.18em;
  background-color: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Match text shadow depth */
}



.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-highlight {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.hero-cta-area {
  margin-top: 10px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

/* Blue Button Style */
.btn-blue {
  background: var(--brand-blue);
  color: var(--white);
  border: 1px solid var(--brand-blue);
}

.btn-blue:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  box-shadow: 0 8px 25px rgba(0, 57, 107, 0.3);
  color: var(--white);
  transform: translateY(-2px);
}

/* Specific Hero CTA override */
#cta-hero {
  /* Inherits from .btn-blue if we add it in HTML, but keeping specific for now */
}

.hero-cta-area .btn {
  font-size: 1rem;
  padding: 16px 30px;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 25px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

.hero-credit {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* ===== INTEGRATED SOLUTION SECTION ===== */
.integrated-section {
  padding: 100px 0;
  background: var(--white);
}

.integrated-heading {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--black);
  max-width: 700px;
  margin-bottom: 50px;
}

.integrated-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.integrated-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* ===== WHY THIS PACKAGE WORKS ===== */
.why-section {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
}

.why-section .section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 57, 107, 0.4);
}

.why-card-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
}

.why-card-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}

/* ===== AT40 PERFORMANCE ===== */
.performance-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.performance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.performance-bg picture,
.performance-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performance-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.82);
}

.performance-content {
  position: relative;
  z-index: 2;
}

.performance-label {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.performance-specs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 40px;
}

.spec-item {
  font-size: 1rem;
  font-weight: 700;
}

.key-specs-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.key-specs-list {
  margin-bottom: 40px;
}

.key-specs-list li {
  font-size: 1.05rem;
  padding: 6px 0;
  color: var(--text-gray);
}

.key-specs-list li::before {
  content: '';
  display: none;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
  background: var(--dark-bg);
  text-align: center;
  color: var(--white);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  font-style: normal;
  margin-bottom: 30px;
}

.pricing-details {
  max-width: 700px;
  margin: 0 auto 40px;
}

.pricing-details p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== ADD-ONS & ROI ===== */
.addons-roi-section {
  padding: 80px 0;
  background: var(--white);
}

.addons-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}

.addons-roi-grid::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #ddd;
  transform: translateX(-50%);
}

.addons-title,
.roi-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--black);
}

.addons-subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #555;
}

.addons-list li,
.roi-list li {
  font-size: 1.05rem;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #444;
}

.addons-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

.roi-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.quote-card {
  background: var(--brand-blue);
  border-radius: 40px;
  padding: 80px 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow for the dark card */
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border instead of dark */
  transition: transform 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-5px);
}

.quote-banner-text {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.quote-banner-text .highlight {
  color: var(--white); /* Changed from orange to white */
  display: inline-block;
  background: transparent;
  padding: 0;
}

.quote-banner-subtext {
  font-size: 1.35rem;
  color: var(--text-gray);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .quote-banner {
    padding: 60px 0;
    margin: 0 15px;
  }
  
  .quote-card {
    border-radius: 25px;
    padding: 50px 20px;
  }
  
  .quote-banner-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .quote-banner-subtext {
    font-size: 1.1rem;
  }
  
  .quote-banner-text br {
    display: inline;
  }
}

/* ===== VIDEO / CTA SECTION ===== */
.video-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 40px;
}

.video-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.video-buttons .btn {
  text-align: center;
}

.video-buttons .btn-yellow {
  font-size: 1rem;
}

.video-buttons .btn-dark {
  border-color: var(--black);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  padding: 100px 0;
  background: var(--dark-bg);
  text-align: center;
  color: var(--white);
  border-top: 1px solid var(--border-subtle);
}

.final-cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--white);
  opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--dark-bg);
  color: var(--white);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.footer-logo {
  height: 35px;
  width: auto;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
}

.footer-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

.footer-col ul li a.active {
  color: var(--yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* ===== MODAL / POPUP ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 95%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

/* Custom Modal Scrollbar */
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--brand-blue) !important;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-hover) !important;
}

.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  margin: 10px 0;
}

.modal::-webkit-scrollbar-thumb {
  background: var(--brand-blue) !important;
  border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-hover) !important;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: var(--dark-bg);
  color: var(--white);
  padding: 30px 35px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 6px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  padding: 24px 35px 8px;
  /* Reduced bottom padding */
  gap: 10px;
  /* Slight gap increase */
  background: var(--light-gray);
}

.progress-step {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.progress-step.active {
  background: var(--brand-blue);
}

.progress-step.completed {
  background: var(--brand-blue);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 15px;
  /* Match horizontal padding of bar */
  background: var(--light-gray);
}

.progress-label {
  flex: 1;
  text-align: center;
  font-size: 0.70rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.progress-label.active {
  color: var(--black);
}

/* Form Steps */
.modal-body {
  padding: 30px 35px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #E74C3C;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 57, 107, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #E74C3C;
}

.form-group .error-message {
  font-size: 0.78rem;
  color: #E74C3C;
  margin-top: 6px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Navigation */
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px 30px;
  gap: 12px;
}

.btn-back {
  padding: 14px 28px;
  border: 2px solid #e0e0e0;
  background: transparent;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-next,
.btn-submit {
  padding: 14px 36px;
  background: var(--brand-blue);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 57, 107, 0.3);
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 50px 35px;
}

.form-success.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: #fff;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* === NEW FORM ELEMENTS STYLES === */
.alert-info {
  background-color: rgba(0, 57, 107, 0.05);
  border-left: 4px solid var(--brand-blue);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  border-radius: 0 4px 4px 0;
}

.sub-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 25px 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  color: var(--black);
}

.radio-group,
.checkbox-group {
  margin-bottom: 20px;
}

.radio-options {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-options.vertical {
  flex-direction: column;
  gap: 12px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-dark);
}

.radio-label input,
.checkbox-label input {
  margin-top: 3px;
  accent-color: var(--brand-blue);
  width: 16px;
  height: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.help-text {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.ownership-warning {
  font-size: 0.8rem;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  padding: 10px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
}

/* Review Panels */
.review-panel {
  background: var(--light-gray);
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.review-panel-header {
  background: #f0f0f0;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.review-panel-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--black);
}

.edit-btn {
  font-size: 0.8rem;
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: underline;
}

.edit-btn:hover {
  filter: brightness(0.9);
}

.review-panel-body {
  padding: 16px;
}

.review-panel-body p {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: #444;
  line-height: 1.4;
}

.bold-text {
  font-weight: 700;
  color: var(--black) !important;
}

.terms-box {
  background: #fafafa;
  border: 1px dashed #ccc;
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
}

.terms-box h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.terms-box p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.terms-radio {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.form-success p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .performance-specs-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .header-logo {
    height: 20px;
  }

  .header-left {
    gap: 12px;
  }

  .header-separator {
    height: 18px;
  }

  .header-right {
    gap: 8px;
  }

  .btn-header {
    padding: 8px 12px;
    font-size: 0.65rem;
    border-radius: 4px;
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Header height */
    padding-bottom: 20px;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-title {
    font-size: 2rem;
    white-space: normal;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-highlight {
    font-size: 0.95rem;
  }

  .hero-cta-area .btn {
    font-size: 0.85rem;
    padding: 16px 20px;
    white-space: nowrap;
  }

  .integrated-section {
    padding: 60px 0;
  }

  .integrated-heading {
    font-size: 1.5rem;
  }

  .integrated-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .performance-specs-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .addons-roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .addons-roi-grid::after {
    display: none;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    width: 95%;
    margin: 10px;
  }

  .modal-body,
  .modal-footer,
  .progress-bar,
  .progress-labels {
    padding-left: 24px;
    padding-right: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-banner {
    padding: 30px 0;
  }

  .quote-banner-text {
    font-size: 1.3rem;
  }

  .pricing-amount {
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }

  .pricing-price {
    display: block;
  }

  .CIT-row {
    flex-direction: column;
  }
}


/* ===== DETAILS LINK ===== */
.details-link-wrapper {
  margin-top: 10px;
}

.details-link {
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.details-link:hover {
  opacity: 1;
  color: var(--yellow);
}

.pricing-section .details-link:hover {
  color: var(--yellow);
}

/* ===== CIT MODAL STYLES ===== */
.details-modal {
  max-width: 750px;
  background: #fdfdfd;
}

.CIT-modal-dialog {
  color: #333;
}

.CIT-modal-dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 35px;
  border-bottom: 1px solid #eee;
}

.CIT-header-text {
  text-align: left;
}

.CIT-dialog--title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.CIT-dialog--subtitle {
  font-size: 0.95rem;
  color: #666;
}

.CIT-close-dialog {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.CIT-close-dialog:hover {
  color: #333;
}

.CIT-modal-dialog__body {
  padding: 35px;
}

.CIT-dialog--title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.CIT-modal-dialog--title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.CIT-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.CIT-column--4 {
  flex: 1;
  min-width: 200px;
}

.CIT-step {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #eee;
}

.CIT-step--img {
  margin-bottom: 15px;
}

.CIT-step--img svg {
  width: 48px;
  height: 48px;
}

.CIT-text {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: #444;
}

.CIT-modal-text {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 0.8rem;
  color: #777;
  line-height: 1.8;
}

.CIT-modal-text p {
  margin-bottom: 15px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
  }

  .hero-bg img {
    object-position: center center;
  }

  .why-section .section-title {
    font-size: 1.5rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }

  .video-info h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .performance-specs-row {
    grid-template-columns: 1fr;
  }

  .header .container {
    padding: 0 10px;
    gap: 5px;
  }

  .header-left {
    gap: 8px;
  }

  .header-logo {
    height: 16px;
  }

  .footer-logo {
    height: 20px;
  }

  .header-separator {
    height: 16px;
  }

  .video-buttons {
    align-items: stretch;
  }

  .video-buttons .btn,
  #cta-pricing,
  #final-cta .btn {
    font-size: 0.8rem;
    padding: 14px 20px;
    white-space: nowrap;
  }

  .pricing-amount {
    font-size: 1.8rem;
  }

  .final-cta-title {
    font-size: 1.8rem;
  }

  .final-cta-subtitle {
    font-size: 1.2rem;
  }

  .quote-banner {
    padding: 20px 0;
  }
}