/* WPStats — main.css */
/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:         #060912;
  --c-bg2:        #0d1220;
  --c-bg3:        #111827;
  --c-surface:    #161d2e;
  --c-surface2:   #1c2438;
  --c-border:     rgba(255,255,255,0.07);
  --c-border2:    rgba(255,255,255,0.12);
  --c-text:       #f1f5f9;
  --c-text2:      #94a3b8;
  --c-text3:      #64748b;
  --c-accent:     #0ea5e9;
  --c-accent2:    #38bdf8;
  --c-wp:         #21759b;
  --c-green:      #22c55e;
  --c-amber:      #f59e0b;
  --c-red:        #ef4444;
  --c-purple:     #8b5cf6;
  --c-teal:       #14b8a6;
  --r-sm:         6px;
  --r-md:         10px;
  --r-lg:         16px;
  --r-xl:         20px;
  --shadow:       0 4px 32px rgba(0,0,0,0.4);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --trans:        0.2s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent2); }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,9,18,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: var(--trans);
}
.nav.scrolled { background: rgba(6,9,18,0.96); }
.nav-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 1.25rem;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--c-text); letter-spacing: -0.3px;
}
.nav-logo:hover { color: var(--c-accent); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language selector */
.lang-select-wrap { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text2);
  font-size: 13px; cursor: pointer;
  transition: var(--trans);
}
.lang-btn:hover, .lang-btn.open { border-color: var(--c-accent); color: var(--c-text); }
.lang-btn i { font-size: 14px; }
.lang-btn .ti-chevron-down { transition: transform var(--trans); }
.lang-btn.open .ti-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  width: 220px; max-height: 320px; overflow-y: auto;
  background: var(--c-bg2);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
  scrollbar-width: thin; scrollbar-color: var(--c-border2) transparent;
  animation: fadeSlide 0.15s ease;
}
.lang-dropdown.open { display: block; }
.lang-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; font-size: 13px; cursor: pointer;
  transition: background var(--trans); color: var(--c-text2);
}
.lang-item:hover { background: var(--c-surface2); color: var(--c-text); }
.lang-item.active { color: var(--c-accent); background: rgba(14,165,233,0.08); }
.lang-item .lang-flag { font-size: 16px; }
.lang-item .lang-name { flex: 1; }
.lang-item .lang-native { color: var(--c-text3); font-size: 11px; }

/* Rate badge */
.rate-badge {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 12px; color: var(--c-text2);
}
.rate-badge i { font-size: 13px; }
.rate-badge.low { border-color: rgba(245,158,11,0.4); color: var(--c-amber); }
.rate-badge.empty { border-color: rgba(239,68,68,0.4); color: var(--c-red); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 1.25rem 60px;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0ea5e9, transparent 70%);
  top: -20%; left: -15%;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  bottom: -10%; right: -10%;
  animation-delay: -4s;
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.97); }
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--c-accent2);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge i { font-size: 15px; }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.gradient-text {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px; color: var(--c-text2);
  margin-bottom: 2.5rem; letter-spacing: 0.5px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

/* ── Analyzer form ───────────────────────────────────────────── */
.analyzer-form {
  animation: fadeInUp 0.6s 0.3s ease both;
  margin-bottom: 1.5rem;
}

.input-wrap {
  display: flex; align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: var(--r-xl);
  padding: 6px 6px 6px 16px;
  gap: 10px;
  transition: border-color var(--trans), box-shadow var(--trans);
  max-width: 640px; margin: 0 auto 1rem;
}
.input-wrap:focus-within {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.1);
}
.input-icon { font-size: 18px; color: var(--c-text3); flex-shrink: 0; }

.input-wrap input {
  flex: 1; border: none; outline: none;
  background: transparent; color: var(--c-text);
  font-size: 15px; font-family: var(--font-body);
  min-width: 0;
}
.input-wrap input::placeholder { color: var(--c-text3); }

