/* ═══════════════════════════════════════════════════
   RouteGuardian Landing Page
   ═══════════════════════════════════════════════════ */

:root {
  --blue:       #0075CF;
  --blue-dark:  #0F70B7;
  --blue-deep:  #0A3D6B;
  --green:      #4ADE80;
  --green-soft: rgba(74, 222, 128, 0.15);
  --amber:      #FFC107;
  --red:        #EF5350;
  --white:      #ffffff;
  --off-white:  #F7F9FC;
  --light:      #EEF2F7;
  --text:       #1A2B3C;
  --text-mid:   #4A5568;
  --text-light: #8896A6;
  --radius:     12px;
  --radius-lg:  20px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── NAV ──────────────────────────────────────────── */

/* ─── REVIEW TOAST (remove before launch) ──────────── */

.review-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: #78350F; color: #FEF3C7;
  border-radius: 12px; padding: 20px 24px;
  max-width: 380px; width: calc(100% - 48px);
  font-size: 13px; line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: toast-in 0.4s ease-out;
}
.review-toast strong { display: block; font-size: 14px; margin-bottom: 4px; color: white; }
.review-toast p { margin: 4px 0; }
.review-toast ol { margin: 8px 0 0 16px; padding: 0; }
.review-toast li { margin-bottom: 2px; }

.review-close {
  position: absolute; top: 8px; right: 8px;
  background: rgba(255,255,255,0.15); border: none; color: #FEF3C7;
  font-size: 22px; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.review-close:hover { background: rgba(255,255,255,0.25); }

@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 480px) {
  .review-toast { bottom: 12px; right: 12px; width: calc(100% - 24px); }
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav.scrolled .nav-name,
.nav.scrolled .nav-links a { color: var(--text); }

.nav-inner { display: flex; align-items: center; gap: 32px; position: relative; }

.nav-brand { display: flex; align-items: center; gap: 10px; }

.nav-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-icon img {
  width: 22px; height: 22px; object-fit: contain;
}

.nav-name { font-weight: 700; font-size: 18px; color: white; }

.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-feedback-link { display: none; }

/* Hamburger toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: 0.2s;
}
.nav.scrolled .nav-toggle span { background: var(--text); }

/* ─── BUTTONS ──────────────────────────────────────── */

.btn {
  display: inline-block; padding: 12px 28px;
  background: var(--green); color: var(--blue-deep);
  font-weight: 600; font-size: 15px; border-radius: 50px;
  text-decoration: none; transition: all 0.2s;
  border: 2px solid var(--green);
}
.btn:hover { background: #3fcf72; border-color: #3fcf72; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: white; border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

/* On light backgrounds, outline buttons need dark text */
.price-card .btn-outline {
  color: var(--text); border-color: var(--text-light);
}
.price-card .btn-outline:hover {
  background: var(--light); border-color: var(--text); color: var(--text);
}

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; }

/* ─── HERO ─────────────────────────────────────────── */

.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, #2b8fd6 100%);
  padding: 140px 0 120px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,222,128,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner { display: flex; align-items: center; gap: 60px; }

.hero-text { flex: 1; }
.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px;
}

.text-green { color: var(--green); }

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-trust { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Phone mockup */
.hero-visual { flex-shrink: 0; }

.phone-mock {
  width: 280px; height: 540px;
  background: url('assets/app-bg.png') center/cover no-repeat;
  border-radius: 36px;
  border: 4px solid #222;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 36px 14px 14px;
  position: relative;
}

.phone-screen { height: 100%; position: relative; z-index: 1; }

.mock-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding: 0 4px;
}
.mock-header { font-size: 20px; font-weight: 700; color: white; }
.mock-gear { width: 20px; height: 20px; }

.mock-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px; margin-bottom: 8px;
}

.mock-si { width: 26px; height: 26px; flex-shrink: 0; }

.mock-text { flex: 1; color: white; font-size: 12px; line-height: 1.4; }
.mock-text strong { font-size: 13px; }
.mock-text small { color: rgba(255,255,255,0.5); font-size: 11px; }

