/* ============================================
   Plan.it Prep - Landing Page Styles
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Colors */
  --color-primary-teal: #26b3a0;
  --color-primary-red: #fd6f61;
  --color-primary-100: #ffeae8;
  --color-secondary-100: #e6faf7;
  --color-secondary-200: #c8f3ec;
  --color-secondary-900: #11524d;
  --color-dark-500: #040e0d;
  --color-greyscale-50: #eeeff2;
  --color-greyscale-600: #353849;
  --color-greyscale-700: #272835;
  --color-greyscale-800: #15161e;
  --color-white: #ffffff;
  --color-black: #080b11;
  --color-green: #00bc7d;
  --color-orange: #e4752f;
  --color-red-bg: #ffe2e2;
  --color-teal-bg: #d1fae5;
  --color-yellow-bg: #fef3c7;
  --color-purple-bg: #ede9fe;
  --color-pink-bg: #fce7f3;
  --color-orange-bg: #ffedd5;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-padding: 96px 82px;
  --container-max-width: 1340px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--color-greyscale-700);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* Typography */
.gradient-text {
  background: linear-gradient(90deg, #26b3a0 35%, #fd6f61 72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-dark-500);
  text-align: center;
  letter-spacing: 0.36px;
}

.section-subheading {
  font-family: var(--font-primary);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-greyscale-600);
  text-align: center;
  letter-spacing: 0.12px;
  max-width: 836px;
  margin: 16px auto 0;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 50px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 0 30px;
}

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

.nav-logo .logo-img {
  display: block;
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-greyscale-700);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-orange);
}

.nav-links a.active::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-orange);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-teal);
  border: 2px solid var(--color-primary-teal);
  border-radius: var(--radius-lg);
  padding: 10px 24px;
  transition: all 0.3s ease;
}

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

.nav-cta .arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.nav-cta:hover .arrow {
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 874px;
  padding: 140px 58px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -455px;
  left: -86px;
  width: 1526px;
  height: 1266px;
  border-radius: 500px;
  background: linear-gradient(203deg, rgba(46, 204, 181, 0.1) 47%, rgba(255, 192, 159, 0.1) 86%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  max-width: 622px;
  flex-shrink: 0;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-dark-500);
  letter-spacing: 0.36px;
  margin-bottom: 16px;
}

.hero-heading .lifestyle {
  position: relative;
  display: inline-block;
}

.hero-heading .lifestyle .marker {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #26b3a0 35%, #fd6f61 72%);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-greyscale-600);
  margin-bottom: 40px;
  max-width: 622px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  height: 56px;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge-icon {
  width: 28px;
  height: 28px;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
}

.store-badge-text .small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
}

.store-badge-text .large {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.user-avatars {
  display: flex;
  align-items: center;
}

.user-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -8px;
  object-fit: cover;
}

.user-avatars .avatar:first-child {
  margin-left: 0;
}

.user-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-greyscale-700);
  margin-left: 8px;
}

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

.rating .stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating .rating-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-greyscale-700);
}

/* Hero Phone Mockup */
.hero-visual {
  flex-shrink: 0;
  position: relative;
  width: 475px;
  max-width: 100%;
}

.phone-mockup {
  background: #f4fcfb;
  border-radius: 17px;
  box-shadow: 0px 18px 35px 0px #ddf7f3;
  padding: 28px;
  transform: rotate(5deg);
  max-width: 410px;
  margin-left: 0;
}

.phone-header {
  text-align: center;
  margin-bottom: 20px;
}

.phone-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #101828;
  letter-spacing: 0.5px;
}

.phone-header p {
  font-size: 12px;
  font-weight: 500;
  color: #4a5565;
  margin-top: 4px;
}

.phone-step {
  margin-bottom: 16px;
}

.phone-step-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.step-number {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  color: #101828;
}

.style-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.style-card {
  border-radius: 11px;
  padding: 18px;
  font-size: 10px;
}

