/* Pickolo Marketing — Rounded App-Like */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* Brand — from FlexScheme.redWine dark palette */
  --red: #E4677C;              /* darkPrimary */
  --red-deep: #9B1B30;         /* darkPrimaryContainer */
  --red-hover: #ea7e90;
  --red-cta: #EE7189;          /* pickoloRed from Flutter */
  --red-glow: rgba(228, 103, 124, 0.18);
  --red-subtle: rgba(228, 103, 124, 0.10);
  --secondary: #C87A98;        /* darkSecondary */
  --secondary-deep: #910037;   /* darkSecondaryContainer */
  --tertiary: #BD545B;         /* darkTertiary */
  --tertiary-deep: #930012;    /* darkTertiaryContainer */
  --blue: #0091F5;
  --blue-light: #4db8ff;
  --peach: #FDD9B7;
  --peach-glow: rgba(253, 217, 183, 0.08);

  /* Surfaces — FlexColorScheme redWine dark + trueBlack + blendLevel 40 */
  --bg: #000000;                 /* scaffoldBackground */
  --bg-elevated: #231518;        /* surface */
  --bg-card: #25181A;            /* surfaceContainer */
  --bg-card-hover: #2D1F21;      /* surfaceContainerHigh */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-active: color-mix(in srgb, var(--red) 30%, transparent);

  /* Text */
  --text: #F0ECE6;
  --text-secondary: #A8A29E;
  --text-dim: #5C5856;
  --text-heading: #FAF8F5;

  /* Fonts — Roboto everywhere, matching Flutter Material */
  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-2xs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --max-width: 1120px;
  --sidebar-width: 250px;
  --sidebar-bg: #1E1E1E;
  --nav-height: 0px;

  /* Radius — rounded app-like */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows — soft and deep */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  padding-left: var(--sidebar-width);
}

@media (max-width: 900px) {
  :root {
    --sidebar-width: 0px;
  }
}


a { color: var(--peach); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--text); }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ── Typography — bold sans-serif headings ── */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.12;
  font-weight: 700;
}

h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }
p { color: var(--text-secondary); }

.subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 400;
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.em { font-style: normal; color: var(--red); }

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 { margin-top: var(--space-md); }
.section-header .subtitle { margin: var(--space-md) auto 0; }

/* ── Grid ── */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 {
  grid-template-columns: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.grid.grid-3 > * {
  flex: 0 1 calc((100% - var(--space-lg) * 2) / 3);
  min-width: 260px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.grid-3 > * { flex: 0 1 calc((100% - var(--space-lg)) / 2); }
}
@media (max-width: 600px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .grid.grid-3 > * { flex: 0 1 100%; }
  .section { padding: var(--space-3xl) 0; }
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR — matches Flutter AppDrawer layout
   ══════════════════════════════════════════════════════════════ */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  border-radius: 0 16px 16px 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: var(--font-body);
}

.sb-header {
  padding: 20px 24px 32px;
  flex-shrink: 0;
  text-align: center;
}

.sb-header a { display: inline-block; }
.sb-header img { height: 30px; width: auto; }

/* ── Sidebar links ── */
.sb-link {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 11px 16px;
  margin: 4px 12px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.sb-link svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  transition: color 0.2s var(--ease);
}

.sb-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.sb-link:hover svg {
  color: #fff;
}

.sb-link.active {
  background: rgba(155, 27, 48, 0.1);
  color: var(--red);
  font-weight: 700;
}

.sb-link.active svg {
  color: var(--red);
}

.sb-link--primary {
  font-weight: 500;
}

/* ── Section headers ── */
.sb-section {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  padding: 16px 28px 8px;
}

/* ── Sidebar divider — matches Flutter Divider(indent: 48, endIndent: 48) ── */
.sb-divider {
  min-height: 1px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 16px;
  width: calc(100% - 32px);
}

/* ── Spacer pushes bottom content down ── */
.sb-spacer {
  flex: 1;
  min-height: 24px;
}

/* ── Bottom section ── */
.sb-bottom {
  padding: 0 16px 24px;
  flex-shrink: 0;
}

.sb-ctas {
  padding: 8px 16px 0;
}

.sb-cta,
.sb-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 4px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 900;
  border-radius: 12px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  margin-bottom: 8px;
}

.sb-cta {
  background: var(--red-cta);
  color: #fff;
}

