/* =====================================================
   DEFIXERHUB — INNER PAGES SHARED STYLESHEET
   Shared by: contact, terms, privacy, escrow-policy, cookie-policy
   Brand Color: #FA623E
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #FA623E;
  --primary-dark: #e8542f;
  --primary-light: #ff8a6e;
  --primary-pale: #fff5f2;
  --secondary: #1a1a2e;
  --dark: #0d0d1a;
  --darker: #080810;
  --text: #1f1f2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --border: #e5e7eb;
  --gradient: linear-gradient(135deg, #FA623E 0%, #ff8a6e 100%);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-orange: 0 8px 32px rgba(250,98,62,0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --nav-height: 68px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --sidebar-width: 260px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}
.container-narrow {
  width: 100%; max-width: 900px;
  margin: 0 auto; padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px; margin: 0 auto;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-pale); }
.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--gradient);
  color: white; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(250,98,62,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO BANNER ===== */
.inner-hero {
  background: var(--dark);
  padding: calc(var(--nav-height) + 64px) 0 72px;
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(250,98,62,0.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.inner-hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(250,98,62,0.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner-content { position: relative; z-index: 1; }
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 20px; font-weight: 500;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.hero-breadcrumb a:hover { color: var(--primary-light); }
.hero-breadcrumb span { color: rgba(255,255,255,0.3); }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,98,62,0.15);
  border: 1px solid rgba(250,98,62,0.3);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.inner-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900; color: white;
  line-height: 1.15; margin-bottom: 16px;
}
.inner-hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inner-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 560px; line-height: 1.7; margin: 0;
}
.hero-meta {
  display: flex; gap: 24px; margin-top: 20px;
  flex-wrap: wrap;
}
.hero-meta span {
  font-size: 13px; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 6px;
}
.hero-meta strong { color: rgba(255,255,255,0.7); }

/* ===== PAGE BODY LAYOUT (sidebar + content) ===== */
.page-body {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 48px; align-items: start;
  padding: 64px 0 80px;
}

/* ===== SIDEBAR TOC ===== */
.sidebar-toc {
  position: sticky; top: calc(var(--nav-height) + 24px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border);
}
.toc-title {
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.toc-list { display: flex; flex-direction: column; gap: 2px; }
.toc-list a {
  display: block; padding: 7px 12px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
  line-height: 1.4;
}
.toc-list a:hover { color: var(--primary); background: var(--primary-pale); }
.toc-list a.active {
  color: var(--primary); background: var(--primary-pale);
  font-weight: 700;
}

/* Mobile TOC accordion */
.toc-mobile {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px; overflow: hidden;
}
.toc-mobile-toggle {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 16px 20px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 700;
  color: var(--text);
}
.toc-mobile-toggle svg { transition: var(--transition); }
.toc-mobile-toggle.open svg { transform: rotate(180deg); }
.toc-mobile-list {
  display: none; padding: 0 12px 12px;
  flex-direction: column; gap: 2px;
}
.toc-mobile-list.open { display: flex; }
.toc-mobile-list a {
  display: block; padding: 8px 12px;
  font-size: 13px; color: var(--text-muted);
  border-radius: 8px; transition: var(--transition);
}
.toc-mobile-list a:hover { color: var(--primary); }

/* ===== PROSE CONTENT ===== */
.prose-content { min-width: 0; }

.policy-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-height) + 24px);
}
.policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.policy-section h2 {
  font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  line-height: 1.3;
}
.policy-section h3 {
  font-size: 17px; font-weight: 700;
  color: var(--text); margin: 24px 0 12px;
}
.policy-section p {
  font-size: 15px; color: var(--text-muted); line-height: 1.8;
}
.policy-section ul, .policy-section ol {
  margin: 12px 0 12px 20px;
}
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-section li {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 8px; padding-left: 4px;
}
.policy-section a { color: var(--primary); }
.policy-section a:hover { text-decoration: underline; }

