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

/* Tablet Landscape & Below (1024px) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .navbar {
    padding: 20px 25px;
  }

  .nav-menu {
    gap: 30px;
  }

  .hero-content {
    gap: 50px;
  }

  .hero-visual {
    height: 450px;
  }

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

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

  .timeline::before {
    left: 40px;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }

  .timeline-item .timeline-content:first-child,
  .timeline-item:nth-child(even) .timeline-content:first-child {
    order: 2;
  }

  .timeline-item .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    order: 1;
  }

  .timeline-content.empty {
    display: none;
  }
}

/* Tablet Portrait & Below (768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  /* Typography */
  h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .display-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  /* Navigation */
  .navbar {
    padding: 18px 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 25px;
    box-shadow: var(--shadow-soft);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .nav-menu .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .hero-decor.circle-1 {
    width: 200px;
    height: 200px;
  }

  .hero-decor.square-1 {
    width: 100px;
    height: 100px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .timeline-dot {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .timeline-content {
    padding: 25px;
  }

  .timeline-number {
    font-size: 2.2rem;
  }

  /* Outcome Map */
  .outcome-visual {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .outcome-icon {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-text {
    min-width: auto;
  }

  .cookie-buttons {
    justify-content: center;
  }

  /* CTA Decor */
  .cta-decor.circle {
    width: 250px;
    height: 250px;
    border-width: 25px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 50px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Hero Visual */
  .hero-visual {
    height: 350px;
  }

  .hero-image-card.main {
    width: 75%;
  }

  .hero-image-card.accent {
    width: 55%;
  }

  /* Feature Cards */
  .feature-card {
    padding: 35px 25px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  /* Myth vs Fact */
  .myth-fact-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-card {
    padding: 35px 25px;
  }

  .pricing-price {
    font-size: 3rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  /* Trust Cards */
  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }

  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-number {
    font-size: 2rem;
  }

  /* Section Header */
  .section-header {
    margin-bottom: 50px;
  }

  /* Cookie Banner */
  .cookie-banner {
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Footer */
  .main-footer {
    padding: 60px 0 25px;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small Mobile (360px) */
@media (max-width: 360px) {
  .display-title {
    font-size: 2rem;
  }

  .hero-visual {
    height: 300px;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

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

  .outcome-icon {
    width: 80px;
    height: 80px;
    font-size: 1.6rem;
  }
}

/* Print Styles */
@media print {
  .main-header,
  .cookie-banner,
  .cta-section,
  .hero-buttons {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: white;
  }

  .section {
    page-break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }
}