.input-wrap button {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  background: var(--c-accent);
  color: #fff; border: none; border-radius: var(--r-lg);
  font-size: 15px; font-weight: 600; font-family: var(--font-display);
  cursor: pointer; white-space: nowrap;
  transition: background var(--trans), transform var(--trans);
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.input-wrap button:hover:not(:disabled) { background: #0284c7; transform: translateY(-1px); }
.input-wrap button:active:not(:disabled) { transform: translateY(0); }
.input-wrap button:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-icon { font-size: 16px; transition: transform var(--trans); }
.input-wrap button:hover .btn-icon { transform: translateX(3px); }
.btn-spinner {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.input-wrap button.loading .btn-text { display: none; }
.input-wrap button.loading .btn-icon { display: none; }
.input-wrap button.loading .btn-spinner { display: block; }

.form-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: center;
  font-size: 13px; color: var(--c-text3);
}
.example-pills { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; }
.eg-pill {
  padding: 3px 10px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 12px; color: var(--c-text3); cursor: pointer;
  transition: var(--trans);
}
.eg-pill:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* Trust row */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-top: 0.5rem;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--c-text3);
}
.trust-item i { font-size: 15px; color: var(--c-accent); }

/* ── Error ───────────────────────────────────────────────────── */
.error-box {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--r-md);
  color: #fca5a5; font-size: 14px;
  margin: 1.5rem auto; max-width: 640px;
}
.error-box i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── Loading ──────────────────────────────────────────────────── */
.loading-card {
  max-width: 640px; margin: 2rem auto;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  animation: fadeInUp 0.3s ease;
}
.loading-header {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; margin-bottom: 1rem;
}
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.8); } }

.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

.step-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--c-bg2);
  border-radius: var(--r-sm);
  font-size: 13px; color: var(--c-text3);
  border: 1px solid transparent;
  transition: var(--trans);
}
.step-item.active {
  color: var(--c-accent); border-color: rgba(14,165,233,0.2);
  background: rgba(14,165,233,0.05);
}
.step-item.done { color: var(--c-green); }
.step-item i { font-size: 15px; flex-shrink: 0; }

.loading-bar-wrap {
  height: 3px; background: var(--c-bg2); border-radius: 2px;
  margin-top: 1rem; overflow: hidden;
}
.loading-bar {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-purple));
  transition: width 0.5s ease;
}

/* ── Results ──────────────────────────────────────────────────── */
.results-wrap { padding: 0 1.25rem 4rem; }

.result-header {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.4s ease;
}
.site-favicon { width: 20px; height: 20px; border-radius: 4px; flex-shrink: 0; }
.site-name { font-weight: 600; font-size: 15px; }
.site-title { color: var(--c-text2); font-size: 13px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Section labels */
.sec-label {
  font-size: 11px; font-weight: 600; color: var(--c-text3);
  text-transform: uppercase; letter-spacing: 0.8px;
  display: flex; align-items: center; gap: 6px;
  margin: 1.75rem 0 0.75rem;
}
.sec-label i { font-size: 14px; }

/* Metric grid */
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 10px; }
@media (max-width: 600px) { .metric-grid { grid-template-columns: repeat(2, 1fr); } }

.metric-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  animation: fadeInUp 0.4s ease both;
}
.metric-card .mc-label { font-size: 11px; color: var(--c-text3); margin-bottom: 6px; }
.metric-card .mc-value { font-size: 22px; font-weight: 700; font-family: var(--font-display); }
.metric-card .mc-sub { font-size: 11px; color: var(--c-text3); margin-top: 3px; }

/* Cards */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.25rem;
  animation: fadeInUp 0.4s ease both;
}
.card-head {
  font-size: 11px; font-weight: 600; color: var(--c-text3);
  text-transform: uppercase; letter-spacing: 0.6px;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 1rem;
}
.card-head i { font-size: 14px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* Check rows */
.check-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--c-border);
  font-size: 13px;
}
.check-row:last-child { border-bottom: none; }
.check-label { color: var(--c-text2); display: flex; align-items: center; gap: 7px; }
.check-label i { font-size: 14px; color: var(--c-text3); }

