/* ============================================================
   DriveEasy — Premium Car Rental  |  style.css
   Aesthetic: Dark luxury with amber/gold accents
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --bg2:       #111115;
  --bg3:       #18181e;
  --border:    rgba(255,255,255,0.08);
  --accent:    #f5a623;
  --accent2:   #e8920d;
  --text:      #f0ece4;
  --text-muted:#888794;
  --text-dim:  #55535f;
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 8px 40px rgba(0,0,0,0.6);
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Onest', sans-serif;
  --trans:     0.25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,12,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color var(--trans), background var(--trans);
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg3);
}

.nav-link.active { color: var(--accent); }

.header-phone {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--trans), color var(--trans);
}

.header-phone:hover { border-color: var(--accent); color: var(--accent); }

.header-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-contact-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
  white-space: nowrap;
}

.header-contact-icon svg {
  flex-shrink: 0;
}

.header-contact-label {
  font-size: 12px;
  font-weight: 600;
}

.header-contact-tg { color: #2AABEE; }
.header-contact-tg:hover { border-color: #2AABEE; background: rgba(42,171,238,0.08); }

.header-contact-wa { color: #25D366; }
.header-contact-wa:hover { border-color: #25D366; background: rgba(37,211,102,0.08); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FILTERS ──────────────────────────────────────────────── */
.filters-bar {
  padding: 0 0 32px;
}

.filters-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}

.filter-btn:hover { border-color: var(--accent); color: var(--text); }

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

/* ── CARS GRID ────────────────────────────────────────────── */
.cars-section { padding-bottom: 80px; }

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

/* ── CAR CARD ─────────────────────────────────────────────── */
.car-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.3);
  box-shadow: var(--shadow);
}

/* Gallery */
.car-gallery {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg3);
}

.gallery-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}

.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  backdrop-filter: blur(4px);
}

.gallery-btn:hover { background: rgba(245,166,35,0.8); }
.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

.car-class-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(245,166,35,0.9);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Card body */
.car-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.car-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.car-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.car-year {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg3);
  padding: 3px 9px;
  border-radius: 6px;
  flex-shrink: 0;
}

.car-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.spec-icon { font-size: 13px; }

/* Prices */
.price-table {
  background: var(--bg3);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}

.price-row:last-child { border-bottom: none; }

.price-row:hover { background: rgba(255,255,255,0.03); }

.price-period {
  font-size: 12px;
  color: var(--text-muted);
}

.price-val {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.price-val span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
}

/* Features */
.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Book button */
.btn-book {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}

.btn-book:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.page-hero-sub {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 16px;
}

/* ── CONTENT SECTIONS ─────────────────────────────────────── */
.content-section { padding-bottom: 72px; }

.section-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 20px;
}

.section-card h2 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-card h2 .number {
  color: var(--accent);
  margin-right: 8px;
}

.section-card p,
.section-card li {
  color: var(--text-muted);
  line-height: 1.75;
}

.section-card ul, .section-card ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.section-card li::marker { color: var(--accent); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--trans);
}

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

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--trans), background var(--trans);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 28px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 28px 22px;
}

/* ── CONTACTS ─────────────────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: border-color var(--trans);
}

.contact-card:hover { border-color: rgba(245,166,35,0.3); }

.contact-icon { font-size: 28px; margin-bottom: 12px; }

.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.contact-value a {
  color: var(--accent);
  transition: opacity var(--trans);
}

.contact-value a:hover { opacity: 0.8; }

.map-placeholder {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--border) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--border) 40px);
  opacity: 0.4;
}

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.modal-close:hover { color: var(--text); background: var(--bg); }

.modal-header { margin-bottom: 24px; }

.modal-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.modal-car-name {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-group input {
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--trans);
}

.form-group input:focus { border-color: var(--accent); }
.form-group input.error { border-color: #e05555; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  padding: 15px;
  border-radius: 10px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--trans);
  margin-top: 4px;
}

.btn-submit:hover { background: var(--accent2); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.modal-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-success h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-success p { color: var(--text-muted); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25D366;
  color: #000;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity var(--trans);
}

.btn-wa:hover { opacity: 0.9; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand .logo-text { font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.footer-brand .logo-icon { color: var(--accent); font-size: 20px; margin-right: 8px; }

.footer-tagline {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 8px;
}

.footer-nav, .footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a, .footer-contacts a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--trans);
}

.footer-nav a:hover, .footer-contacts a:hover { color: var(--accent); }

.footer-contacts p { font-size: 13px; color: var(--text-dim); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .cars-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav, .header-phone { display: none; }
  .header-contacts { gap: 6px; }
  .burger { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }

  .cars-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .section-card { padding: 22px 20px; }
  .modal { padding: 24px 20px; }
}

/* ── HEADER CONTROLS ──────────────────────────────────────── */
.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* ── SWITCHER (lang & currency) ───────────────────────────── */
.switcher {
  position: relative;
}

.switcher-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
  white-space: nowrap;
}

.switcher-btn:hover,
.switcher.open .switcher-btn {
  border-color: var(--accent);
  background: var(--bg2);
}

.switcher-flag { font-size: 16px; line-height: 1; }
.switcher-label { letter-spacing: 0.03em; }

.switcher-arrow {
  font-size: 10px;
  color: var(--text-dim);
  transition: transform var(--trans);
}

.switcher.open .switcher-arrow { transform: rotate(180deg); }

.switcher-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 150px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.switcher.open .switcher-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.switcher-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--trans), color var(--trans);
  cursor: pointer;
}

.switcher-option:hover {
  background: var(--bg3);
  color: var(--text);
}

.switcher-option.active {
  color: var(--accent);
  font-weight: 600;
}

.option-label { flex: 1; }

.option-check {
  color: var(--accent);
  font-size: 12px;
}

.currency-sym {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  width: 18px;
  text-align: center;
}

/* ── RESPONSIVE HEADER ────────────────────────────────────── */
@media (max-width: 900px) {
  .header-phone { display: none; }
}

@media (max-width: 640px) {
  .nav            { display: none; }
  .burger         { display: flex; }
  .header-controls { gap: 6px; }
  .switcher-label { display: none; }
  .switcher-btn   { padding: 6px 8px; gap: 3px; }
}

/* ── reCAPTCHA badge — move inside the modal  ─────────── */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-notice {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.recaptcha-notice a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.recaptcha-notice a:hover { color: var(--accent); }