/* ===== NOTE / ALERT BOXES ===== */
.note-box {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius);
  margin: 20px 0; font-size: 14px; line-height: 1.6;
}
.note-box.info { background: #eff6ff; border-left: 4px solid #3b82f6; color: #1e40af; }
.note-box.warning { background: #fffbeb; border-left: 4px solid #f59e0b; color: #92400e; }
.note-box.success { background: #f0fdf4; border-left: 4px solid #22c55e; color: #15803d; }
.note-box.primary { background: var(--primary-pale); border-left: 4px solid var(--primary); color: var(--primary-dark); }
.note-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ===== DEFINITION BOXES ===== */
.def-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  margin: 16px 0;
}
.def-term {
  font-size: 13px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: 6px;
}
.def-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.def-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }

/* ===== TABLES ===== */
.policy-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); }
.policy-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.policy-table th {
  background: var(--dark); color: white;
  padding: 12px 16px; text-align: left;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.policy-table th:first-child { border-radius: 10px 0 0 0; }
.policy-table th:last-child { border-radius: 0 10px 0 0; }
.policy-table td {
  padding: 12px 16px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top; line-height: 1.6;
}
.policy-table tr:last-child td { border-bottom: none; }
.policy-table tr:hover td { background: var(--off-white); }
.policy-table tbody tr:nth-child(even) td { background: #fafafa; }
.policy-table code {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 5px; padding: 2px 7px;
  font-size: 12px; color: var(--primary-dark); font-family: monospace;
}

/* ===== HIGHLIGHT CARD ===== */
.highlight-card {
  background: var(--gradient); color: white;
  border-radius: var(--radius-lg); padding: 28px 32px;
  margin: 28px 0;
}
.highlight-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.highlight-card p { font-size: 14px; opacity: 0.9; margin: 0; }

/* ===== STEP FLOW ===== */
.step-flow {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: 32px 0; position: relative;
}
.step-flow-item {
  flex: 1; min-width: 120px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; padding: 24px 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 0; transition: var(--transition);
}
.step-flow-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step-flow-item:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.step-flow-item:hover { background: var(--primary-pale); border-color: rgba(250,98,62,0.3); }
.step-flow-num {
  width: 36px; height: 36px;
  background: var(--gradient);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; margin-bottom: 10px;
  flex-shrink: 0;
}
.step-flow-icon { font-size: 24px; margin-bottom: 8px; }
.step-flow-title { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-flow-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* Arrow between steps */
.step-flow-item:not(:last-child)::after {
  content: '→';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; color: var(--primary);
  font-weight: 700; z-index: 1;
  background: white;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(250,98,62,0.2);
}

/* ===== GUARANTEE CARDS ===== */
.guarantee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 32px 0; }
.guarantee-card {
  background: white; border: 2px solid transparent;
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow);
  transition: var(--transition);
  background-clip: padding-box;
  position: relative;
}
.guarantee-card::before {
  content: '';
  position: absolute; inset: -2px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.guarantee-card:hover::before { opacity: 1; }
.guarantee-card:hover { transform: translateY(-4px); }
.guarantee-icon { font-size: 36px; margin-bottom: 12px; }
.guarantee-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.guarantee-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ===== CONTACT CARDS ===== */
.contact-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 48px 0; }
.contact-info-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--transition); box-shadow: var(--shadow);
  text-align: center;
}
.contact-info-card:hover {
  border-color: rgba(250,98,62,0.3);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 56px; height: 56px;
  background: var(--primary-pale);
  border-radius: 50%; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-info-card h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a {
  font-size: 15px; color: var(--text); font-weight: 600; line-height: 1.5;
}
.contact-info-card a { color: var(--primary); transition: var(--transition); }
.contact-info-card a:hover { text-decoration: underline; }
.social-icons-row { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.social-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.social-ico:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }

/* ===== CONTACT FORM LAYOUT ===== */
.contact-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 40px 0; }
.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.contact-form-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / 3; }
.form-label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-label span { color: var(--primary); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-family: inherit;
  color: var(--text); outline: none;
  transition: var(--transition); resize: vertical;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(250,98,62,0.1);
}
.form-textarea { min-height: 140px; }
.btn-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  background: var(--gradient); color: white; border: none;
  border-radius: 100px; font-size: 15px; font-weight: 800;
  font-family: inherit; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(250,98,62,0.45); }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: #f0fdf4; border: 1px solid #22c55e;
  border-radius: var(--radius); color: #15803d;
  font-weight: 600; font-size: 15px; margin-top: 12px;
}

