/* ============================================
   IBT TOPIK - Home Page Styles
   ============================================ */

/* ========== HERO ========== */
.hero {
  padding-top: 72px;
  position: relative;
  background: var(--gray-900);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-inner {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-cta-primary,
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.hero-cta-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.hero-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta-secondary:hover {
  background: white;
  color: var(--gray-900);
  border-color: white;
}

.hero-cta svg {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 40px;
  font-weight: 800;
  color: white;
}

.hero-stat-value span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* ========== FEATURES ========== */
.features {
  background: white;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--success) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  padding: 48px 40px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-item:nth-child(2)::before {
  background: var(--accent);
}

.feature-item:nth-child(3)::before {
  background: var(--success);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--gray-100);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.feature-item:nth-child(2) .feature-icon {
  background: var(--accent);
}

.feature-item:nth-child(3) .feature-icon {
  background: var(--success);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== FREE TRIAL ========== */
.free-trial {
  background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
  position: relative;
}

.free-trial-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.free-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--success);
  color: white;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border-radius: 4px;
}

.free-trial-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.free-trial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.free-trial-card {
  background: white;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.free-trial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--success);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.free-trial-card:hover {
  border-color: var(--success);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.15);
}

.free-trial-card:hover::after {
  transform: scaleX(1);
}

.free-trial-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.free-trial-card-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.free-trial-card-badge {
  padding: 6px 12px;
  background: var(--success-light);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
}

.free-trial-card-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.free-trial-card-year {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.free-trial-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.free-trial-card-btn {
  width: 100%;
  padding: 16px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.free-trial-card:hover .free-trial-card-btn {
  background: var(--success);
  color: white;
}

.free-trial-card.topik2::after {
  background: var(--accent);
}

.free-trial-card.topik2:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.free-trial-card.topik2:hover .free-trial-card-btn {
  background: var(--accent) !important;
  color: white !important;
}

.free-trial-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-300);
}

.free-trial-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

.free-trial-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-trial-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--gray-900);
  color: white;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.products::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
}

.products .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.products .section-label::before {
  background: rgba(255, 255, 255, 0.5);
}

.products .section-title {
  color: white;
}

.products .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 48px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.product-card.featured {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.1);
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.product-card-tag {
  position: absolute;
  top: -1px;
  right: 32px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.product-card-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border-radius: 4px;
}

.product-card.featured .product-card-badge {
  background: var(--primary);
  color: white;
}

.product-card-name {
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.product-card-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.product-card-price {
  text-align: right;
}

.product-card-price-value {
  font-size: 40px;
  font-weight: 800;
  color: white;
}

.product-card-price-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.product-card-features {
  margin-bottom: 36px;
}

.product-card-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-feature:last-child {
  border-bottom: none;
}

.product-card-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.product-card.featured .product-card-feature svg {
  stroke: var(--accent);
}

.product-card-btn {
  width: 100%;
  padding: 18px;
  background: white;
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  display: block;
  text-align: center;
}

.product-card-btn:hover {
  background: var(--primary);
  color: white;
}

.product-card.featured .product-card-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: white;
}

.product-card.featured .product-card-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ========== REPORT ========== */
.report {
  background: white;
  position: relative;
  overflow: hidden;
}

.report::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: var(--gray-100);
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.report-content {
  padding-right: 40px;
}

.report-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.report-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.report-list-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
  transform: translateX(8px);
}

.report-list-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.report-list-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.report-list-desc {
  font-size: 14px;
  color: var(--gray-500);
}

.report-card {
  background: white;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 28px;
}

.report-card-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.report-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 8px;
}

.report-card-badge {
  padding: 8px 16px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

.report-card-score {
  background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.report-card-score-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}

.report-card-score-label {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 600;
}

.report-card-score-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
}

.report-card-score-value span {
  font-size: 24px;
  color: var(--gray-400);
}

.report-card-progress {
  width: 100%;
  height: 12px;
  background: var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
}

.report-card-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #ea580c 100%);
  transition: width 1s ease;
}

.report-card-areas {
  margin-bottom: 28px;
}

.report-card-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}

.report-card-area:last-child {
  border-bottom: none;
}

.report-card-area-label {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 600;
}

.report-card-area-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.report-card-area-progress {
  width: 140px;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.report-card-area-progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 1s ease;
}

.report-card-area-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  width: 60px;
  text-align: right;
}

.report-card-weak {
  padding-top: 24px;
  border-top: 2px solid var(--gray-100);
}

.report-card-weak-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

.report-card-weak-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-card-weak-tag {
  padding: 8px 16px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* 한국 전통 격자 문양 패턴 */
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    /* 사선 격자 */
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(212, 175, 55, 0.03) 30px,
      rgba(212, 175, 55, 0.03) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(212, 175, 55, 0.03) 30px,
      rgba(212, 175, 55, 0.03) 31px
    ),
    /* 수직/수평 격자 */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(212, 175, 55, 0.02) 60px,
      rgba(212, 175, 55, 0.02) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(212, 175, 55, 0.02) 60px,
      rgba(212, 175, 55, 0.02) 61px
    );
  pointer-events: none;
}

/* 코너 장식 - 전통 문양 느낌 */
.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* 상단 좌우 빛 효과 */
    radial-gradient(ellipse 600px 200px at 0% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 200px at 100% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
    /* 하단 중앙 빛 효과 */
    radial-gradient(ellipse 800px 300px at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  border: none;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e5c347 0%, #d4af37 100%);
}

.cta-btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 2px solid rgba(212, 175, 55, 0.5);
}

.cta-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #e5c347;
  border-color: #d4af37;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .free-trial-grid {
    grid-template-columns: 1fr;
  }
  .free-trial-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 32px;
  }
  .product-card-header {
    flex-direction: column;
    gap: 16px;
  }
  .product-card-price {
    text-align: left;
  }
  .report::before {
    display: none;
  }
  .report-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .report-content {
    padding-right: 0;
  }
  .report-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding: 60px 0 80px;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-desc {
    font-size: 18px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: auto;
    padding: 16px 28px;
    font-size: 15px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 32px;
  }
  .hero-stat-value {
    font-size: 32px;
  }
  .hero-stat-divider {
    display: none;
  }
  .cta {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 40px 0 60px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 14px 20px;
    font-size: 14px;
  }
  .hero-stat-value {
    font-size: 26px;
  }
  .hero-stats {
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
  }
  .free-trial-card {
    padding: 24px;
  }
  .free-trial-card-title {
    font-size: 28px;
  }
  .free-trial-card-btn {
    padding: 12px;
    font-size: 14px;
  }
  .free-trial-features {
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
  }
  .free-trial-feature {
    font-size: 13px;
  }
  .cta {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 26px;
  }
  .cta-desc {
    font-size: 15px;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
}