.mock-name-row { display: flex; align-items: center; gap: 4px; }

.mock-ind { font-size: 7px; line-height: 1; }
.mock-ind.green { color: var(--green); }
.mock-ind.amber { color: var(--amber); }

.mock-badge {
  font-size: 10px; font-weight: 600; padding: 4px 10px;
  border-radius: 8px; white-space: nowrap; color: white;
}
.mock-badge.green { background: rgba(74,222,128,0.2); }
.mock-badge.blue  { background: rgba(96,197,255,0.2); }

.wave-divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 80px; }

/* ─── SOCIAL PROOF STRIP ───────────────────────────── */

.proof-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--light);
}

.proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}

.proof-item { text-align: center; }
.proof-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--blue); }
.proof-item span { font-size: 13px; color: var(--text-light); }

.proof-divider {
  width: 1px; height: 32px; background: var(--light);
}

/* ─── MESSAGE BUBBLES & ALERT DOTS (feature visuals) ── */

.msg-bubble {
  padding: 8px 12px; border-radius: 12px;
  font-size: 13px; color: white; margin-bottom: 2px;
  max-width: 85%; line-height: 1.4;
}
.msg-bubble.out {
  background: rgba(74,222,128,0.25);
  margin-left: auto; border-bottom-right-radius: 4px;
}
.msg-bubble.in {
  background: rgba(255,255,255,0.15);
  margin-right: auto; border-bottom-left-radius: 4px;
}
.msg-meta {
  font-size: 11px; color: rgba(255,255,255,0.4);
  margin-bottom: 10px; text-align: right;
}
.msg-bubble.in + .msg-meta { text-align: left; }

.alert-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; margin-right: 8px; vertical-align: middle;
}
.alert-dot.green { background: var(--green); }
.alert-dot.amber { background: var(--amber); }
.alert-dot.red   { background: var(--red); }
.alert-dot.blue  { background: #60C5FF; }

@media (max-width: 768px) {
  .proof-divider { display: none; }
}

/* ─── SECTIONS ─────────────────────────────────────── */

.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--off-white); }
.section-green {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: white;
}
.section-blue {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: white;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-light); font-size: 14px; margin-top: 8px; }

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; line-height: 1.25; margin-bottom: 16px;
}

.section-sub {
  font-size: 17px; color: var(--text-mid);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}

.section-sub-white { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

.section-tagline { font-size: 18px; margin-top: 16px; }

.section-label {
  display: inline-block; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue); margin-bottom: 8px;
}
.section-label.green { color: var(--green); }

/* ─── FEATURE ROWS ─────────────────────────────────── */

.feature-row {
  display: flex; align-items: center; gap: 60px;
  margin: 48px 0;
}
.feature-row.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; }
.feature-text h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.feature-text p { color: var(--text-mid); margin-bottom: 12px; line-height: 1.7; }

.feature-visual { flex: 1; display: flex; justify-content: center; }

.feature-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: flex-start; gap: 16px;
  max-width: 380px; width: 100%;
}
.feature-card.green-tint { background: var(--green-soft); }

.buddy-robot-wrap {
  text-align: center;
  background: var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 260px; width: 100%;
  overflow: visible;
}
.buddy-img {
  width: 180px; height: auto;
}

.buddy-robot-label {
  font-size: 14px; font-weight: 600;
  color: #16a34a; margin-top: 12px;
}

.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0; color: var(--blue);
}
.feature-icon.green { color: var(--green); }

.feature-card strong { display: block; margin-bottom: 4px; }
.feature-card p { font-size: 14px; color: var(--text-mid); margin: 0; }

/* ─── SMART MONITOR DEMO ──────────────────────────── */

.smart-monitor-demo {
  background: var(--blue-deep); border-radius: var(--radius-lg);
  padding: 24px; color: white; max-width: 380px; width: 100%;
}

.sm-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.sm-badge {
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 6px; color: white;
}
.sm-badge.green { background: rgba(74,222,128,0.25); }