/* Map */
.map-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  position: relative;
}
.map-card iframe { display: block; width: 100%; height: 420px; border: 0; }
.map-address-overlay {
  position: absolute; bottom: 20px; left: 20px;
  background: white; border-radius: 12px;
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 220px;
}
.map-address-overlay strong { display: block; font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.map-address-overlay span { font-size: 12px; color: var(--text-muted); line-height: 1.5; display: block; }
.map-address-overlay a { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 6px; display: inline-block; }

/* ===== FAQ TEASER ===== */
.faq-teaser { padding: 60px 0; background: var(--off-white); margin-top: 48px; }
.faq-teaser h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.faq-teaser p { color: var(--text-muted); margin-bottom: 32px; }
.faq-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.faq-mini-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  transition: var(--transition); cursor: pointer;
}
.faq-mini-card:hover { border-color: rgba(250,98,62,0.3); transform: translateY(-3px); box-shadow: var(--shadow); }
.faq-mini-card .faq-q { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.faq-mini-card .faq-a { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.faq-mini-card .faq-link { font-size: 13px; color: var(--primary); font-weight: 700; margin-top: 12px; display: inline-block; }

/* ===== TOGGLE SWITCH ===== */
.toggle-switch { position: relative; display: inline-block; width: 50px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #d1d5db; border-radius: 100px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: white; border-radius: 50%;
  transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--primary); opacity: 0.6; cursor: not-allowed; }

/* Cookie prefs panel */
.cookie-pref-panel {
  background: white; border: 2px solid rgba(250,98,62,0.2);
  border-radius: var(--radius-lg); padding: 32px;
  margin: -20px auto 48px; max-width: 900px;
  box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.cookie-pref-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.cookie-pref-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.cookie-pref-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cookie-pref-row:last-of-type { border-bottom: none; }
.cookie-pref-info { flex: 1; min-width: 0; }
.cookie-pref-name { font-size: 15px; font-weight: 700; color: var(--text); }
.cookie-pref-note { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.cookie-pref-always { font-size: 12px; font-weight: 700; color: var(--primary); background: var(--primary-pale); padding: 3px 10px; border-radius: 100px; flex-shrink: 0; }
.cookie-save-btn {
  margin-top: 20px; padding: 12px 32px;
  background: var(--gradient); color: white; border: none;
  border-radius: 100px; font-size: 14px; font-weight: 800;
  font-family: inherit; cursor: pointer; transition: var(--transition);
}
.cookie-save-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }

/* Toast */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--dark); color: white;
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Collapsible browser guide */
.browser-guide { margin: 8px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.browser-guide-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--off-white);
  border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 700; color: var(--text); text-align: left;
}
.browser-guide-toggle:hover { background: var(--primary-pale); color: var(--primary); }
.browser-guide-toggle svg { transition: var(--transition); flex-shrink: 0; }
.browser-guide-toggle.open svg { transform: rotate(180deg); }
.browser-guide-body { display: none; padding: 16px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.browser-guide-body.open { display: block; }
.browser-guide-body ol { margin-left: 20px; list-style: decimal; }
.browser-guide-body li { margin-bottom: 6px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient); color: white; border: none;
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow-orange);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); z-index: 900;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(250,98,62,0.5); }

/* ===== FOOTER ===== */
.site-footer { background: var(--darker); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 14px 0 20px; }
.footer-logo { height: 32px; filter: brightness(0) invert(1); }
.footer-socials { display: flex; gap: 8px; }
.footer-social-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); transition: var(--transition);
}
.footer-social-ico:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-col h5 { font-size: 13px; font-weight: 800; color: white; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col a:hover { color: var(--primary); padding-left: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / 4; }
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .def-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --sidebar-width: 0px; }
  .page-body { grid-template-columns: 1fr; gap: 0; }
  .sidebar-toc { display: none; }
  .toc-mobile { display: block; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .faq-mini-grid { grid-template-columns: 1fr; }
  .step-flow-item:not(:last-child)::after { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height);
    left: 0; right: 0; background: white;
    padding: 16px 20px 20px;
    box-shadow: var(--shadow-lg); gap: 2px; z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-links.open a {
    display: block; padding: 12px 16px;
    font-size: 15px; border-radius: 10px;
  }
  .hamburger { display: flex; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 16px; }
  .inner-hero { padding: calc(var(--nav-height) + 40px) 0 52px; }
  .inner-hero h1 { font-size: 26px; }
  .page-body { padding: 40px 0 60px; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .contact-form-card { padding: 24px 20px; }
  .cookie-pref-panel { padding: 20px 16px; margin: -10px auto 32px; }
  .cookie-pref-row { flex-wrap: wrap; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .map-card iframe { height: 280px; }
  .back-to-top { bottom: 20px; right: 16px; width: 42px; height: 42px; font-size: 16px; }
  .step-flow { flex-direction: column; }
  .step-flow-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .step-flow-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
}

@media print {
  .navbar, .sidebar-toc, .back-to-top, .site-footer, .toc-mobile { display: none !important; }
  .page-body { grid-template-columns: 1fr; padding: 0; }
  .inner-hero { padding: 24px 0; }
  .policy-section { page-break-inside: avoid; }
}