.style-card.daily {
  background: linear-gradient(130deg, #ecfdf5, #f0fdfa);
  border: 1.4px solid #5ee9b5;
}

.style-card.batch {
  background: linear-gradient(130deg, #fff1f0, #fff5f5);
  border: 1.4px solid #fca5a5;
}

.style-card-icon {
  width: 39px;
  height: 39px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 18px;
}

.style-card.daily .style-card-icon {
  background: linear-gradient(135deg, #00bc7d, #00bba7);
  box-shadow: 0 7px 11px rgba(0,0,0,0.1);
  color: white;
}

.style-card.batch .style-card-icon {
  background: linear-gradient(135deg, #fd6f61, #ff8a7a);
  box-shadow: 0 7px 11px rgba(0,0,0,0.1);
  color: white;
}

.style-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #101828;
}

.style-card p {
  font-size: 10px;
  color: #4a5565;
}

.style-card .days {
  display: flex;
  gap: 5px;
  margin-top: 8px;
  padding: 8px 11px;
  background: var(--color-secondary-200);
  border-radius: 10px;
}

.style-card .days span {
  font-size: 8px;
  font-weight: 600;
  color: #6a7282;
  width: 12px;
  text-align: center;
}

.style-card .day-checks {
  display: flex;
  gap: 5px;
  margin-top: 4px;
  padding: 0 11px;
}

.style-card .check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-card .check svg {
  width: 7px;
  height: 7px;
  fill: white;
}

.style-card-features {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.style-card-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #4a5565;
}

.style-card-features li .check-icon {
  color: var(--color-primary-teal);
  font-size: 12px;
}

.phone-step2-content {
  background: var(--color-primary-teal);
  border-radius: 11px;
  padding: 17px;
  color: white;
}

.grocery-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.grocery-header .icon {
  font-size: 20px;
}

.grocery-header h4 {
  font-size: 14px;
  font-weight: 700;
}

.grocery-header + p {
  font-size: 10px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.grocery-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.grocery-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 11px;
}

.grocery-item .checkbox {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.grocery-item .bar {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

.grocery-item .qty {
  width: 34px;
  height: 9px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

.phone-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone-btn {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: white;
}

.phone-arrow-down {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--color-primary-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto;
  font-size: 16px;
}

.batch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 8px;
  padding: 11px;
  background: #fecaca30;
  border-radius: 10px;
}

.batch-grid .meal-slot {
  aspect-ratio: 1;
  background: #fca5a580;
  border-radius: 6px;
}

/* ============================================
   Sound Familiar Section
   ============================================ */
.sound-familiar {
  padding: 100px 50px 80px;
  position: relative;
  overflow: hidden;
}

.sound-familiar .section-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.familiar-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border: 1px solid #fca5a540;
  border-radius: 56px;
  overflow: hidden;
  background: var(--color-white);
}

.familiar-card {
  padding: 42px 24px;
  position: relative;
}

.familiar-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e5e7eb;
}

.familiar-card .icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 28px;
}

.familiar-card:nth-child(1) .icon-wrap { background: var(--color-red-bg); color: #fa4d5e; }
.familiar-card:nth-child(2) .icon-wrap { background: var(--color-teal-bg); color: var(--color-primary-teal); }
.familiar-card:nth-child(3) .icon-wrap { background: var(--color-yellow-bg); color: #f59e0b; }
.familiar-card:nth-child(4) .icon-wrap { background: var(--color-purple-bg); color: #8b5cf6; }

.familiar-card h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  color: var(--color-greyscale-800);
  line-height: 1.3;
  margin-bottom: 16px;
}

.familiar-card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-greyscale-600);
  line-height: 1.5;
}

/* ============================================
   Plan Your Way Section
   ============================================ */
.plan-your-way {
  padding: 96px 82px;
  position: relative;
  background: white;
}

.plan-your-way .section-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 66px;
  position: relative;
}

.plan-cards::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 192, 159, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(46, 204, 181, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(96, 165, 250, 0.15) 0%, transparent 60%);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 0;
}

.plan-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  padding: 42px 43px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.plan-card.daily {
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.9), rgba(240, 253, 250, 0.9));
  border: 2px solid #5ee9b5;
}

.plan-card.batch {
  background: linear-gradient(135deg, rgba(255, 241, 240, 0.9), rgba(255, 245, 245, 0.9));
  border: 2px solid #fca5a5;
}

.plan-card-icon {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 36px;
}

.plan-card.daily .plan-card-icon {
  background: rgba(46, 204, 181, 0.15);
  color: var(--color-primary-teal);
}

.plan-card.batch .plan-card-icon {
  background: rgba(253, 111, 97, 0.15);
  color: var(--color-primary-red);
}

.plan-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--color-dark-500);
  line-height: 1.3;
  margin-bottom: 8px;
}

.plan-card .plan-card-desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-greyscale-600);
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: auto;
}

.plan-card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-greyscale-700);
  line-height: 1.5;
}

.plan-card-features li .feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 16px;
}

.plan-card-footer {
  margin-top: 32px;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-greyscale-600);
  font-style: italic;
  line-height: 1.5;
}

