/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #111111;
  --dark-bg: #1a1a1a;
  --dark-card: #222222;
  --yellow: #FFC10D;
  --yellow-hover: #E5AD0C;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --orange: #f36e21;
  --text-gray: #b0b0b0;
  --text-dark: #333333;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --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 24px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245, 166, 35, 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-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .btn-sm {
    padding: 6px 8px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-width: 1px;
    border-radius: 4px;
  }
}

/* ===== HEADER ===== */
.header {
  background: var(--dark-bg);
  padding: 18px 0;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
  .header {
    padding: 12px 0;
  }
}

.header .container.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-logo { height: 28px; width: auto; }

@media (max-width: 480px) {
  .header-actions {
    gap: 6px;
  }
  .header-logo {
    height: 18px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #000;
  color: var(--white);
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px; /* header height */
  box-sizing: border-box;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.hero-left {
  flex: 0 0 100%;
  max-width: 850px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.6;
  color: var(--white);
}

.hero-cta-area { 
  margin-bottom: 18px; 
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-area .btn { font-size: 1rem; padding: 18px 44px; }

.hero-credit-top {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 5px;
}

.hero-credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ===== INTEGRATED / STOP WAITING ===== */
.integrated-section {
  padding: 100px 0;
  background: var(--white);
}

.integrated-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  text-align: center;
  margin-bottom: 28px;
}

.integrated-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.integrated-body {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.9;
  color: #222;
}

/* ===== WHY THIS PACKAGE ===== */
.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(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245,166,35,0.1);
}

.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); }

/* ===== ATF40 PERFORMANCE ===== */
.performance-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.performance-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background: #111;
}

.performance-bg picture, .performance-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.performance-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.78);
}

.performance-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.performance-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 48px;
  line-height: 1.15;
}

.performance-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.performance-col-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
}

.key-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-specs-list li {
  font-size: 1rem;
  padding: 7px 0;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.key-specs-list li:last-child { border-bottom: none; }

.built-for-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}
.built-for-list li {
  font-size: 1rem;
  padding: 7px 0;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.built-for-list li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 0;
  background: var(--dark-bg);
  text-align: center;
  color: var(--white);
}

.pricing-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.pricing-price { color: var(--yellow); }

.pricing-tier {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.pricing-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.pricing-cell:hover {
  border-color: rgba(255,193,13,0.5);
  background: rgba(255,193,13,0.05);
}

.pricing-cell.featured {
  border-color: var(--yellow);
  background: rgba(255,193,13,0.08);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-term {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
}

.pricing-amount {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-cell.featured .pricing-amount { color: var(--yellow); }

.pricing-mo {
  font-size: 10px;
  color: var(--text-gray);
}

.pricing-details {
  max-width: 700px;
  margin: 0 auto 40px;
}

.pricing-details p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== ROI ===== */
.addons-roi-section {
  padding: 80px 0;
  background: var(--white);
}

.roi-full { max-width: 700px; }

.roi-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--black);
  line-height: 1.3;
}

.roi-list li {
  font-size: 1.1rem;
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.roi-list li::before {
  content: '&#x2714;';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  padding: 60px 0;
  background: var(--black);
  text-align: center;
}

.quote-banner-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== ROI + VIDEO SECTION ===== */
.roi-video-section {
  padding: 90px 0;
  background: var(--white);
}

.roi-video-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.roi-video-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 32px;
}

.roi-video-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 2;
}

.roi-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.roi-video-embed iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

/* ===== COMPARISON + SLOTS ===== */
.comparison-slots-section {
  padding: 80px 0;
  background: #000;
  text-align: center;
  color: var(--white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

.comparison-box {
  border-radius: 16px;
  padding: 40px 44px;
  text-align: left;
}

.comparison-box--bad {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.comparison-box--good {
  border: 1px solid rgba(255,193,13,0.35);
  background: rgba(255,193,13,0.05);
}

.comparison-box-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.comparison-col-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 28px;
}

.comparison-highlight { color: var(--yellow); }

.comparison-bad-list {
  list-style: none;
  padding: 0; margin: 0;
}
.comparison-bad-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comparison-bad-list li::before {
  content: '✕';
  color: #e74c3c;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.comparison-good-list {
  list-style: none;
  padding: 0; margin: 0;
}
.comparison-good-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comparison-good-list li::before {
  content: none;
}

.comparison-good-list li .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.slots-inner {
  max-width: 700px;
  margin: 0 auto;
}

.slots-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.slots-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  padding: 80px 0;
  background: var(--white);
}

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

.final-cta-image {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.final-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.final-cta-content {
  text-align: left;
}

.final-cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: #444;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--dark-bg);
  color: var(--white);
  border-top: 1px solid var(--border-subtle);
}

.footer-grid { margin-bottom: 50px; text-align: center; }

.footer-logo { height: 35px; width: auto; margin: 0 auto 25px; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-gray);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ===== MODAL ===== */
.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);
}

.modal::-webkit-scrollbar { width: 8px; }
.modal::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.modal::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 10px; }