.sm-confidence { font-size: 12px; color: rgba(255,255,255,0.6); flex: 1; }

.sm-bar {
  height: 6px; background: rgba(255,255,255,0.15);
  border-radius: 3px; margin-bottom: 16px; overflow: hidden;
}
.sm-fill { height: 100%; background: var(--green); border-radius: 3px; }

.sm-label {
  font-size: 13px; font-weight: 700; margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

.sm-row {
  font-size: 13px; color: rgba(255,255,255,0.6);
  padding: 4px 0;
}
.sm-row strong { color: white; }

/* ─── BUDDY SYSTEM ─────────────────────────────────── */

.buddy-content { max-width: 800px; margin: 0 auto; }
.buddy-headline { font-size: 1.3rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.buddy-content > p { color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }

.buddy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }

.buddy-point { text-align: center; }
.buddy-icon {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: rgba(255,255,255,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.buddy-icon svg { width: 24px; height: 24px; color: var(--green); }

.buddy-point h4 { font-size: 15px; margin-bottom: 6px; }
.buddy-point p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.buddy-unique {
  background: rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 20px; border-left: 3px solid var(--green);
}
.buddy-unique p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; margin: 0; }

/* ─── TRUST ────────────────────────────────────────── */

.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

.trust-card {
  text-align: center; padding: 32px 24px;
  background: var(--off-white); border-radius: var(--radius-lg);
}

.trust-icon { width: 40px; height: 40px; color: var(--blue); margin: 0 auto 16px; }

.trust-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* (checklist section removed — content was redundant) */

/* ─── PRICING ──────────────────────────────────────── */

.pricing-grid { display: flex; gap: 24px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.price-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 36px 32px; text-align: center;
  width: 300px; position: relative;
  border: 2px solid transparent;
}
.price-card.featured {
  border-color: var(--green);
  background: white;
  box-shadow: 0 8px 32px rgba(74,222,128,0.12);
}

.price-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--blue-deep);
  font-size: 11px; font-weight: 700; padding: 4px 16px;
  border-radius: 20px; text-transform: uppercase;
}

.price-tier { font-size: 14px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--text); }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-mid); }
.price-period { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }

.price-features { list-style: none; text-align: left; margin-bottom: 24px; }
.price-features li {
  padding: 6px 0; font-size: 14px; color: var(--text-mid);
  padding-left: 24px; position: relative;
}
.price-features li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green-soft);
  border: 2px solid var(--green);
}

.sponsored-note {
  background: var(--green-soft); border-radius: var(--radius);
  padding: 16px 24px; margin-top: 24px; display: inline-block;
}
.sponsored-note p { font-size: 14px; color: var(--text); margin: 0; }
.sponsored-note a { color: var(--blue); font-weight: 600; }

.community-cta { margin-top: 40px; }

.pricing-note { font-size: 13px; color: var(--text-light); margin-top: 24px; }

/* ─── FAQ ──────────────────────────────────────────── */

.faq-list { max-width: 700px; margin: 32px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--light);
  padding: 16px 0;
}

.faq-item summary {
  font-weight: 600; cursor: pointer; font-size: 15px;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--text-light); }
.faq-item[open] summary::after { content: '-'; }

.faq-item p { margin-top: 8px; color: var(--text-mid); font-size: 14px; line-height: 1.7; }

/* ─── DOWNLOAD CTA ─────────────────────────────────── */

.download-pairs { display: flex; gap: 40px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.download-pair { text-align: center; }
.download-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.download-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.store-badge { display: block; }
.badge-svg { width: 160px; height: 48px; border-radius: 8px; }

/* ─── FOOTER ───────────────────────────────────────── */

.footer {
  background: var(--blue-deep); color: rgba(255,255,255,0.6);
  padding: 40px 0;
}

.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; }
.footer-brand span { color: white; font-weight: 700; }

.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: white; }

.footer-copy { font-size: 12px; }

/* ─── MOBILE FEEDBACK FAB ──────────────────────────── */

