/* ═══════════════════════════════════════════
   Tour Expert AI — Stylesheet
   Refined dark-green editorial theme
   ═══════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #1D9E75;
  --teal-dark: #085041;
  --teal-mid: #0F6E56;
  --teal-light: #E1F5EE;
  --teal-glow: rgba(29,158,117,0.15);
  --coral: #D85A30;
  --coral-light: #FAECE7;
  --ink: #0E1512;
  --ink-soft: #2C3E35;
  --muted: #6B7C75;
  --sand: #F7FAF8;
  --sand-dark: #EEF5F1;
  --white: #FFFFFF;
  --border: rgba(29,158,117,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(247,250,248,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 0.5px solid var(--border);
  animation: fadeDown 0.7s ease both;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: var(--teal-dark);
  text-decoration: none;
}
/* Support both old logo-icon and new logo-mark class names */
.logo-icon, .logo-mark {
  width: 32px; height: 32px; background: var(--teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg, .logo-mark svg { width: 18px; height: 18px; fill: white; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.88rem; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

/* Primary CTA in nav */
.nav-cta, .nav-demo, .nav-login {
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none; padding: 0.55rem 1.2rem; border-radius: 50px;
  transition: all 0.2s;
}
.nav-cta, .nav-demo {
  color: var(--teal-dark);
  border: 0.5px solid var(--teal);
}
.nav-cta:hover, .nav-demo:hover { background: var(--teal-light); }
.nav-login {
  background: var(--ink); color: white;
}
.nav-login:hover { background: var(--teal-dark); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal); color: white;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(29,158,117,0.3);
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(29,158,117,0.4); }

.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; border: 0.5px solid rgba(14,21,18,0.2);
  transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* ── SECTION COMMONS ── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 1.15;
  color: var(--ink); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 520px; }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

/* ── PAGE HERO (shared by contact, support, privacy, terms) ── */
.page-hero {
  padding: 9rem 5% 5rem;
  text-align: center;
  background: var(--sand);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,158,117,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(8,80,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero badge (eyebrow pill) */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-light); border: 0.5px solid rgba(29,158,117,0.3);
  color: var(--teal-mid); padding: 0.35rem 0.9rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: var(--teal);
  border-radius: 50%; animation: pulse 2s infinite;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15; color: var(--ink);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s 0.25s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 500px; margin: 0 auto;
  line-height: 1.7; font-weight: 300;
  animation: fadeUp 0.7s 0.4s ease both;
}

/* ── FAQ shared styles ── */
.faq-section { background: var(--sand-dark); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 6px 24px rgba(29,158,117,0.08); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  text-align: left;
}
.faq-chevron {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, transform 0.25s;
  color: var(--teal); font-size: 0.8rem;
}
.faq-item.open .faq-chevron {
  background: var(--teal); color: white; transform: rotate(180deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
  padding: 0 1.4rem;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.4rem 1.2rem; }
.faq-answer a { color: var(--teal); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ── TOC sidebar shared styles ── */
.toc-title {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.toc-list a {
  display: block; font-size: 0.85rem; color: var(--muted);
  text-decoration: none; padding: 0.4rem 0.7rem;
  border-radius: 8px; transition: background 0.15s, color 0.15s;
  font-weight: 400;
}
.toc-list a:hover { background: var(--teal-light); color: var(--teal-dark); }
.toc-list a.active { background: var(--teal-light); color: var(--teal-dark); font-weight: 500; }

/* ── Shared content section card ── */
.content-section {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 16px; padding: 2.2rem;
  scroll-margin-top: 100px;
  animation: fadeUp 0.6s ease both;
}
.content-section-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem;
}
.content-section-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.content-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--ink);
}
.content-section p {
  font-size: 0.92rem; color: var(--ink-soft);
  line-height: 1.8; margin-bottom: 1rem;
}
.content-section p:last-child { margin-bottom: 0; }
.content-section ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.6rem; margin: 0.8rem 0 1rem;
}
.content-section ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.91rem; color: var(--ink-soft); line-height: 1.65;
}
.content-section ul li::before {
  content: '✓'; color: var(--teal); font-weight: 500;
  flex-shrink: 0; margin-top: 0.05rem;
}
.content-section h3 {
  font-size: 0.97rem; font-weight: 500; color: var(--ink);
  margin: 1.4rem 0 0.5rem;
}