.sb-cta:hover {
  background: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}

.sb-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sb-cta-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transform: translateY(-1px);
}

.sb-cta svg,
.sb-cta-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sb-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 12px;
}

.sb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 4px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
}

.sb-badge:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.sb-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sb-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 4px 0 16px;
}

.sb-legal a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
}
.sb-legal a:hover { color: #fff; }

.sb-social {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 4px 0 12px;
}

.sb-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease);
  padding: 0;
}
.sb-social a:hover { color: #fff; }
.sb-social a svg { width: 18px; height: 18px; fill: currentColor; }

.sb-lang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}

.sb-lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s var(--ease);
}

.sb-lang-btn:hover { color: #fff; }
.sb-lang-btn.active { color: var(--red); font-weight: 700; }

.sb-lang-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Hamburger: hidden on desktop, floating on mobile ── */
.topbar-btn {
  display: none;
}

/* ── Backdrop: hidden by default, shown when sidebar is open on mobile ── */
.sb-backdrop {
  display: none;
}

/* ── Mobile: floating hamburger + sidebar overlay ── */
@media (max-width: 900px) {
  .topbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1002;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
    padding: 0;
  }

  .topbar-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  /* Hide hamburger button when sidebar is open (close via backdrop only) */
  .topbar-btn.open { display: none; }

  /* Sidebar: hidden off-screen, slides in */
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    width: 280px;
    border-radius: 0 16px 16px 0;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  /* Backdrop */
  .sb-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
  }

  .sb-backdrop.open {
    display: block;
    opacity: 1;
  }
}

/* ── Nav spacer: not needed (no topbar) ── */
.nav-spacer { height: 0; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS — rounded pills with glow
   ══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.875rem;
  padding: 4px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red-cta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 4px 20px;
}

.btn-lg {
  font-size: 1rem;
  padding: 4px 32px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — centered, ambient glow
   ══════════════════════════════════════════════════════════════ */

.hero {
  min-height: calc(85vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

/* Warm ambient glow */
.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, var(--red-subtle) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
}

.hero-content h1 .em {
  display: inline;
}

.hero-content .subtitle {
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   FEATURE CARDS — warm rounded cards
   ══════════════════════════════════════════════════════════════ */

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  background: var(--red-subtle);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.feature-card ul {
  margin-top: var(--space-md);
}

.feature-card ul li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  line-height: 1.5;
}

.feature-card ul li::before {
  content: "\2713";
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   STEP CARDS — numbered flow
   ══════════════════════════════════════════════════════════════ */

.steps {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Connector line between steps */
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover) 20%, var(--border-hover) 80%, transparent);
}

@media (max-width: 768px) { .steps::before { display: none; } }

.step-card {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 24px var(--red-glow), 0 0 0 8px var(--bg);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-heading);
}

.step-card p { font-size: 0.9375rem; }

/* ══════════════════════════════════════════════════════════════
   PRICING CARDS
   ══════════════════════════════════════════════════════════════ */

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border-color: var(--border-active);
  position: relative;
  box-shadow: 0 0 60px var(--red-subtle);
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--text-heading);
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin: var(--space-xl) 0;
  line-height: 1;
}

.pricing-price span {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-card ul {
  text-align: left;
  margin: var(--space-lg) 0;
  flex: 1;
}

.pricing-card ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  line-height: 1.5;
}

.pricing-card ul li::before {
  content: "\2713";
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .btn { width: 100%; margin-top: auto; }

/* ══════════════════════════════════════════════════════════════
   FORMS — rounded, warm-tinted inputs
   ══════════════════════════════════════════════════════════════ */

.form-group { margin-bottom: var(--space-lg); }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-subtle);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE (Help Center, Legal)
   ══════════════════════════════════════════════════════════════ */

.article {
  max-width: 760px;
  margin: 0 auto;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.article h1 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.article h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-md); }
.article h3 { margin-top: var(--space-xl); margin-bottom: var(--space-md); font-size: 1.125rem; }

.article p { margin-bottom: var(--space-md); line-height: 1.75; }

.article ul, .article ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}
.article ul { list-style: disc; }
.article ol { list-style: decimal; }

.article ul li, .article ol li {
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  line-height: 1.7;
}

.article strong { color: var(--text); font-weight: 600; }

