/* ============================================================
   YellowJay Studio — Landing Site
   Daisy Days design system: design tokens, components, nav, footer
   Shared by all pages (deck + content pages)
   ============================================================ */

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

:root {
  /* ---- Palette ---- */
  --cream: #F5F0E6;
  --turquoise: #7ECDC0;
  --soft-pink: #F7C8D4;
  --butter: #FDE68A;
  --butter-dark: #D9A441;
  --mint: #A8E6CF;
  --lavender: #D4A5E8;
  --peach: #FFCBA4;
  --sky: #A8D8F0;
  --coral: #F8635F;
  --text-dark: #2D2D2D;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;

  /* ---- Structural ---- */
  --border: #2D2D2D;
  --border-width: 3px;
  --border-thin: 2px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 50px;
  --radius-round: 50%;

  /* ---- Shadows ---- */
  --shadow: 6px 6px 0 var(--border);
  --shadow-sm: 4px 4px 0 var(--border);
  --text-headline: 3px 3px 0 var(--border);
  --text-headline-soft: 3px 3px 0 rgba(0, 0, 0, 0.2);

  /* ---- Typography ---- */
  --font-display: 'Fredoka One', cursive;
  --font-body: 'Quicksand', sans-serif;

  /* ---- Spacing ---- */
  --pad-slide: 40px 60px;
  --pad-card-lg: 48px 56px;
  --pad-card-md: 32px 40px;
  --pad-card-sm: 16px 24px;
  --gap-lg: 28px;
  --gap-md: 24px;
  --gap-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.2; }
h4 { font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.3; }

p {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.6;
}

a {
  color: var(--text-dark);
  text-decoration: none;
}

/* ============================================================
   Top Navigation Bar
   ============================================================ */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: var(--cream);
  border-bottom: var(--border-thin) solid var(--border);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  border: var(--border-width) solid var(--border);
  font-family: var(--font-display);
  font-size: 1.1rem;
  background: var(--butter);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 var(--border);
}

.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: var(--border-width) solid var(--border);
  font-family: var(--font-display);
  font-size: 0.85rem;
  background: var(--white);
  transition: background 0.2s, transform 0.2s;
}

.nav-link:hover {
  background: var(--mint);
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--soft-pink);
}

/* ============================================================
   Components
   ============================================================ */

/* ---- Card ---- */
.card {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--pad-card-md);
}

.card-lg {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: var(--pad-card-lg);
}

.card-sm {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: var(--pad-card-sm);
}

/* ---- Badge Pill ---- */
.badge-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: var(--border-width) solid var(--border);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  background: var(--butter);
}

/* ---- Button ---- */
.btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: var(--radius-pill);
  border: var(--border-width) solid var(--border);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0 var(--border);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 var(--border);
}

.btn-secondary {
  background: var(--butter);
  color: var(--text-dark);
}

.btn-mint {
  background: var(--mint);
  color: var(--text-dark);
}

/* ---- Framed Header (cap + body) ---- */
.framed-header {
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.framed-header-cap {
  padding: 18px 32px;
  text-align: center;
  border-bottom: var(--border-width) solid var(--border);
}

.framed-header-cap h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.framed-header-body {
  background: var(--white);
  padding: var(--pad-card-md);
}

/* ---- Circle markers ---- */
.circle-dot {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.circle-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-circle-lg {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-round);
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

/* ---- Bullet dot list ---- */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bullet-list li {
  font-weight: 600;
  padding-left: 36px;
  position: relative;
  line-height: 1.5;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--butter);
  border: var(--border-thin) solid var(--border);
  border-radius: 50%;
}

/* ---- Dash list (compact) ---- */
.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-list li {
  font-weight: 600;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.dash-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ---- Info card (icon + title + desc) ---- */
.info-card {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  border: var(--border-width) solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.info-card h4 {
  font-size: 1.15rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ---- Legend swatch ---- */
.legend-swatch {
  width: 18px;
  height: 18px;
  border: var(--border-thin) solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ---- Feature thumbnail (clickable image that opens video modal) ---- */
.feature-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.2s;
}

.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-thumb:hover {
  transform: translateY(-4px);
}

.feature-thumb .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  border: var(--border-width) solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  transition: transform 0.2s, background 0.2s;
}

.feature-thumb:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--butter);
}

.feature-thumb .play-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--text-dark);
  margin-left: 4px;
}

/* ---- Video modal ---- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 800px;
  width: 90%;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.open .video-modal-content {
  transform: scale(1);
}

.video-modal-header {
  background: var(--cream);
  border-bottom: var(--border-width) solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-modal-header h3 {
  font-size: 1.1rem;
}

.video-modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  border: var(--border-width) solid var(--border);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.video-modal-close:hover {
  background: var(--soft-pink);
  transform: rotate(90deg);
}

.video-modal-body {
  padding: 0;
  background: #000;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- Process arrow ---- */
.process-arrow {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--border);
  margin-top: 30px;
  flex-shrink: 0;
}