/* Highlight / info box */
.highlight-box {
  background: var(--teal-light);
  border: 0.5px solid rgba(29,158,117,0.25);
  border-radius: 10px; padding: 1rem 1.2rem;
  font-size: 0.87rem; color: var(--teal-dark);
  line-height: 1.65; margin: 1rem 0;
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.highlight-box-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* Warning box */
.warning-box {
  background: rgba(216,90,48,0.06);
  border: 0.5px solid rgba(216,90,48,0.25);
  border-radius: 10px; padding: 1rem 1.2rem;
  font-size: 0.87rem; color: #7a3010;
  line-height: 1.65; margin: 1rem 0;
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.warning-box-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* Contact strip (in legal pages) */
.contact-strip {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 16px; padding: 2rem 2.2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.contact-strip-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem; color: white; margin-bottom: 0.3rem;
}
.contact-strip-text p { font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-strip .btn-primary {
  background: white; color: var(--teal-dark);
  box-shadow: none; white-space: nowrap;
}
.contact-strip .btn-primary:hover { background: var(--sand); transform: translateY(-2px); }

/* Plan table (terms page) */
.plan-table {
  width: 100%; border-collapse: collapse;
  margin: 1.2rem 0; font-size: 0.87rem;
}
.plan-table th {
  background: var(--teal-light);
  color: var(--teal-dark); font-weight: 500;
  padding: 0.7rem 1rem; text-align: left;
  border-bottom: 0.5px solid rgba(29,158,117,0.25);
}
.plan-table td {
  padding: 0.65rem 1rem; color: var(--ink-soft);
  border-bottom: 0.5px solid var(--border);
}
.plan-table tr:last-child td { border-bottom: none; }
.plan-table tr:hover td { background: var(--sand); }

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: white;
}
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  section { padding: 4rem 5%; }
  .page-hero { padding: 7rem 5% 4rem; }
}

/* ── LEGAL PAGES (Privacy + Terms) ── */
.legal-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 4rem; padding: 4rem 5% 6rem;
  align-items: start;
}
.legal-toc {
  position: sticky; top: 100px;
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
}
.legal-content { display: flex; flex-direction: column; gap: 2.5rem; }
.legal-meta { font-size: 0.85rem; color: var(--muted); animation: fadeUp 0.7s 0.5s ease both; }

/* ── CONTACT PAGE ── */
.contact-section { background: white; padding: 5rem 5%; }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: var(--ink); line-height: 1.3; margin-bottom: 15px;
}
.contact-info-sub { font-size: 0.92rem; color: var(--muted); line-height: 1.7; margin-top: -1rem; }
.contact-card {
  background: var(--sand-dark); border: 0.5px solid var(--border);
  border-radius: 14px; padding: 1.3rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(29,158,117,0.1); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.2rem; }
.contact-card-value { font-size: 0.93rem; font-weight: 500; color: var(--ink); }
.contact-card-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.response-badge {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--teal-light); border: 0.5px solid rgba(29,158,117,0.2);
  border-radius: 12px; padding: 1rem 1.3rem;
  font-size: 0.87rem; color: var(--ink-soft); line-height: 1.5;
}
.response-badge-icon { font-size: 1.3rem; flex-shrink: 0; }
.response-badge strong { color: var(--teal-dark); }

/* Contact form */
.contact-form-wrap {
  background: var(--sand-dark); border: 0.5px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.form-title { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--ink); margin-bottom: 0.4rem; }
.form-sub { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 0.5px solid rgba(29,158,117,0.25); border-radius: 10px;
  background: white; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aab7bf; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--teal); color: white; border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 20px rgba(29,158,117,0.25);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }
.form-privacy { text-align: center; margin-top: 1rem; font-size: 0.77rem; color: var(--muted); line-height: 1.5; }
.form-privacy a { color: var(--teal); text-decoration: none; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; animation: fadeUp 0.5s ease both; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--ink); margin-bottom: 0.6rem; }
.form-success p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ── SUPPORT PAGE ── */
.channels-section { background: white; padding: 5rem 5%; }
.channels-inner { max-width: 1100px; margin: 0 auto; }
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.channel-card {
  background: var(--sand-dark); border: 0.5px solid var(--border);
  border-radius: 16px; padding: 2rem; text-align: center; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(29,158,117,0.1); }