.article blockquote {
  border-left: 3px solid var(--red);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article blockquote p { color: var(--text-secondary); margin: 0; }

.article a { color: var(--peach); }
.article a:hover { color: var(--text); text-decoration: underline; }

/* Article with TOC sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: var(--space-3xl);
  max-width: 1060px;
  margin: 0 auto;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.article-toc {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
  align-self: start;
  max-height: calc(100vh - var(--nav-height) - var(--space-3xl));
  overflow-y: auto;
}

.article-toc h4 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.article-toc a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-dim);
  padding: 4px 0 4px var(--space-md);
  border-left: 1px solid var(--border);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  line-height: 1.4;
}

.article-toc a:hover {
  color: var(--text-secondary);
  border-left-color: var(--text-dim);
}

.article-toc a.h3-link {
  padding-left: var(--space-xl);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   HELP CENTER GRID — warm rounded cards
   ══════════════════════════════════════════════════════════════ */

.help-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  color: inherit;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
  color: inherit;
}

.help-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-heading);
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.help-card p { font-size: 0.875rem; line-height: 1.6; }

.help-card-arrow {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}

.help-card:hover .help-card-arrow { transform: translateX(4px); }

/* ── Back Link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: var(--space-xl);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.back-link:hover { color: var(--text-secondary); }
.back-link::before { content: "\2190"; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — warm, structured
   ══════════════════════════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--peach-glow) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  position: relative;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { max-width: 280px; }
.footer-brand-logo { height: 22px; margin-bottom: var(--space-md); }
.footer-brand p { font-size: 0.875rem; margin-bottom: var(--space-lg); line-height: 1.6; }

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--text-secondary); }

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s var(--ease);
  padding: 0;
}
.footer-social a:hover { color: var(--text-secondary); border-color: var(--border-hover); }
.footer-social a svg { width: 15px; height: 15px; fill: currentColor; }

.footer-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-badges .sb-badge {
  width: auto;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-badges .sb-badge:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   404
   ══════════════════════════════════════════════════════════════ */

.page-404 {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
}

.page-404 h1 {
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-404 p { font-size: 1.125rem; margin: var(--space-md) 0 var(--space-xl); }

/* ══════════════════════════════════════════════════════════════
   FAQ — clean accordion
   ══════════════════════════════════════════════════════════════ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  padding: 0;
  line-height: 1.5;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  font-weight: 300;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-top: var(--space-md); font-size: 0.9375rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   CONTACT — two-column layout
   ══════════════════════════════════════════════════════════════ */

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

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.contact-info-card h3 { margin-bottom: var(--space-lg); color: var(--text-heading); }

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-item svg { flex-shrink: 0; color: var(--red); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Staggered delays */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-peach { color: var(--peach); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ── Divider — pill-shaped accent ── */
.divider {
  width: 56px;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-full);
  margin: var(--space-lg) auto;
  opacity: 0.5;
}

/* Two-column layout for how-it-works */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

@media (max-width: 768px) { .split-section { grid-template-columns: 1fr; } }

.split-section h2 { margin-bottom: var(--space-lg); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
    padding-top: calc(var(--nav-height) + var(--space-2xl));
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 4px 28px;
  }

  .feature-card {
    padding: 32px 28px;
  }

  .contact-info-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.25rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   BADGE CAROUSEL — rotating badges around fixed Pickolo logo
   ══════════════════════════════════════════════════════════════ */

.badge-carousel-container {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.badge-carousel-ring {
  width: 320px;
  height: 320px;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0%, transparent 30%, rgba(66, 165, 244, 0.04) 50%, rgba(66, 165, 244, 0.10) 70%, rgba(66, 165, 244, 0.15) 90%, rgba(66, 165, 244, 0.12) 100%);
  box-shadow: 0 0 80px rgba(66, 165, 244, 0.15);
}

/* Logo: fixed in center, NOT inside rotating element */
.carousel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 0 60px rgba(254, 218, 186, 0.4));
}

.carousel-logo {
  width: 120px;
  height: 120px;
}

/* Rotating orbit ring */
.badge-carousel {
  position: absolute;
  inset: 0;
  animation: rotateCarousel 20s linear infinite;
}

.badge-carousel-ring:hover .badge-carousel {
  animation-play-state: paused;
}

.badge-carousel-ring:hover .carousel-badge {
  animation-play-state: paused;
}