/* ============================================================
   Decorations (SVG ornaments)
   ============================================================ */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cream);
  border-top: var(--border-width) solid var(--border);
  padding: 32px 60px 24px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-brand .brand-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-stance {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.footer-divider {
  border: none;
  border-top: var(--border-thin) solid var(--border);
  margin: 20px auto 12px;
  max-width: 1200px;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================================
   Content Page Layout (features, how-it-works, contact)
   ============================================================ */
.content-page {
  background: var(--cream);
  min-height: 100vh;
}

.content-section {
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.content-section.surface-turquoise { background: var(--turquoise); }
.content-section.surface-pink { background: var(--soft-pink); }
.content-section.surface-butter { background: var(--butter-dark); }
.content-section.surface-mint { background: var(--mint); }
.content-section.surface-lavender { background: var(--lavender); }
.content-section.surface-peach { background: var(--peach); }
.content-section.surface-sky { background: var(--sky); }

.content-section.surface-turquoise > .content-inner > h2,
.content-section.surface-turquoise .section-title h2,
.content-section.surface-mint > .content-inner > h2,
.content-section.surface-mint .section-title h2,
.content-section.surface-butter > .content-inner > h2,
.content-section.surface-butter .section-title h2,
.content-section.surface-peach > .content-inner > h2,
.content-section.surface-peach .section-title h2 {
  color: var(--white);
  text-shadow: var(--text-headline);
}

.content-section.surface-pink > .content-inner > h2,
.content-section.surface-pink .section-title h2,
.content-section.surface-lavender > .content-inner > h2,
.content-section.surface-lavender .section-title h2,
.content-section.surface-sky > .content-inner > h2,
.content-section.surface-sky .section-title h2 {
  color: var(--white);
  text-shadow: var(--text-headline-soft);
}

/* Text inside white cards on colored surfaces stays dark */
.content-section .card-lg h1,
.content-section .card-lg h2,
.content-section .card-lg h3,
.content-section .card-lg h4 {
  color: var(--text-dark);
  text-shadow: none;
}

.content-section .card-lg p {
  color: var(--text-dark);
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* ---- Feature grid (compact cards) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap-md);
}

/* ---- Hero feature section ---- */
.hero-feature {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-feature-text {
  flex: 1;
}

.hero-feature-text h2 {
  margin-bottom: 16px;
}

.hero-feature-text p {
  margin-bottom: 12px;
}

.hero-feature-visual {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
}

.hero-feature-visual .card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--text-muted);
}

.hero-feature.reverse {
  flex-direction: row-reverse;
}

/* ---- Steps row (how-it-works) ---- */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.step-desc {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 220px;
}

/* ---- Anti-list cards ---- */
.anti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-md);
}

.anti-card {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.anti-card h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.anti-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ---- Cost range section ---- */
.cost-range-box {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--pad-card-md);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.cost-range-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: var(--border-thin) solid rgba(0, 0, 0, 0.1);
}

.cost-range-item:last-child {
  border-bottom: none;
}

.cost-range-item .label {
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
  min-width: 140px;
}

.cost-range-item .desc {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Contact info cards ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap-md);
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-card .circle-dot {
  width: 64px;
  height: 64px;
  font-size: 1.8rem;
}

.contact-card h3 {
  font-size: 1.3rem;
}

.contact-card .contact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ---- App window frame (see-it slide) ---- */
.app-window {
  background: var(--white);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
}

.app-window-bar {
  background: var(--cream);
  border-bottom: var(--border-width) solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-window-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: var(--border-thin) solid var(--border);
}

.app-window-dot.red { background: var(--coral); }
.app-window-dot.yellow { background: var(--butter); }
.app-window-dot.green { background: var(--mint); }

.app-window-title {
  margin-left: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.app-window-content {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  position: relative;
}

.app-window-content img {
  width: 100%;
  height: auto;
  display: block;
}

.app-window-placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
}

.app-window-placeholder .placeholder-icon {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 12px;
}

.app-window-placeholder p {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================================
   Animations
   ============================================================ */

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Ornaments entrance ---- */
.deco {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}

.deco.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Ambient ornament motion ---- */
.deco-rotate {
  animation: deco-spin 12s linear infinite;
}

.deco-pulse {
  animation: deco-pulse 3s ease-in-out infinite;
}

.deco-drift {
  animation: deco-drift 8s ease-in-out infinite alternate;
}

.deco-spin-slow {
  animation: deco-spin 20s linear infinite;
}

@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes deco-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes deco-drift {
  from { transform: translateX(0); }
  to { transform: translateX(15px); }
}

/* ---- Hover lift on cards ---- */
.card, .card-sm, .info-card, .anti-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover, .card-sm:hover, .info-card:hover, .anti-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--border);
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .deco-rotate, .deco-pulse, .deco-drift, .deco-spin-slow {
    animation: none !important;
  }

  .reveal, .reveal-scale, .reveal-stagger > *, .deco {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .top-nav {
    padding: 8px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-link {
    padding: 4px 12px;
    font-size: 0.75rem;
  }

  .logo-badge {
    font-size: 0.9rem;
    padding: 4px 14px;
  }

  .content-section {
    padding: 50px 20px;
  }

  .hero-feature, .hero-feature.reverse {
    flex-direction: column;
    gap: 24px;
  }

  .hero-feature-visual {
    width: 100%;
    height: 200px;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

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

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .deco {
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .deco {
    opacity: 0.4;
  }

  .content-section {
    padding: 40px 16px;
  }
}