header#masthead,footer#colophon {
    display: none;
}
/* =========================================
   CSS VARIABLES ĐỒNG BỘ THƯƠNG HIỆU KAFA
========================================= */
:root {
  --navy: #1c1917; /* Đen Cà phê */
  --mocha: #44403c; /* Nâu đất trầm */
  --coral: #d97706; /* Cam đất/Vàng Hổ phách */
  --coral-light: #fbbf24; /* Vàng sáng */
  --yellow: #fcd34d; /* Vàng tươi */
  --bg-gradient: linear-gradient(
    135deg,
    #f5f5f4 0%,
    #e7e5e4 100%
  ); /* Be sáng */
  --bg-gray: #fafaf9; /* Màu nền sáng nhẹ */
  --text-main: #292524;
  --text-light: #57534e;
  --border-color: #e7e5e4;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
}

/* =========================================
   SECTION 1: HERO KHỞI ĐẦU (FIXED DESIGN)
========================================= */
.hero-section {
  width: 100%;
  padding: 80px 0;
  min-height: 100vh;
  /* Nền Gradient màu Đào (Peach) giống design */
  background: linear-gradient(135deg, #FFF0E9 0%, #FFD6C9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

/* --- Cột Trái (Text) --- */
.hero-sub-title {
  font-size: 1.4rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 5px;
}
.hero-main-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}
.text-coral { color: #EA580C !important; }

/* Thẻ Badge bo tròn dưới text trái */
.hero-badge {
  display: inline-block;
  background: linear-gradient(to right, #FCD34D, #F97316); /* Vàng sang Cam */
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 50px;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- Hình Ảnh Chung Cô gái & Ly (Vị trí tuyệt đối) --- */
.hero-main-img {
      position: absolute;
    bottom: 0;
    left: 15%;
    transform: translateX(-50%);
    max-height: 61%;
    z-index: 5;
    pointer-events: none;
}

/* --- Cột Phải (Offer Box Thẳng Đứng) --- */
.hero-offer-col {
  position: relative;
  z-index: 10;
}
.offer-wrapper {
  position: relative;
  padding-right: 30px; /* Chừa không gian bên phải cho tờ giấy thò ra */
  padding-top: 30px; /* Chừa không gian bên trên cho tờ giấy thò ra */
}

/* Khối Box chính (Đứng thẳng) */
.hero-offer-box {
      background-color: #FFF4E8;
    border-radius: 20px;
    padding: 40px 30px;
    padding-right: 155px;
    position: relative;
    z-index: 2;
}

.offer-box-header {
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.offer-list-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer-list-item {
  background-color: #ffffff;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Hiệu ứng khi bị con chuột mô phỏng "click" */
.offer-list-item.active {
  background-color: var(--coral);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

/* Thẻ giấy (Đứng thẳng, lệch lên trên và sang phải) */
.paper-card {
      position: absolute;
    top: 0px;
    right: -110px;
    width: 260px;
    height: 280px;
    background-color: #ffffff;
    border-radius: 12px;
    z-index: 22222222;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.paper-content {
  position: relative;
  border-left: 2px solid #333;
  padding-left: 15px;
  height: 100%;
}
.paper-dot {
  position: absolute;
  left: -5px;
  top: 0;
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 50%;
}
.paper-content p {
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Nút CTA lớn */
.btn-hero-cta {
  background: linear-gradient(to right, #F97316, #EA580C);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-hero-cta:hover {
  background: linear-gradient(to right, #EA580C, #C2410C);
  color: #ffffff;
  transform: scale(1.05) translateY(-2px);
}

/* Con chuột mô phỏng */
.fake-cursor {
  position: absolute;
      top: 35%;
    left: 70%;
  z-index: 50;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
.fake-cursor.click-anim {
  transform: scale(0.7);
}
.fake-cursor svg path {
  fill: #fff;
  stroke: #1C1917;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section { min-height: auto; padding: 100px 0 60px 0; text-align: center; }
  .hero-main-title { font-size: 1.8rem; }
  .hero-sub-title { font-size: 1.2rem; }
  .hero-offer-col { margin-top: 40px; }
  .offer-wrapper { padding-right: 0; padding-top: 0; }
  .paper-card { display: none; } /* Ẩn giấy trên mobile */
  /* Ảnh gộp trên mobile nằm dưới cùng */
  .hero-main-img {
    position: relative;
    left: 0%;
    transform: translateX(-50%);
    max-height: 400px;
    margin-top: 30px;
  }
}
/* =========================================
   SECTION 2: FEATURES (VÌ SAO CHỌN KAFA - DẠNG ẢNH)
========================================= */
.kafa-section {
  padding: 100px 0;
  background-color: var(--navy); /* Nền Tối */
}
.kafa-section .title-custom {
  color: #ffffff;
}
.kafa-section .subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.kafa-section .badge-custom {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Layout Grid: Text & Image --- */
.feature-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Text rộng hơn một chút (55/45) */
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card.reverse-layout {
  grid-template-columns: 0.9fr 1.1fr; /* Đảo ngược tỷ lệ cho thẻ chẵn */
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--coral);
}

/* --- Phần Text (Nội dung) --- */
.card-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-number {
  color: var(--coral);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
  line-height: 1.3;
}
.card-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.card-desc strong {
  color: var(--coral);
}

.feature-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.feature-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.feature-items li .check {
  width: 28px;
  height: 28px;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.feature-items li:hover {
  transform: translateX(8px);
}
.feature-items li:hover .check {
  background-color: var(--coral);
  color: #fff;
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
}
.feature-items li:hover .text {
  color: var(--coral);
  font-weight: 700;
}

/* --- Phần Visual (Chứa Ảnh) --- */
.card-visual {
  position: relative;
  width: 100%;
  height: 100%;
  /* Bỏ padding để ảnh tràn viền thẻ */
  padding: 0;
  overflow: hidden;
}
.card-visual img {
  height: 500px;
  object-fit: cover;
}
/* CSS cho ảnh hiển thị tràn khung, không bị méo */
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

/* Hiệu ứng zoom nhẹ ảnh khi hover vào toàn bộ card */
.feature-card:hover .feature-img {
  transform: scale(1.05);
}

/* --- Responsive cho Mobile & Tablet --- */
@media (max-width: 992px) {
  .kafa-section {
    padding: 60px 0;
  }

  /* Đưa về layout 1 cột: Ảnh trên, Text dưới */
  .feature-card {
    display: flex;
    flex-direction: column-reverse; /* Text nằm dưới ảnh */
  }

  /* Thẻ reverse cũng đưa về cùng logic: Ảnh trên, text dưới */
  .feature-card.reverse-layout {
    flex-direction: column-reverse;
  }

  .card-content {
    padding: 40px;
  }

  /* Set chiều cao cố định cho ảnh trên mobile để không bị quá dài */
  .card-visual {
    height: 300px;
    min-height: 300px;
  }
}

/* =========================================
   SECTION 3: TARGET AUDIENCE (SÁNG)
========================================= */
.target-audience-section {
  padding: 100px 0;
  background-color: #ffffff; /* Sáng */
}

.target-card {
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.target-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(28, 25, 23, 0.08);
  background-color: #ffffff;
  border-color: rgba(217, 119, 6, 0.3);
}
.target-icon {
  width: 56px;
  height: 56px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--coral);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.target-card:hover .target-icon {
  background: var(--coral);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}
.target-title {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.target-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}
.target-line {
  height: 4px;
  background: linear-gradient(to right, var(--coral), #fbbf24);
  border-radius: 4px;
  width: 20%;
  margin-top: auto;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.target-card:hover .target-line {
  width: 100%;
}

/* =========================================
   SECTION 4: TIMELINE PROCESS (TỐI)
========================================= */
.process-section {
  padding: 100px 0;
  background: var(--mocha); /* Chuyển sang Tối (Màu Nâu đất) */
}
.process-section .title-custom {
  color: #ffffff;
}
.process-section .subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.process-section .badge-navy svg {
    position: relative;
    top: -2px;
}
.process-section .badge-navy {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  margin-right: 5px;
  width: auto;
}

.text-navy {
  color: var(--navy) !important;
}
.text-coral {
  color: var(--coral) !important;
}

/* Các hộp nhỏ vẫn sáng để dễ đọc */
.highlight-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.highlight-box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--coral);
  transform: translateY(-2px);
}
.box-title {
  font-weight: 700;
  margin-bottom: 4px;
}
.box-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.process-wrapper {
  position: relative;
  padding-top: 10px;
}
.floating-badge {
  position: absolute;
  top: -15px;
  right: -10px;
  background-color: #10b981;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
  z-index: 10;
}

.flow-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.flow-header {
  text-align: center;
  margin-bottom: 30px;
}
.flow-header-badge {
  display: inline-flex;
  background-color: rgba(28, 25, 23, 0.05);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-container {
  position: relative;
  padding-left: 20px;
}
.timeline-container::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 10px;
  bottom: 20px;
  width: 2px;
  background: #e7e5e4;
  z-index: 1;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 2px solid #e7e5e4;
  color: #a8a29e;
  transition: all 0.3s ease;
}
.timeline-content {
  flex: 1;
  padding-top: 4px;
}
.step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

.step-done .timeline-icon {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
}
.step-done .step-title {
  color: var(--text-light);
}
.step-active {
  background: rgba(217, 119, 6, 0.03);
  padding: 12px;
  border-radius: 12px;
  margin-left: -12px;
  border: 1px solid rgba(217, 119, 6, 0.1);
}
.step-active .timeline-icon {
  background-color: var(--coral);
  border-color: var(--coral);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2);
  margin-left: 0px;
}
.step-active .step-title {
  font-size: 1.05rem;
}
.step-pending .timeline-icon {
  background-color: #fafaf9;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.icon-pulse {
  animation: pulse 2s infinite;
}
.pulse-active {
  animation: pulse 1.5s infinite;
}

/* =========================================
   SECTION 5: ƯU ĐÃI (SÁNG)
========================================= */
.offer-section {
  padding: 100px 0 120px 0;
  background-color: var(--bg-gray); /* Chuyển sang nền Sáng */
  color: var(--text-main);
}
/* Ghi đè class text-white có sẵn trong HTML để chữ hiển thị trên nền sáng */
.offer-section .title-large.text-white {
  color: var(--navy) !important;
}
.offer-section .text-white-50 {
  color: var(--text-light) !important;
}

.badge-offer {
  background: rgba(217, 119, 6, 0.1);
  color: var(--coral);
  border: 1px solid rgba(217, 119, 6, 0.2);
  padding: 5px 25px;
  border-radius: 30px;
  font-size: 12px;
  display: inline-block;
}
.title-large {
  font-size: 3rem;
  line-height: 1.2;
}
.text-yellow {
  color: var(--coral);
} /* Đổi vàng thành cam trên nền sáng cho dễ đọc */

.offer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premium-card {
  border-color: rgba(217, 119, 6, 0.3);
  position: relative;
  overflow: hidden;
}
.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to right, var(--coral), #fbbf24);
  border-radius: 20px 20px 0 0;
}
.premium-card:hover {
  border-color: var(--coral);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.15);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-gray);
  color: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}
.premium-card .card-icon {
  background: rgba(217, 119, 6, 0.1);
  color: var(--coral);
}
.offer-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-val {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.card-heading {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}
.card-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 30px rgba(217, 119, 6, 0.4) !important;
}

/* Pattern mờ màu tối để hiển thị trên nền sáng */
.pattern-bg {
  background-image: radial-gradient(var(--navy) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.05;
}

/* =========================================
   SECTION 6: FINAL CTA & FORM (TỐI)
========================================= */
.final-cta-section {
  padding: 120px 0 100px 0;
  background: linear-gradient(
    135deg,
    #1c1917 0%,
    var(--navy) 100%
  ); /* Giữ Tối để kết thúc ấn tượng */
}

.title-xl {
  font-size: 2.75rem;
  line-height: 1.25;
}
.title-xl .italic {
  display: block;
  margin-top: 8px;
  font-size: 3.2rem;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.form-card .wpcf7-form input {
  height: 39px;
    border-radius: 5px;
    border: 1px solid #e7e5e4;
    background-color: #fafaf9 !important;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--text-main) !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}
.form-card .wpcf7-form .custom-input::placeholder {
  color: #a8a29e;
}
.form-card .wpcf7-form .custom-input:focus {
  background-color: #ffffff;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
  outline: none;
}
.form-card .wpcf7-form .custom-select {
      color: #a8a29e;
    cursor: pointer;
    background: #fafaf9 !important;
    appearance: none;
}
.form-card .wpcf7-form  .custom-select:focus {
  color: var(--text-main);
}

.btn-submit {
  height: 60px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 16px;
  text-transform: uppercase;
}
.btn-submit:hover {
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
  transform: translateY(-2px);
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #a8a29e;
  font-size: 0.8rem;
}
.bg-pattern-overlay {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* =========================================
   RESPONSIVE (Mobile Breakpoints)
========================================= */
@media (max-width: 1300px) {
  .offer-list-item{
    font-size: 0.75rem;
  }
  .hero-section{
        padding: 50px 0;
  }

}
@media (max-width: 992px) {
  .hero-section {
    padding: 3rem 0;
    display: block;
    text-align: center;
  }
  .hero-offer-box{
        padding-right: 30px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-visual {
    transform: scale(0.9);
    margin-top: 2rem;
  }
  .quiz-box {
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
  }
  .profile-card {
    right: 0;
    transform: translateX(10px);
  }
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card.reverse-layout .card-visual {
    order: -1;
  }
  .target-audience-section,
  .process-section,
  .offer-section {
    padding: 60px 0;
  }
  .floating-badge {
    right: 10px;
  }
  .timeline-container::before {
    left: 16px;
  }
  .timeline-item {
    gap: 12px;
  }
  .timeline-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .step-active {
    margin-left: 0;
    padding: 12px 0 12px 12px;
  }
  .title-large {
    font-size: 2.2rem;
  }
  .card-val {
    font-size: 1.8rem;
  }
  .title-xl {
    font-size: 2.2rem;
  }
  .title-xl .italic {
    font-size: 2.4rem;
  }
  .form-card {
    padding: 32px 24px;
  }
  .final-cta-section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-badge {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }
}