/* Badges positioned with top/left (unaffected by parent rotation) */
.carousel-badge {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: counterRotate 20s linear infinite;
}

/* 7 badges at radius 155px in 320px container — overlaps gradient edge */
.badge-1 { top: -35px; left: 120px; }
.badge-2 { top: 23px;  left: 241px; }
.badge-3 { top: 155px; left: 271px; }
.badge-4 { top: 260px; left: 187px; }
.badge-5 { top: 260px; left: 53px;  }
.badge-6 { top: 155px; left: -31px; }
.badge-7 { top: 23px;  left: -1px;  }

@keyframes rotateCarousel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@media (max-width: 768px) {
  .badge-carousel-ring {
    width: 240px;
    height: 240px;
    box-shadow: 0 0 60px rgba(66, 165, 244, 0.12);
  }

  .carousel-logo {
    width: 80px;
    height: 80px;
  }

  .carousel-badge {
    width: 64px;
    height: 64px;
  }

  /* 7 badges at radius 116px for 240px container */
  .badge-1 { top: -28px; left: 88px;  }
  .badge-2 { top: 16px;  left: 179px; }
  .badge-3 { top: 114px; left: 201px; }
  .badge-4 { top: 193px; left: 138px; }
  .badge-5 { top: 193px; left: 38px;  }
  .badge-6 { top: 114px; left: -25px; }
  .badge-7 { top: 16px;  left: -3px;  }
}

/* ══════════════════════════════════════════════════════════════
   SCREENSHOT GALLERY MODAL
   ══════════════════════════════════════════════════════════════ */

.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-container {
  position: relative;
  max-width: 500px;
  max-height: 90vh;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  transition: opacity 0.3s var(--ease);
  border-radius: 16px;
}

.gallery-image.loading {
  opacity: 0.3;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease);
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 600px) {
  .gallery-container {
    max-width: 95vw;
    border-radius: 16px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}

/* ══════════════════════════════════════════════════════════════
   YOUTUBE EMBED — 16:9 responsive container
   ══════════════════════════════════════════════════════════════ */

.youtube-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.youtube-container::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.youtube-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════════════════
   THEME SHOWCASE CAROUSEL — mini menu card mockups
   ══════════════════════════════════════════════════════════════ */

.theme-carousel-section {
  overflow: hidden;
}

.theme-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.theme-carousel-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: scrollThemeCarousel 80s linear infinite;
}

.theme-carousel-track-reverse {
  animation: scrollThemeCarouselReverse 80s linear infinite;
}

.theme-carousel-wrapper:hover .theme-carousel-track {
  animation-play-state: paused;
}

@keyframes scrollThemeCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollThemeCarouselReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.theme-card {
  width: 200px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: default;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.theme-card-header {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-card-header-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.theme-card-header-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-card-body {
  flex: 1;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.theme-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-menu-item:last-child {
  border-bottom: none;
}

.theme-item-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
}

.theme-item-price {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.theme-card-label {
  text-align: center;
  padding: 8px 0;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .theme-card {
    width: 240px;
    height: 360px;
  }
}

/* ══════════════════════════════════════════════════════════════
   COMPARISON TABLE — Pickolo vs Others
   ══════════════════════════════════════════════════════════════ */

.compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  background: var(--bg-card);
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  z-index: 2;
}

.compare-table thead th:first-child {
  text-align: left;
  width: 30%;
}

.compare-table thead th:nth-child(2) {
  text-align: center;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
}

.compare-table thead th:nth-child(3) {
  text-align: center;
  color: var(--text-dim);
}

.compare-table tbody td {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-heading);
}

.compare-table tbody td:nth-child(2) {
  text-align: center;
  border-left: 1px solid var(--border-active);
  border-right: 1px solid var(--border-active);
  background: rgba(228, 103, 124, 0.03);
}

.compare-table tbody td:nth-child(3) {
  text-align: center;
}

.compare-table thead th:nth-child(2) {
  border-left: 1px solid var(--border-active);
  border-right: 1px solid var(--border-active);
  background: rgba(228, 103, 124, 0.06);
}

.compare-table tbody tr:hover td {
  background: var(--bg-card-hover);
}

.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(228, 103, 124, 0.07);
}

.compare-check {
  color: #4ade80;
  font-weight: 700;
  font-size: 1.125rem;
}