/* Tags */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 500; padding: 2px 8px;
  border-radius: 100px;
}
.tag-green  { background: rgba(34,197,94,0.12);  color: #86efac; }
.tag-red    { background: rgba(239,68,68,0.12);   color: #fca5a5; }
.tag-amber  { background: rgba(245,158,11,0.12);  color: #fcd34d; }
.tag-blue   { background: rgba(14,165,233,0.12);  color: #7dd3fc; }
.tag-gray   { background: rgba(100,116,139,0.15); color: #94a3b8; }
.tag-teal   { background: rgba(20,184,166,0.12);  color: #5eead4; }
.tag-purple { background: rgba(139,92,246,0.12);  color: #c4b5fd; }

/* Score circle */
.score-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: 0.5rem 0 1rem; }
.score-circle {
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 3px solid;
  position: relative;
}
.score-circle::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.score-num { font-size: 28px; font-weight: 700; font-family: var(--font-display); line-height: 1; }
.score-lbl { font-size: 10px; color: var(--c-text3); margin-top: 2px; }

/* Speed gauges */
.gauge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gauge-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.gauge-wrap { width: 110px; height: 64px; overflow: hidden; }
.gauge-wrap svg { width: 110px; height: 110px; margin-top: -10px; }
.gauge-label { font-size: 11px; color: var(--c-text2); text-align: center; }

/* Vitals bars */
.vital-bar { margin-bottom: 12px; }
.vital-top { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.vital-name { color: var(--c-text2); }
.vital-val { font-weight: 600; }
.bar-track { height: 5px; background: var(--c-bg2); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }

/* Device tabs */
.device-tabs { display: flex; gap: 6px; margin-bottom: 1rem; }
.d-tab {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 13px; color: var(--c-text3); cursor: pointer;
  transition: var(--trans);
}
.d-tab.active { background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.3); color: var(--c-accent); }
.d-tab i { font-size: 15px; }

/* Plugin list */
.plugin-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--c-border);
  font-size: 13px;
}
.plugin-item:last-child { border-bottom: none; }
.plugin-ico {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--c-bg2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.plugin-ico i { font-size: 16px; color: var(--c-text3); }
.plugin-name { flex: 1; font-weight: 500; }

/* Feature tags */
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 2px; }

/* Actions */
.action-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; padding-bottom: 1rem; }
.action-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 13px; color: var(--c-text2); cursor: pointer;
  transition: var(--trans);
}
.action-btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.action-btn i { font-size: 15px; }

/* ── Features section ────────────────────────────────────────── */
.features-section { padding: 5rem 1.25rem; }
.section-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700; text-align: center;
  margin-bottom: 2.5rem; color: var(--c-text);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  transition: border-color var(--trans), transform var(--trans);
}
.feature-card:hover { border-color: var(--c-border2); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1rem;
}
.speed-icon  { background: rgba(14,165,233,0.12); color: var(--c-accent); }
.sec-icon    { background: rgba(34,197,94,0.12);  color: var(--c-green); }
.seo-icon    { background: rgba(139,92,246,0.12); color: var(--c-purple); }
.plugin-icon { background: rgba(20,184,166,0.12); color: var(--c-teal); }
.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 13px; color: var(--c-text2); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section { padding: 0 1.25rem 5rem; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item[open] { border-color: var(--c-border2); }
.faq-item summary {
  padding: 1rem 1.25rem; cursor: pointer;
  font-weight: 500; font-size: 14px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::after {
  content: '\ea61'; font-family: 'tabler-icons';
  font-size: 16px; color: var(--c-text3);
  transition: transform var(--trans);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { padding: 0 1.25rem 1rem; font-size: 13px; color: var(--c-text2); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding: 2.5rem 1.25rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-start; justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--c-text); display: block; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: var(--c-text3); max-width: 280px; }
.footer-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--c-text3); }
.footer-links a:hover { color: var(--c-text); }
.footer-copy { font-size: 12px; color: var(--c-text3); width: 100%; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Card stagger */
.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.metric-card:nth-child(1) { animation-delay: 0.02s; }
.metric-card:nth-child(2) { animation-delay: 0.06s; }
.metric-card:nth-child(3) { animation-delay: 0.10s; }
.metric-card:nth-child(4) { animation-delay: 0.14s; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg2); }
::-webkit-scrollbar-thumb { background: var(--c-surface2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-border2); }

/* Focus visible */
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 3px; }

/* Mobile */
@media (max-width: 640px) {
  .input-wrap { flex-wrap: nowrap; padding: 5px 5px 5px 12px; }
  .input-wrap button { padding: 9px 14px; font-size: 14px; }
  .trust-row { gap: 14px; }
  .trust-item span { display: none; }
  .nav-logo span { display: none; }
  .footer-inner { flex-direction: column; }
}
