:root {
  --color-primary: #2D6A6A;
  --color-accent: #31B8A6;
  --color-cta: #E8734A;
  --color-cta-hover: #d4623c;
  --color-bg: #F8F5F0;
  --color-bg-card: #f0fdfa;
  --color-bg-white: #ffffff;
  --color-text: #1f2937;
  --color-text-secondary: #6B7280;
  --color-text-muted: #9CA3AF;
  --color-border: #e5e7eb;
  --color-border-accent: #a7f3e8;
  --color-gradient-start: #2D6A6A;
  --color-gradient-end: #31B8A6;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --max-width: 1200px;
  --section-padding: 100px 0;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--color-cta);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(232, 115, 74, 0.35);
}

.btn-primary:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 115, 74, 0.4);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===================== HEADER / NAV ===================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 24px;
  background: var(--color-cta);
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full);
  transition: all 0.25s ease !important;
}

.nav-cta:hover {
  background: var(--color-cta-hover);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 32px 24px;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav .btn-primary {
  margin-top: 16px;
  text-align: center;
}

/* ===================== HERO ===================== */

.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(49, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 106, 106, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

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

.hero-description {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.trust-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.trust-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.3;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  color: var(--color-text);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card-wrap {
  position: relative;
  padding: 4px;
}

.hero-card {
  background: var(--color-bg-white);
  border-radius: 20px;
  box-shadow:
    0 2px 8px rgba(45, 106, 106, 0.06),
    0 12px 40px rgba(45, 106, 106, 0.1),
    0 0 0 1px rgba(49, 184, 166, 0.08);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-accent), #7EC8C8);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(45, 106, 106, 0.25);
}

.hero-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.hero-card-subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-card-day-badge {
  margin-left: auto;
  padding: 4px 12px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-card-progress-bar {
  margin-bottom: 20px;
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background: #e8f5f2;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-accent));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(49, 184, 166, 0.4);
}

.progress-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.progress-bar-percent {
  color: var(--color-accent);
  font-weight: 700;
}

.hero-progress-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-progress-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  transition: all 0.25s;
}

.hero-progress-item.completed {
  background: linear-gradient(135deg, #f0fdfa, #e8f9f5);
  border: 1px solid rgba(49, 184, 166, 0.15);
}

.hero-progress-item.pending {
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
}

.hero-progress-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.completed .hero-progress-check {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-accent));
  box-shadow: 0 2px 8px rgba(49, 184, 166, 0.3);
}

.pending-check {
  background: #e8f5f2 !important;
  border: 2px solid var(--color-border-accent);
  box-shadow: none !important;
}

.pending-check span {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-progress-body {
  flex: 1;
  min-width: 0;
}

.hero-progress-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1px;
}

.hero-progress-detail {
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-progress-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-progress-time.upcoming {
  color: var(--color-accent);
  font-weight: 700;
}

.hero-floating-badge {
  position: absolute;
  bottom: -16px;
  right: 12px;
  background: var(--color-bg-white);
  border-radius: 16px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.03);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.floating-badge-streak {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-radius: 10px;
  padding: 6px 10px;
}

.floating-badge-streak span {
  font-size: 18px;
  font-weight: 800;
  color: #D97706;
}

.floating-badge-text {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.3;
}

.floating-badge-text strong {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
}

.hero-floating-insight {
  position: absolute;
  top: 20px;
  left: -24px;
  background: var(--color-bg-white);
  border-radius: 12px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.03);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
  z-index: 2;
  white-space: nowrap;
}

.hero-floating-insight strong {
  color: var(--color-accent);
  font-weight: 700;
}

.insight-pulse {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(49, 184, 166, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(49, 184, 166, 0); }
}

/* ===================== RECOGNITION ===================== */

.recognition {
  padding: 80px 0;
  background: var(--color-bg-white);
}

.recognition-header {
  text-align: center;
  margin-bottom: 48px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.recognition-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border-left: 3px solid var(--color-accent);
  transition: all 0.3s;
}

.recognition-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.recognition-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.recognition-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.recognition-footer {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.recognition-footer p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

/* ===================== FEATURES ===================== */

.features {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.features-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.features-carousel-wrapper::before,
.features-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.features-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-white), transparent);
}

.features-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-white), transparent);
}

.features-carousel {
  display: flex;
  gap: 24px;
  padding: 8px 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.features-carousel::-webkit-scrollbar {
  display: none;
}

.feature-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.3s, border-color 0.3s;
  border: 1px solid transparent;
}

.feature-card:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--color-text-secondary);
  cursor: pointer;
  background: var(--color-bg-white);
}

.carousel-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* ===================== SOCIAL PROOF ===================== */

.social-proof {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: #fff;
  text-align: center;
}

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

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.4;
}

.social-proof-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.3;
}

/* ===================== HOW IT WORKS ===================== */

.how-it-works {
  padding: var(--section-padding);
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-it-works-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(33.33% - 20px);
  right: calc(33.33% - 20px);
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-primary), var(--color-accent));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 3px solid var(--color-border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-number-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===================== TESTIMONIALS ===================== */

.testimonials {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #F59E0B;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-source {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ===================== EXPERTS ===================== */

.experts {
  padding: var(--section-padding);
}

.experts-header {
  text-align: center;
  margin-bottom: 56px;
}

.experts-header .section-subtitle {
  margin: 0 auto;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.expert-card {
  text-align: center;
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.expert-card:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-md);
}

.expert-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #e6f7f2, #a7f3e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 3px solid var(--color-border-accent);
}

.expert-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.expert-title {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.expert-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
}

.expert-verified svg {
  width: 14px;
  height: 14px;
}

/* ===================== MEDIA ===================== */

.media-section {
  padding: 60px 0 80px;
  background: var(--color-bg-white);
  text-align: center;
}

.media-section .section-title {
  margin-bottom: 8px;
}

.media-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  opacity: 0.4;
}

.media-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

/* ===================== FAQ ===================== */

.faq {
  padding: var(--section-padding);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-secondary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===================== FINAL CTA ===================== */

.final-cta {
  padding: 80px 0 100px;
  background: var(--color-bg-white);
  text-align: center;
}

.final-cta-inner {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.final-cta-inner .section-title {
  color: #fff;
  margin-bottom: 12px;
}

.final-cta-description {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-cta .btn-primary {
  background: var(--color-cta);
  font-size: 17px;
  padding: 18px 40px;
}

/* ===================== FOOTER ===================== */

.footer {
  padding: 60px 0 32px;
  background: var(--color-text);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: rgba(255,255,255,0.15);
}

.footer-description {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ===================== ANIMATIONS ===================== */

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

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

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .hero h1 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid::before {
    display: none;
  }

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

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

  .experts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .feature-card {
    flex: 0 0 260px;
  }


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .final-cta-inner {
    padding: 48px 24px;
    border-radius: var(--radius-lg);
  }

  .media-logos {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-floating-badge {
    right: 0;
  }

  .hero-floating-insight {
    left: 0;
    top: -12px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero-progress-detail {
    display: none;
  }

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