.compare-partial {
  color: #facc15;
  font-weight: 700;
  font-size: 1.125rem;
}

.compare-miss {
  color: var(--text-dim);
  font-weight: 700;
  font-size: 1.125rem;
}

.compare-summary {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--space-xs);
  line-height: 1.4;
}

.compare-table tbody td:nth-child(3) .compare-summary {
  color: var(--text-secondary);
}

.compare-detail {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.6;
  font-weight: 400;
}

.compare-table tbody td:nth-child(2) .compare-detail {
  color: var(--text-secondary);
}

.compare-table tbody td:nth-child(3) .compare-detail {
  color: var(--text-dim);
}

.compare-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  margin-top: var(--space-2xl);
  box-shadow: 0 0 60px var(--red-subtle);
}

.compare-highlight p {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
}

.compare-highlight .em {
  color: var(--red);
}

/* ── Desktop: reduce padding on smaller screens ── */
@media (max-width: 900px) and (min-width: 641px) {
  .compare-table thead th,
  .compare-table tbody td {
    padding: var(--space-md);
  }

  .compare-table tbody td:first-child {
    position: sticky;
    left: 0;
    background: var(--bg-elevated);
    z-index: 1;
    min-width: 160px;
  }

  .compare-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
  }

  .compare-table tbody tr:hover td:first-child {
    background: var(--bg-card-hover);
  }
}

/* ── Mobile: card layout ── */
@media (max-width: 640px) {
  .compare-table-wrapper {
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .compare-table {
    display: block;
    min-width: 0;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  .compare-table tbody tr {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-card);
    overflow: hidden;
    transition: border-color 0.25s var(--ease);
  }

  .compare-table tbody tr:hover {
    border-color: var(--border-hover);
  }

  .compare-table tbody tr:hover td {
    background: transparent;
  }

  .compare-table tbody tr:hover td:nth-child(2) {
    background: rgba(228, 103, 124, 0.05);
  }

  .compare-table tbody tr:last-child td {
    border-bottom: 1px solid var(--border);
  }

  .compare-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }

  /* Feature name — card header */
  .compare-table tbody td:first-child {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
    background: transparent;
  }

  /* Pickolo column — highlighted */
  .compare-table tbody td:nth-child(2) {
    display: block;
    text-align: left;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg);
    background: rgba(228, 103, 124, 0.03);
    position: relative;
  }

  .compare-table tbody td:nth-child(2)::before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--space-sm);
    bottom: var(--space-sm);
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: var(--red);
    box-shadow: 0 0 12px var(--red-glow);
  }

  /* Others column */
  .compare-table tbody td:nth-child(3) {
    display: block;
    text-align: left;
    padding: var(--space-lg);
    border-bottom: none;
  }

  /* Status icon + label rows */
  .compare-table tbody td:nth-child(2) .compare-check,
  .compare-table tbody td:nth-child(2) .compare-partial,
  .compare-table tbody td:nth-child(2) .compare-miss,
  .compare-table tbody td:nth-child(3) .compare-check,
  .compare-table tbody td:nth-child(3) .compare-partial,
  .compare-table tbody td:nth-child(3) .compare-miss {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
  }

  .compare-table tbody td:nth-child(2) .compare-check::after {
    content: " Pickolo";
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    vertical-align: middle;
  }

  .compare-table tbody td:nth-child(3) .compare-check::after,
  .compare-table tbody td:nth-child(3) .compare-partial::after,
  .compare-table tbody td:nth-child(3) .compare-miss::after {
    content: " Others";
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    vertical-align: middle;
  }

  /* Summary on mobile */
  .compare-table tbody td .compare-summary {
    margin-top: var(--space-sm);
  }

  /* Detail text */
  .compare-table tbody td .compare-detail {
    margin-top: 4px;
  }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM — section headers, feature chips, status messages
   ══════════════════════════════════════════════════════════════ */

.form-section-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.form-section-header:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-sm);
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  font-size: 0.875rem;
  color: var(--text);
  user-select: none;
}

.feature-chip:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.feature-chip.checked {
  border-color: var(--red);
  background: var(--red-subtle);
}

.feature-chip input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  margin-top: var(--space-lg);
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #81C784;
}

.form-status.error {
  display: block;
  background: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #E57373;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: var(--space-sm);
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hp-field { position: absolute; left: -9999px; }
