/* ============================================
   Solavello Landing Page – styles.css
   Design: warm · clean · modern · travel-friendly
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --color-base: #F9F7F4;
  --color-base-alt: #F1EDE7;
  --color-surface: #FFFFFF;
  --color-accent: #1B4965;
  --color-accent-light: #2A6F97;
  --color-accent-lighter: #3D8AB9;
  --color-teal: #2A9D8F;
  --color-warm: #E8985E;
  --color-warm-light: #F2C078;
  --color-text: #2D2D2D;
  --color-text-secondary: #6B6B6B;
  --color-text-light: #8E8E8E;
  --color-border: #E5E1DB;
  --color-overlay: rgba(27, 73, 101, 0.06);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 3.6rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.4rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1140px;
  --header-height: 72px;

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-screenshot: 0 12px 40px rgba(27, 73, 101, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  transition: var(--transition);
}

.btn-appstore:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-appstore svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-appstore-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-appstore-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.btn-appstore-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(249, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.header-logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

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

.header-cta .btn-appstore {
  padding: 0.5rem 1.15rem;
  font-size: var(--fs-small);
}

.header-cta .btn-appstore svg {
  width: 18px;
  height: 18px;
}

.header-cta .btn-appstore-label {
  font-size: 0.5rem;
}

.header-cta .btn-appstore-text {
  font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(249, 247, 244, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--color-accent-light);
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

.hero-headline {
  font-size: var(--fs-hero);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-headline .highlight {
  color: var(--color-teal);
}

.hero-subcopy {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xs);
}

.hero-support {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--color-overlay);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-accent);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-screenshot {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-screenshot);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Problem ---------- */
.problem {
  background: var(--color-surface);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.problem-card {
  padding: var(--space-lg);
  background: var(--color-base);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.12), rgba(27, 73, 101, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-teal);
}

.problem-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.problem-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.65;
}

/* ---------- How it works ---------- */
.how-it-works {
  background: var(--color-base);
}

.steps {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.step:nth-child(even) {
  direction: rtl;
}

.step:nth-child(even) > * {
  direction: ltr;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-content h3 {
  font-size: var(--fs-h3);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.step-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 400px;
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-screenshot {
  max-width: 280px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-screenshot);
}

.step-emoji {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(232, 152, 94, 0.08));
  margin: 0 auto;
}

.wave-callout {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.06), rgba(27, 73, 101, 0.04));
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-teal);
  text-align: center;
}

.wave-callout p {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-accent);
  font-weight: 600;
}

/* ---------- Why Solavello ---------- */
.why {
  background: var(--color-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.why-card {
  padding: var(--space-lg);
  background: var(--color-base);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-accent-light));
  opacity: 0;
  transition: var(--transition);
}

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

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.why-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.why-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.why-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.why-screenshot-wrap {
  text-align: center;
}

.why-screenshot-wrap img {
  max-width: 280px;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-screenshot);
  margin: 0 auto;
}

.why-screenshot-wrap p {
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ---------- Product Screenshots ---------- */
.screenshots {
  background: var(--color-base);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.screenshot-item {
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-screenshot);
  transition: var(--transition);
}

.screenshot-item img:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27, 73, 101, 0.16);
}

.screenshot-item p {
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ---------- No DMs ---------- */
.no-dms {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #fff;
  text-align: center;
}

.no-dms .section-label {
  color: var(--color-warm-light);
}

.no-dms h2 {
  color: #fff;
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.no-dms p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--color-surface);
}

.faq-list {
  max-width: 700px;
  margin: var(--space-xl) auto 0;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-accent);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

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

.faq-question:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--color-base);
  text-align: center;
  padding: var(--space-3xl) 0;
}

.final-cta h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.final-cta .section-subtitle {
  margin-bottom: var(--space-lg);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

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

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

/* Hero elements should be visible immediately */
.hero .fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-screenshot {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   Sub-pages: Privacy, Terms, Support
   ============================================ */

/* Page Header */
.page-header {
  padding: calc(var(--space-xl) + 20px) 0 var(--space-lg);
  background: var(--color-base);
  border-bottom: 1px solid var(--color-border);
}

.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.page-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.page-header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header-logo img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.page-header-logo span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
}

.page-header-back {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-teal);
  transition: color var(--transition);
}

.page-header-back:hover {
  color: var(--color-accent);
}

/* Page Content */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-3xl);
}

.page-content h1 {
  font-size: var(--fs-h2);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.page-content .page-meta {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.page-content h2 {
  font-size: var(--fs-h3);
  color: var(--color-accent);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-border);
}

.page-content h3 {
  font-size: 1.05rem;
  color: var(--color-accent);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.page-content p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.page-content ul,
.page-content ol {
  padding-left: 1.4rem;
  margin-bottom: var(--space-sm);
}

.page-content li {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.page-content a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover {
  color: var(--color-accent);
}

.page-content strong {
  font-weight: 600;
  color: var(--color-accent);
}

/* Table of Contents */
.toc {
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.toc ol {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.toc li {
  margin-bottom: 0.25rem;
  line-height: 1.6;
}

.toc a {
  font-size: var(--fs-small);
  text-decoration: none;
  color: var(--color-text-secondary);
}

.toc a:hover {
  color: var(--color-teal);
}

/* EU Section Divider */
.legal-divider {
  margin: var(--space-2xl) 0 var(--space-lg);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.06), rgba(27, 73, 101, 0.04));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-teal);
}

.legal-divider h2 {
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
}

/* Support Page */
.support-hero {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.06), rgba(232, 152, 94, 0.06));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.support-hero p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.support-hero .emoji-large {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.support-card {
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.support-card h3 {
  margin-top: 0;
  font-size: var(--fs-h3);
}

.support-card p,
.support-card li {
  font-size: var(--fs-small);
}

.support-contact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.support-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.support-contact p {
  margin-bottom: 0;
}

.app-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.app-info-item {
  text-align: center;
  padding: var(--space-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.app-info-item .label {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.2rem;
}

.app-info-item .value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-accent);
}

/* Page Footer (simpler than LP) */
.page-footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-md) 0;
}

.page-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.page-footer-links {
  display: flex;
  gap: var(--space-md);
}

.page-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  transition: color var(--transition);
}

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

.page-footer p {
  font-size: var(--fs-xs);
  margin: 0;
}

/* Support FAQ list */
.support-faq-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.support-faq-item:last-child {
  border-bottom: none;
}

.support-faq-item dt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.support-faq-item dd {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: var(--fs-small);
  margin: 0;
}

/* Closing line */
.support-closing {
  text-align: center;
  padding: var(--space-lg) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.support-closing p {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-accent);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.support-closing p:last-child {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: var(--fs-small);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-cta-group {
    justify-content: center;
  }

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

  .hero-visual {
    margin-top: var(--space-lg);
  }

  .hero-screenshot {
    max-width: 280px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  /* Header */
  .header-nav-links,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step:nth-child(even) {
    direction: ltr;
  }

  .step-content p {
    max-width: 100%;
    margin: 0 auto;
  }

  .step-visual {
    order: -1;
    margin-bottom: var(--space-sm);
  }

  .step-screenshot {
    max-width: 220px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-screenshots {
    grid-template-columns: 1fr;
  }

  .why-screenshot-wrap img {
    max-width: 240px;
  }

  /* Screenshots */
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

  /* Sub-pages */
  .page-header-inner {
    flex-direction: column;
    text-align: center;
  }

  .app-info-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-screenshot {
    max-width: 240px;
  }

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

  .screenshot-item img {
    max-width: 280px;
    margin: 0 auto;
  }

  .step-screenshot {
    max-width: 200px;
  }

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