/* VS Badge */
.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e4752f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  box-shadow: 0 4px 20px rgba(228, 117, 47, 0.3);
}

/* Switch Note */
.switch-note {
  max-width: 1152px;
  margin: 66px auto 0;
  background: rgba(238, 239, 242, 0.5);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}

.switch-note p {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-greyscale-600);
  line-height: 1.6;
}

.switch-note .highlight {
  color: var(--color-primary-red);
  font-weight: 700;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  padding: 96px 24px;
  position: relative;
}

.how-it-works .section-inner {
  max-width: 1392px;
  margin: 0 auto;
  background: rgba(237, 241, 243, 0.21);
  border-radius: var(--radius-xl);
  padding: 96px 52px;
  position: relative;
  overflow: hidden;
}

.how-it-works-bg {
  position: absolute;
  bottom: 0;
  left: -302px;
  width: 650px;
  height: 664px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 111, 97, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 66px;
  position: relative;
  align-items: start;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  font-size: 40px;
  position: relative;
}

.step:nth-child(1) .step-icon { background: var(--color-primary-100); color: var(--color-primary-red); }
.step:nth-child(2) .step-icon { background: var(--color-secondary-100); color: var(--color-primary-teal); }
.step:nth-child(3) .step-icon { background: var(--color-orange-bg); color: var(--color-primary-red); }

/* Dashed lines between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -10%;
  width: 40%;
  height: 0;
  border-top: 3px dashed;
}

.step:nth-child(1)::after { border-color: #fca5a5; }
.step:nth-child(2)::after { border-color: #5ee9b5; }

.step h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--color-greyscale-800);
  margin-bottom: 12px;
  line-height: 1.5;
}

.step p {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--color-greyscale-600);
  line-height: 1.5;
  max-width: 365px;
}

/* ============================================
   Smart Features Section
   ============================================ */
.smart-features {
  padding: 96px 82px;
  position: relative;
}

.smart-features .section-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

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

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.feature-card:nth-child(1) .icon-wrap { background: #ffeae8; color: #fa4d5e; }
.feature-card:nth-child(2) .icon-wrap { background: #e6faf7; color: #26b3a0; }
.feature-card:nth-child(3) .icon-wrap { background: #ffedd5; color: #e4752f; }
.feature-card:nth-child(4) .icon-wrap { background: #e6faf7; color: #26b3a0; }
.feature-card:nth-child(5) .icon-wrap { background: #e6faf7; color: #26b3a0; }
.feature-card:nth-child(6) .icon-wrap { background: #ffeae8; color: #fa4d5e; }

.feature-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--color-greyscale-800);
  margin-bottom: 8px;
  line-height: 1.5;
}

.feature-card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-greyscale-600);
  line-height: 1.5;
}

/* ============================================
   Who It's For Section
   ============================================ */
.who-its-for {
  padding: 96px 82px;
  background: #f8fafb;
  position: relative;
}

.who-its-for .section-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 66px;
}

.audience-card {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.audience-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e5e7eb;
}

.audience-card .icon-wrap {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 28px;
}

.audience-card:nth-child(1) .icon-wrap { background: #ffedd5; color: #e4752f; }
.audience-card:nth-child(2) .icon-wrap { background: #e6faf7; color: #26b3a0; }
.audience-card:nth-child(3) .icon-wrap { background: #fef3c7; color: #f59e0b; }
.audience-card:nth-child(4) .icon-wrap { background: #ede9fe; color: #8b5cf6; }

.audience-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-greyscale-800);
  margin-bottom: 8px;
  line-height: 1.5;
}

.audience-card p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-greyscale-600);
  line-height: 1.5;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 16px 24px;
}

.cta-container {
  max-width: 1392px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(38, 179, 160, 0.1) 0%, rgba(253, 111, 97, 0.1) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.cta-text {
  max-width: 608px;
  flex-shrink: 0;
}

.cta-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-greyscale-800);
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-greyscale-700);
  line-height: 1.5;
  margin-bottom: 40px;
}

.cta-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-feature .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary-900);
}

.cta-feature span {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-secondary-900);
}

.cta-image {
  position: relative;
  width: 450px;
  flex-shrink: 0;
}

.cta-image img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cta-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 16px 24px;
}

.footer-container {
  max-width: 1392px;
  margin: 0 auto;
  background: var(--color-greyscale-50);
  border-radius: var(--radius-lg);
  padding: 80px 246px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-img {
  display: block;
  height: 90px;
  width: auto;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-greyscale-700);
  line-height: 1.5;
  max-width: 603px;
  margin: 0 auto 48px;
}

