/* ═══════════════════════════════════════════════════════════════
   EMA AI — Landing Page Styles
   Brand: Outfit font, #f8f8f8 bg, #1a1a1a text, #e8877c accent
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-color: #f8f8f8;
  --grey-box: #bfbfbf;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --text-light: #888888;
  --accent: #e8877c;
  --accent-soft: #f4b8b0;
  --section-bg-alt: #f0f0f0;
  --card-bg: #ffffff;
  --border-subtle: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 100px;
  --max-width: 1200px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
  margin-left: auto;
  margin-right: 40px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a.cta-nav {
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 11px;
  letter-spacing: 1.2px;
  transition: background 0.3s, transform 0.2s;
}
.nav-links a.cta-nav:hover {
  background: #d4736a;
  transform: translateY(-1px);
}
.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-icons svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  stroke: var(--text-dark);
}
.nav-icons svg:hover {
  transform: scale(1.1);
}

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.hero {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
}

.hero-left {
  width: 45%;
  padding-left: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero-card {
  background-color: var(--grey-box);
  padding: 60px 50px;
  border-radius: var(--radius-md);
  max-width: 550px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50px;
  width: 40px;
  height: 2px;
  background-color: rgba(255,255,255,0.7);
}
.hero-subtitle-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  margin-bottom: 8px;
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  line-height: 1.05;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 420px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.store-btn svg {
  height: 18px;
  margin-right: 8px;
  fill: #000;
}
.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.store-text span:first-child {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}
.store-text span:last-child {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.btn-partner-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s, border-color 0.3s;
}
.btn-partner-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
}
.hero-status {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.hero-status .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eca7c;
  margin-right: 6px;
  vertical-align: middle;
}

/* RIGHT SIDE - SHOWCASE */
.hero-right {
  width: 55%;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* MARQUEE */
.marquee-container {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 150%;
  height: 120%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transform: rotate(-8deg);
}
.marquee-row {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}
.marquee-row:nth-child(1), .marquee-row:nth-child(5) {
  opacity: 0.4;
  transform: scale(0.85);
}
.marquee-row:nth-child(2), .marquee-row:nth-child(4) {
  opacity: 0.7;
  transform: scale(0.95);
}
.marquee-row:nth-child(3) {
  opacity: 1;
  transform: scale(1);
}
.marquee-content {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
}
.marquee-row:nth-child(even) .marquee-content {
  animation-direction: reverse;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.garment-card {
  width: 180px;
  height: 240px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.garment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* MODEL CROSSFADE */
.model-container {
  position: relative;
  z-index: 5;
  width: 380px;
  height: 560px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 8px solid #fff;
  background-color: #fff;
  margin-top: 40px;
  margin-right: 40px;
}
.model-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.5s ease-in-out;
  opacity: 0;
}
.model-img.active {
  opacity: 1;
}
.try-on-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  z-index: 10;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ═══════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════ */
.section {
  padding: 100px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-full {
  padding: 100px 60px;
}
.section-alt {
  background: var(--section-bg-alt);
}
.section-dark {
  background: var(--text-dark);
  color: #ffffff;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
}
.section-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 32px;
  text-align: center;
}

/* ═══════════════════════════════════
   SECTION 1: CATEGORY DISCOVERY
   ═══════════════════════════════════ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.category-card .cat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 135, 124, 0.08);
  border-radius: 10px;
}
.category-card .cat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category-card .cat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ═══════════════════════════════════
   SECTION 2: HOW IT WORKS
   ═══════════════════════════════════ */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.journey-step {
  text-align: center;
  position: relative;
}
.journey-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.journey-step .step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-step .step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--text-mid);
  fill: none;
  stroke-width: 1.5;
}
.journey-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.journey-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 240px;
  margin: 0 auto;
}
/* Connector line between steps */
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--border-subtle);
}

/* ═══════════════════════════════════
   SECTION 3: APP SCREENSHOTS
   ═══════════════════════════════════ */
.screenshot-row {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto 80px;
}
.screenshot-row:last-child {
  margin-bottom: 0;
}
.screenshot-row.reverse {
  flex-direction: row-reverse;
}
.screenshot-img {
  flex: 0 0 340px;
  max-width: 340px;
}
.screenshot-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.screenshot-text {
  flex: 1;
}
.screenshot-text .section-label {
  text-align: left;
}
.screenshot-text h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.screenshot-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 440px;
}

