/* ===================================
   LaLa GLOBAL LANGUAGE - 推し活LP
   CSS Styles
   =================================== */

/* CSS Variables */
:root {
  --primary: #FF6B9D;
  --primary-light: #FF8FB3;
  --primary-dark: #E55A89;
  --secondary: #4ECDC4;
  --secondary-light: #7EDDD6;
  --accent: #FFE66D;
  --accent-light: #FFF0A3;
  --text: #2C3E50;
  --text-light: #5D6D7E;
  --white: #FFFFFF;
  --bg-light: #FFF5F8;
  --bg-section: #FAFAFA;
  --shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
  --shadow-hover: 0 8px 30px rgba(255, 107, 157, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 50px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

.title-accent {
  color: var(--primary);
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.logo:hover .logo-img {
  opacity: 0.8;
}

.header-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-problems {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.problem-icon {
  font-size: 1.25rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius);
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-heart {
  top: -5%;
  left: -5%;
  color: var(--primary);
  animation-delay: 0s;
}

.icon-star {
  top: -10%;
  right: 10%;
  color: var(--accent);
  animation-delay: 0.5s;
}

.icon-music {
  bottom: 10%;
  left: -10%;
  color: var(--secondary);
  animation-delay: 1s;
}

.icon-globe {
  bottom: -5%;
  right: -5%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cta-button:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cta-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

.cta-large {
  padding: 20px 48px;
  font-size: 1.125rem;
}

.cta-final {
  padding: 24px 56px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* ===================================
   Affinity Section
   =================================== */
.affinity {
  padding: 100px 0;
  background: var(--white);
}

.affinity-content {
  text-align: center;
}

.affinity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 3rem 0;
}

.affinity-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.affinity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.affinity-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.affinity-message {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.text-primary {
  color: var(--primary);
  font-weight: 700;
}

/* ===================================
   Solution Section
   =================================== */
.solution {
  padding: 100px 0;
  background: var(--bg-light);
}

.solution-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solution-intro {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.feature-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-light);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-tag {
  padding: 6px 14px;
  background: var(--bg-light);
  font-size: 0.8125rem;
  border-radius: var(--radius-full);
  color: var(--text);
}

.feature-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===================================
   Benefit Section
   =================================== */
.benefit {
  padding: 100px 0;
  background: var(--white);
}

.benefit-header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefit-intro {
  font-size: 1.125rem;
  color: var(--text-light);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 4rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  border-radius: var(--radius);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Before After */
.before-after {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 3rem;
}

.ba-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ba-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.ba-before, .ba-after {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.ba-before {
  background: var(--white);
  border: 2px dashed #ddd;
}

.ba-after {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
}

.ba-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ba-before .ba-label {
  color: var(--text-light);
}

.ba-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

/* ===================================
   Evidence Section
   =================================== */
.evidence {
  padding: 100px 0;
  background: var(--bg-section);
}

.evidence-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}

.stars {
  color: var(--accent);
  font-size: 1.5rem;
}

.rating-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-lang {
  font-size: 0.8125rem;
  color: var(--primary);
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.result-label {
  padding: 4px 10px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.result-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* ===================================
   Contents Section
   =================================== */
.contents {
  padding: 100px 0;
  background: var(--white);
}

.contents-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lesson-types {
  margin-bottom: 4rem;
}

.type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.type-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.type-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.type-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.type-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.type-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 6px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.type-badge.popular {
  background: var(--accent);
  color: var(--text);
}

/* Pricing */
.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--bg-section);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.price-card.recommended {
  border-color: var(--primary);
  transform: scale(1.05);
}

.price-card.recommended:hover {
  transform: scale(1.08);
}

.price-header {
  padding: 1.5rem;
  background: var(--bg-light);
  text-align: center;
}

.price-card.recommended .price-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.plan-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-sub {
  font-size: 0.875rem;
  opacity: 0.8;
}

.price-body {
  padding: 2rem;
  text-align: center;
}

.price-detail {
  margin-bottom: 1rem;
}

.lesson-count {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}

.lesson-period {
  font-size: 0.875rem;
  color: var(--text-light);
}

.price-amount {
  margin-bottom: 0.5rem;
}

.price-yen {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.price-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-tax {
  font-size: 0.875rem;
  color: var(--text-light);
}

.price-per {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 500;
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.price-card.recommended .plan-badge {
  background: var(--accent);
  color: var(--text);
}

.price-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===================================
   Offer Section
   =================================== */
.offer {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.offer-content {
  text-align: center;
}

.offer .section-title {
  color: var(--white);
}

.offer .title-accent {
  color: var(--accent);
}

.offer-details {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  margin: 2rem 0 3rem;
  text-align: left;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
}

.offer-icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.offer .cta-button {
  background: var(--white);
  color: var(--primary);
}

.offer .cta-button:hover {
  background: var(--accent);
  color: var(--text);
}

.offer-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ===================================
   Narrow Section
   =================================== */
.narrow {
  padding: 100px 0;
  background: var(--bg-light);
}

.narrow-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 2.5rem 0;
  text-align: left;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.check-item:hover {
  box-shadow: var(--shadow);
}

.check-item input {
  display: none;
}

.checkmark {
  width: 28px;
  height: 28px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.check-item input:checked + .checkmark {
  background: var(--primary);
}

.check-item input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 700;
}

.check-text {
  font-size: 1.0625rem;
}

.narrow-message {
  font-size: 1.25rem;
  line-height: 1.6;
}

.message-highlight {
  color: var(--primary);
  font-weight: 700;
}

/* ===================================
   Action Section (FAQ + CTA)
   =================================== */
.action {
  padding: 100px 0;
  background: var(--white);
}

.faq {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 4rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  border-radius: var(--radius);
  border: 2px solid var(--primary-light);
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: 60px 0;
  background: var(--text);
  color: var(--white);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: inline-block;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 1.5rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .price-table {
    grid-template-columns: 1fr;
  }

  .price-card.recommended {
    transform: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.625rem;
  }

  .header-inner {
    height: 60px;
  }

  .header-cta {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .affinity-cards {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ba-arrow {
    transform: rotate(90deg);
  }

  .type-cards {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  .cta-large {
    padding: 16px 32px;
  }

  .cta-final {
    padding: 18px 36px;
    font-size: 1rem;
  }

  .final-cta {
    padding: 2.5rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}

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

  .hero-title {
    font-size: 1.75rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
