/* Fere Control — modern product landing (light / dark) */

:root {
  color-scheme: light;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 72px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --bg: #f6f8fc;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-hover: #f8fafc;
  --text: #0c1222;
  --text-secondary: #334155;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);

  --primary: #1d5bbf;
  --primary-hover: #164ea3;
  --primary-soft: rgba(29, 91, 191, 0.1);
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.35);

  --hero-text: #0c1222;
  --hero-muted: #475569;
  --hero-surface: rgba(255, 255, 255, 0.72);
  --hero-border: rgba(255, 255, 255, 0.9);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 0 80px rgba(59, 130, 246, 0.15);

  --header-bg: rgba(246, 248, 252, 0.8);
  --footer-bg: #0c1222;
  --footer-text: rgba(248, 250, 252, 0.72);
  --cta-bg: linear-gradient(135deg, #1d5bbf 0%, #2563eb 50%, #3b82f6 100%);
  --problem-bg: #f1f5f9;
  --solution-bg: linear-gradient(145deg, rgba(29, 91, 191, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
  --mockup-bg: #0f172a;
  --mockup-chrome: #1e293b;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070b14;
  --bg-elevated: #0d1321;
  --surface: #111827;
  --surface-hover: #1a2332;
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.22);

  --primary: #60a5fa;
  --primary-hover: #93c5fd;
  --primary-soft: rgba(96, 165, 250, 0.12);
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.25);

  --hero-text: #f8fafc;
  --hero-muted: #94a3b8;
  --hero-surface: rgba(17, 24, 39, 0.65);
  --hero-border: rgba(148, 163, 184, 0.15);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 100px rgba(59, 130, 246, 0.12);

  --header-bg: rgba(7, 11, 20, 0.82);
  --footer-bg: #030712;
  --footer-text: rgba(148, 163, 184, 0.9);
  --cta-bg: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 50%, #2563eb 100%);
  --problem-bg: #111827;
  --solution-bg: linear-gradient(145deg, rgba(59, 130, 246, 0.12) 0%, rgba(29, 91, 191, 0.06) 100%);
  --mockup-bg: #020617;
  --mockup-chrome: #0f172a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

.logo-mark {
  width: auto;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.logo-mark--sm {
  height: 28px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-desktop a:hover {
  color: var(--text);
  background: var(--primary-soft);
  text-decoration: none;
}

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding-right: 0.5rem;
  margin-right: 0.25rem;
  border-right: 1px solid var(--border);
}

.theme-toggle,
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switch {
  width: auto;
  padding: 0 0.65rem;
}

.theme-toggle:hover,
.lang-switch:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--surface-hover);
  text-decoration: none;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

[data-theme="light"] .icon-moon,
[data-theme="dark"] .icon-sun {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface-hover);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--primary-soft);
  color: var(--primary);
  text-decoration: none;
}

.btn-lg {
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  place-items: center;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.65rem 0;
  color: var(--text);
  font-weight: 500;
}

.nav-mobile .header-actions {
  margin-top: 0.75rem;
  flex-wrap: wrap;
  border: none;
  padding: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(29, 91, 191, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59, 130, 246, 0.15), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(37, 99, 235, 0.1), transparent 50%),
    linear-gradient(180deg, #0a0f1a 0%, var(--bg) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: var(--primary-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--hero-text);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--hero-muted);
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 0.5rem;
}

.hero-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.mockup {
  border-radius: var(--radius-lg);
  background: var(--mockup-bg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s var(--ease);
}

.mockup:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--mockup-chrome);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
}

.mockup-dots span:nth-child(1) { background: #ef4444; opacity: 0.85; }
.mockup-dots span:nth-child(2) { background: #eab308; opacity: 0.85; }
.mockup-dots span:nth-child(3) { background: #22c55e; opacity: 0.85; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.mockup img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.mockup-glow {
  position: absolute;
  inset: 20% -10% -20% -10%;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* —— Trust bar —— */
.trust-bar {
  padding: 1.25rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.trust-list li svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  background: var(--primary-soft);
  border-radius: 6px;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.problem-solution {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.compare-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.compare-card:hover {
  box-shadow: var(--shadow);
}

.compare-card--problem {
  background: var(--problem-bg);
}

.compare-card--solution {
  background: var(--solution-bg);
  border-color: rgba(59, 130, 246, 0.25);
}

.compare-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.compare-card--problem .compare-tag {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.compare-card--solution .compare-tag {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

[data-theme="dark"] .compare-card--problem .compare-tag {
  color: #f87171;
}

[data-theme="dark"] .compare-card--solution .compare-tag {
  color: #4ade80;
}

.compare-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.compare-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* —— Features —— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.25s var(--ease);
}

.section-alt .feature-card {
  background: var(--bg);
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/* —— Personas —— */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.persona-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}

.persona-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}

.persona-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

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

.persona-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.persona-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.persona-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  min-height: 4.5em;
}

/* —— Steps —— */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
}

.section-alt .step {
  background: var(--bg);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* —— Screenshots —— */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.25s var(--ease);
}

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

.screenshot-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--problem-bg);
}

.screenshot-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

/* —— FAQ —— */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.section-alt .faq-item {
  background: var(--bg);
}

.faq-item.is-open {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* —— CTA —— */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  text-align: center;
  background: var(--cta-bg);
  color: #fff;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  opacity: 0.9;
  max-width: 480px;
  font-size: 1.05rem;
}

.cta-band .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

.cta-band .btn-primary {
  background: #fff;
  color: #1d5bbf;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-primary:hover {
  background: #f8fafc;
  color: #164ea3;
}

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* —— Footer —— */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.25rem 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f8fafc;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--footer-text);
}

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

/* —— Cookie —— */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 420px;
  margin-inline: auto;
  padding: 1.25rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cookie-consent p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-consent strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: none;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-cta,
  .hero-stats {
    justify-content: center;
  }

  .mockup {
    transform: none;
    max-width: 560px;
    margin-inline: auto;
  }

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

@media (max-width: 768px) {
  .nav-desktop,
  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    display: none;
  }

  .header-tools {
    border: none;
    padding: 0;
    margin: 0;
  }

  .menu-toggle {
    display: grid;
  }

  .section {
    padding: 3.5rem 0;
  }

  .feature-grid,
  .persona-grid,
  .steps,
  .screenshot-grid,
  .problem-solution {
    grid-template-columns: 1fr;
  }

  .persona-card p {
    min-height: auto;
  }
}

@media (min-width: 769px) {
  .nav-mobile {
    display: none !important;
  }
}

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