.footer-nav {
  display: flex;
  gap: 70px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-greyscale-700);
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav a:hover {
  color: var(--color-orange);
}

.footer-nav a.active {
  font-weight: 800;
  color: var(--color-orange);
}

.footer-nav a.active::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
}

.footer-socials {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-greyscale-700);
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: var(--color-primary-teal);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal span, .footer-legal a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-greyscale-600);
}

.footer-legal a:hover {
  color: var(--color-primary-teal);
}

.footer-legal .separator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-greyscale-600);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets & Large Phones */
@media (max-width: 1200px) {
  .hero {
    padding: 120px 40px 80px;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-visual {
    width: 380px;
  }

  .plan-your-way,
  .smart-features,
  .who-its-for {
    padding: 80px 40px;
  }

  .cta-container {
    padding: 48px 60px;
  }

  .footer-container {
    padding: 60px 80px;
  }

  .footer-nav {
    gap: 40px;
  }

  .footer-nav a {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 12px 24px;
  }

  .nav-container {
    padding: 0 20px;
  }

  /* Professional fullscreen mobile menu overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
    gap: 6px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
  }

  .nav-links.open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-greyscale-700);
    padding: 14px 36px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: var(--radius-full);
    transition: background 0.25s ease, color 0.25s ease;
    position: relative;
    letter-spacing: 0.3px;
  }

  .nav-links a:hover {
    background: var(--color-secondary-100);
    color: var(--color-primary-teal);
  }

  .nav-links a.active {
    background: var(--color-primary-teal);
    color: var(--color-white);
    font-weight: 700;
  }

  .nav-links a.active::before {
    display: none;
  }

  .nav-links a:not(:last-child)::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .mobile-menu-toggle span {
    width: 26px;
    height: 2.5px;
    transition: all 0.35s ease;
  }

  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .phone-mockup {
    transform: rotate(0deg);
    margin: 0 auto;
  }

  /* Fix style cards proportionality on tablet */
  .style-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .style-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .sound-familiar {
    padding: 80px 24px 60px;
  }

  .familiar-cards {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-xl);
  }

  .familiar-card:nth-child(2)::after {
    display: none;
  }

  .familiar-card:nth-child(1)::after,
  .familiar-card:nth-child(3)::after {
    right: 0;
  }

  .plan-your-way {
    padding: 60px 24px;
  }

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

  .vs-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -20px auto;
  }

  .switch-note {
    margin-top: 40px;
  }

  .how-it-works .section-inner {
    padding: 60px 24px;
  }

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

  .step::after {
    display: none !important;
  }

  .smart-features {
    padding: 60px 24px;
  }

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

  .who-its-for {
    padding: 60px 24px;
  }

  .audience-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .audience-card::after {
    display: none !important;
  }

  .cta-container {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
  }

  .cta-image {
    width: 100%;
    max-width: 400px;
  }

  .cta-features {
    justify-content: center;
  }

  .store-badges {
    justify-content: center;
  }

  .footer-container {
    padding: 48px 32px;
  }

  .footer-tagline {
    font-size: 18px;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .footer-nav {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(36px, 8vw, 48px);
  }


  .familiar-cards {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .familiar-card::after {
    display: none !important;
  }

  .familiar-card:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
  }

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

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

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .footer-legal .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 40px;
  }

  .hero-heading {
    font-size: 32px;
  }

  /* Scale phone mockup padding for small screens while keeping side-by-side layout */
  .phone-mockup {
    padding: 16px;
  }

  .style-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .style-card {
    padding: 10px;
    border-radius: 8px;
  }

  .style-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 14px;
  }

  .style-card h4 {
    font-size: 11px;
  }

  .style-card p {
    font-size: 8px;
  }

  .style-card-features li {
    font-size: 8px;
  }

  .style-card-features li .check-icon {
    font-size: 9px;
  }

  .style-card .days {
    padding: 5px 7px;
  }

  .style-card .days span {
    font-size: 6px;
    width: 10px;
  }

  .style-card .day-checks {
    padding: 0 7px;
  }

  .style-card .check {
    width: 10px;
    height: 10px;
  }

  .style-card .check svg {
    width: 6px;
    height: 6px;
  }

  .batch-grid {
    padding: 7px;
    gap: 2px;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 12px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-subheading {
    font-size: 14px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .cta-container {
    padding: 32px 20px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    padding: 40px 20px;
  }
}