/* ═══════════════════════════════════
   SECTION 4: OUTFIT INTELLIGENCE
   ═══════════════════════════════════ */
.outfit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.outfit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.outfit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.outfit-card .outfit-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outfit-card .outfit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.outfit-card .outfit-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ═══════════════════════════════════
   SECTION 5: BUILT FOR RETAILERS
   ═══════════════════════════════════ */
.retailer-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.retailer-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════
   SECTION 6: LAUNCH TIMELINE
   ═══════════════════════════════════ */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item .tl-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-color);
}
.timeline-item.active .tl-dot {
  background: var(--accent);
}
.timeline-item.active .tl-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}
.timeline-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item .tl-status {
  font-size: 13px;
  color: var(--text-light);
}
.timeline-item.active .tl-status {
  color: var(--accent);
  font-weight: 500;
}

/* ═══════════════════════════════════
   SECTION 7: WHY BRANDS
   ═══════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-card .feat-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 135, 124, 0.08);
  border-radius: 10px;
}
.feature-card .feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.feature-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ═══════════════════════════════════
   SECTION 8: TRUST INDICATORS
   ═══════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.trust-badge .badge-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge .badge-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.trust-badge span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ═══════════════════════════════════
   SECTION 9: PARTNER CTA
   ═══════════════════════════════════ */
.cta-section {
  background: var(--text-dark);
  padding: 100px 60px;
  text-align: center;
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.cta-section p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: #d4736a;
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.site-footer {
  background: #141414;
  padding: 60px 60px 40px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}
.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}
.footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .category-grid,
  .journey-grid,
  .outfit-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .screenshot-row {
    gap: 48px;
  }
  .screenshot-img {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav-links {
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-icons {
    display: none;
  }
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .hero-left {
    width: 100%;
    padding: 130px 24px 40px;
  }
  .hero-card {
    padding: 40px 24px;
    max-width: 100%;
  }
  .hero-card::before {
    top: 40px;
    left: 24px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .app-buttons {
    flex-direction: column;
    width: 100%;
  }
  .store-btn {
    width: 100%;
    justify-content: center;
  }
  .btn-partner-hero {
    width: 100%;
    justify-content: center;
  }
  .hero-right {
    width: 100%;
    height: 500px;
    padding-bottom: 40px;
  }
  .model-container {
    width: 80%;
    max-width: 320px;
    height: 420px;
    margin: 0 auto;
  }
  .marquee-container {
    width: 200%;
    right: -50%;
  }

  .section, .section-full {
    padding: 64px 24px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-header {
    margin-bottom: 40px;
  }

  .screenshot-row,
  .screenshot-row.reverse {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .screenshot-img {
    flex: none;
    max-width: 260px;
    margin: 0 auto;
  }
  .screenshot-text .section-label {
    text-align: center;
  }
  .screenshot-text p {
    margin: 0 auto;
  }

  .journey-step:not(:last-child)::after {
    display: none;
  }

  .cta-section {
    padding: 64px 24px;
  }
  .cta-section h2 {
    font-size: 28px;
  }

  .site-footer {
    padding: 48px 24px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .category-grid,
  .outfit-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 40px;
  }
  .category-card {
    padding: 20px 12px;
  }
  .screenshot-img {
    max-width: 220px;
  }
}

/* ═══════════════════════════════════
   SUBPAGE SHARED STYLES
   ═══════════════════════════════════ */
.subpage-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
}
.subpage-hero {
  padding: 100px 60px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.subpage-hero h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.subpage-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
}
.subpage-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 60px 80px;
}
.subpage-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}
.subpage-content p, .subpage-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}
.subpage-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.subpage-content a {
  color: var(--accent);
  text-decoration: none;
}
.subpage-content a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .subpage-nav {
    padding: 20px 24px;
  }
  .subpage-hero {
    padding: 80px 24px 40px;
  }
  .subpage-hero h1 {
    font-size: 30px;
  }
  .subpage-content {
    padding: 32px 24px 60px;
  }
}