.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 {
  display: flex;
  align-items: center;
  padding: 24px 35px 8px;
  gap: 10px;
  background: var(--light-gray);
}

.progress-step {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 4px;
  transition: var(--transition);
}

.progress-step.active, .progress-step.completed { background: var(--yellow); }

.progress-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 15px;
  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); }

.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 { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.form-group input::placeholder { color: #aaa; }
.form-group.error input, .form-group.error select { 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; }

.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(--yellow);
  color: var(--black);
  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(--yellow-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.3); }

.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: linear-gradient(135deg, var(--yellow), #f0c040);
  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; }
.form-success p { color: #666; font-size: 1rem; line-height: 1.6; max-width: 380px; margin: 0 auto; }

.alert-info {
  background-color: rgba(245,166,35,0.1);
  border-left: 4px solid var(--yellow);
  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(--yellow); 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-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(--yellow); font-weight: 600; text-decoration: underline; }
.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; }

/* ===== 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 { color: var(--text-gray); }
.pricing-section .details-link:hover { color: var(--yellow); }

/* ===== CIT MODAL ===== */
.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-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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .performance-cols { gap: 40px; }
  .pricing-table { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero { 
    height: 100svh; 
    min-height: 600px; 
    display: flex;
    align-items: center; 
    padding-top: 140px; 
    padding-bottom: 100px; 
  }
  .hero-inner { 
    flex-direction: column; 
    padding: 0 24px; 
    height: auto; 
    align-items: center; 
    text-align: center;
  }
  .hero-left { flex: none; width: 100%; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
  .hero-cta-area .btn { font-size: 0.85rem; padding: 14px 28px; }
  .integrated-section { padding: 60px 0; }
  .integrated-heading { font-size: 1.8rem; }
  .integrated-grid { grid-template-columns: 1fr; gap: 30px; }
  .performance-title { font-size: 2rem; margin-bottom: 32px; text-align: center; }
  .performance-cols { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .performance-col-heading { text-align: center; }
  .built-for-list li { justify-content: center; }
  .performance-col .btn { margin: 0 auto; display: table; }
  .pricing-table { grid-template-columns: repeat(2, 1fr); }
  .roi-video-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .roi-video-title { font-size: 2rem; }
  .slots-title { font-size: 1.8rem; }
  .comparison-grid { grid-template-columns: 1fr; margin-bottom: 56px; }
  .comparison-box { padding: 28px 24px; }
  .comparison-box-heading { font-size: 1rem; }
  .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; }
  .roi-short-break { display: block; margin-top: 0; line-height: 1.4; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-inner { padding: 0 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .performance-specs-row { grid-template-columns: 1fr; }
  .pricing-table { grid-template-columns: repeat(2, 1fr); }
  .pricing-amount { font-size: 1.5rem; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .final-cta-content { text-align: center; }
  .final-cta-title { font-size: 2rem; }
  .final-cta-subtitle { font-size: 1rem; }
  .roi-video-title { font-size: 1.6rem; }
}

/* ========== ESTILOS MODAL SIMPLE ========== */
#simpleQuoteModal .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: all 0.3s ease;
}

#simpleQuoteModal.active {
  opacity: 1; visibility: visible;
}

#simpleQuoteModal .modal {
  background: var(--white);
  border-radius: 20px;
  width: 95%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(30px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  padding: 0; /* Override potential global padding */
}

#simpleQuoteModal.active .modal { transform: translateY(0); }

#simpleQuoteModal .modal-header {
  background: var(--dark-bg); color: var(--white);
  padding: 30px 35px; border-radius: 20px 20px 0 0;
  position: relative;
}

#simpleQuoteModal .modal-header h2 { font-size: 1.4rem; margin: 0; color: var(--white); }
#simpleQuoteModal .modal-header p { font-size: 0.85rem; color: var(--text-gray); margin-top: 5px; }

#simpleQuoteModal .modal-close {
  position: absolute; top: 20px; right: 25px;
  background: none; border: none; color: var(--text-gray);
  font-size: 1.5rem; cursor: pointer;
  width: auto; height: auto; /* Reset global width/height */
}

/* Grid del Formulario */
.modal-row-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}

@media (max-width: 600px) {
  .modal-row-grid { grid-template-columns: 1fr; gap: 10px; }
}

.simple-modal-form-body .form-group { margin-bottom: 20px; text-align: left; }
.simple-modal-form-body .form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.simple-modal-form-body .form-group input, 
.simple-modal-form-body .form-group textarea {
  width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px;
  font-family: inherit; outline: none;
}

/* Botón y Éxito */
.btn-yellow-submit {
  width: 100%; background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--black); border: none; padding: 16px; border-radius: 8px;
  font-weight: 700; cursor: pointer; transition: 0.3s;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-yellow-submit:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(243, 110, 33, 0.3); }

.form-success-container { text-align: center; padding: 20px; }
.success-icon-circle {
  width: 60px; height: 60px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 15px; color: white; font-size: 2rem;
}