.channel-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.channel-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--ink); }
.channel-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.channel-badge {
  display: inline-block; background: var(--teal-light);
  color: var(--teal-dark); font-size: 0.73rem; font-weight: 500;
  padding: 0.25rem 0.8rem; border-radius: 50px; margin-top: 0.2rem;
}
.channel-badge.live { background: rgba(29,158,117,0.2); color: var(--teal-mid); }

/* Guides */
.guides-section { background: var(--sand); padding: 5rem 5%; }
.guides-inner { max-width: 1100px; margin: 0 auto; }
.guides-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0 2.5rem; }
.guide-tab {
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.83rem; font-weight: 400; cursor: pointer;
  border: 0.5px solid var(--border); background: white; color: var(--muted);
  transition: all 0.2s;
}
.guide-tab.active, .guide-tab:hover { background: var(--teal); color: white; border-color: var(--teal); }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.guide-card {
  background: white; border-radius: 14px; padding: 1.5rem;
  border: 0.5px solid var(--border); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(29,158,117,0.1); }
.guide-card-top { display: flex; align-items: center; justify-content: space-between; }
.guide-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light); padding: 0.2rem 0.6rem; border-radius: 50px;
}
.guide-icon { font-size: 1.3rem; }
.guide-title { font-size: 0.95rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.guide-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.guide-arrow { font-size: 0.8rem; color: var(--teal); font-weight: 500; margin-top: auto; padding-top: 0.5rem; }

/* FAQ cat filter */
.faq-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.faq-cat {
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 400; cursor: pointer;
  border: 0.5px solid var(--border); background: white; color: var(--muted); transition: all 0.2s;
}
.faq-cat.active, .faq-cat:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* Status banner */
.status-section { background: var(--sand-dark); padding: 3rem 5%; }
.status-inner {
  max-width: 1100px; margin: 0 auto;
  background: white; border-radius: 16px; padding: 1.75rem 2.2rem;
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.status-left { display: flex; align-items: center; gap: 1.1rem; }
.status-dot-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.status-title { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--ink); }
.status-subtitle { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }
.status-indicators { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.status-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; color: var(--ink-soft); }
.status-pill { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(29,158,117,0.18); }

/* Search */
.search-wrap { max-width: 560px; margin: 2rem auto 0; position: relative; animation: fadeUp 0.7s 0.6s ease both; }
.search-input {
  width: 100%; padding: 1rem 1.3rem 1rem 3.1rem;
  border: 0.5px solid rgba(29,158,117,0.3); border-radius: 50px; background: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--ink); outline: none;
  box-shadow: 0 4px 24px rgba(29,158,117,0.08); transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus { border-color: var(--teal); box-shadow: 0 4px 28px rgba(29,158,117,0.15); }
.search-input::placeholder { color: #aab7bf; }
.search-icon { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 1rem; pointer-events: none; }
.search-results {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: white; border: 0.5px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08); z-index: 50;
}
.search-result-item {
  padding: 0.8rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
  cursor: pointer; transition: background 0.15s; font-size: 0.88rem; color: var(--ink-soft);
  border-bottom: 0.5px solid var(--border); text-decoration: none;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--sand); }
.search-result-icon { font-size: 1rem; flex-shrink: 0; }
.search-result-label { font-weight: 500; color: var(--ink); font-size: 0.87rem; }
.search-result-cat { font-size: 0.73rem; color: var(--muted); margin-top: 0.1rem; }
.search-no-results { padding: 1.2rem 1.3rem; font-size: 0.87rem; color: var(--muted); text-align: center; }

/* ── RESPONSIVE additions ── */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .channels-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .status-inner { flex-direction: column; align-items: flex-start; }
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 5% 5rem; }
  .legal-toc { position: static; }
  .plan-table { font-size: 0.8rem; }
  .plan-table th, .plan-table td { padding: 0.5rem 0.7rem; }
}