.feedback-fab {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 150;
  background: var(--amber); color: #78350F;
  border: none; border-radius: 50px;
  padding: 12px 20px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  cursor: pointer;
}

@media (max-width: 768px) {
  .feedback-fab { display: block; }
}

/* ─── FEEDBACK MODAL ───────────────────────────────── */

.btn-feedback {
  background: var(--amber); color: #78350F; border-color: var(--amber);
}
.btn-feedback:hover { background: #F59E0B; border-color: #F59E0B; }

.feedback-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.feedback-overlay.open { display: flex; }

.feedback-panel {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; max-width: 520px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
}

.feedback-close {
  position: absolute; top: 8px; right: 8px;
  background: none; border: none; font-size: 24px;
  color: var(--text-light); cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.feedback-close:hover { color: var(--text); }

.feedback-panel h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feedback-panel > p { font-size: 14px; color: var(--text-mid); margin-bottom: 12px; }

.feedback-prompts {
  margin: 0 0 20px 18px; padding: 0;
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}
.feedback-prompts li { margin-bottom: 2px; }

.feedback-input {
  display: block; width: 100%; padding: 10px 14px;
  border: 1px solid var(--light); border-radius: 8px;
  font-family: inherit; font-size: 14px; color: var(--text);
  margin-bottom: 10px; outline: none;
}
.feedback-input:focus { border-color: var(--blue); }

.feedback-textarea { resize: vertical; min-height: 100px; }

.feedback-label {
  display: block; font-size: 13px; color: var(--text-mid);
  margin-bottom: 6px;
}

.feedback-thanks {
  text-align: center; font-size: 15px; font-weight: 600;
  color: var(--blue); padding: 24px 0;
}

/* ─── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-sub { margin: 0 auto 32px; font-size: 16px; }
  .hero-cta { justify-content: center; }
  .hero-trust { text-align: center; }
  .phone-mock { width: 260px; height: 500px; }

  /* Nav */
  .nav-brand { flex: 1; justify-content: center; }
  .nav-toggle {
    display: flex; padding: 10px;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
    position: absolute; right: 0;
  }
  .nav-cta { display: none; }
  .btn-feedback { display: none; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text); font-size: 16px; }
  .nav-feedback-link { display: block; color: var(--blue) !important; font-weight: 600; }

  /* Sections */
  .section { padding: 48px 0; }

  /* Feature rows */
  .feature-row { flex-direction: column; gap: 24px; }
  .feature-row.reverse { flex-direction: column-reverse; gap: 24px; }
  .feature-card, .smart-monitor-demo { max-width: 100%; }

  /* Grids */
  .buddy-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 24px 20px; }

  /* Pricing */
  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card { width: 100%; max-width: 360px; }

  /* Download */
  .download-pairs { flex-direction: column; gap: 24px; align-items: center; }

  /* FAQ */
  .faq-item summary { padding: 12px 0; min-height: 44px; }
}

@media (max-width: 480px) {
  /* Review toast - full width bottom sheet */
  .review-toast {
    bottom: 0; right: 0; left: 0; width: 100%;
    max-width: 100%; border-radius: 12px 12px 0 0;
    max-height: 60vh; overflow-y: auto;
    font-size: 13px; padding: 20px 20px 24px;
  }
  .review-close { width: 44px; height: 44px; font-size: 24px; }

  /* Proof strip */
  .proof-inner { gap: 16px 24px; }
  .proof-item strong { font-size: 14px; }
  .proof-item span { font-size: 12px; }

  /* Store badges */
  .badge-svg { width: 140px; height: 44px; }

  /* Buddy */
  .buddy-unique { padding: 16px 14px; }

  /* Feedback modal */
  .feedback-overlay { padding: 12px; }
  .feedback-panel {
    padding: 20px 16px; max-width: 100%;
    max-height: 95vh; border-radius: 16px;
  }
  .feedback-panel h3 { font-size: 1.1rem; }
  .feedback-prompts { font-size: 12px; margin-left: 14px; }
}
