:root {
  --bg: #0a0b10;
  --bg-card: #12141c;
  --bg-elevated: #1a1d28;
  --text: #f8fafc;
  --muted: #94a3b8;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --teal: #14b8a6;
  --green: #22c55e;
  --red: #ef4444;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #14b8a6 100%);
  --gradient-btn: linear-gradient(135deg, #7c3aed, #2563eb);
  --radius: 16px;
  --max: 1200px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.45);
  --shadow-glow: 0 8px 40px rgba(124,58,237,0.18);
  --nav-bg: rgba(10, 11, 16, 0.85);
  --nav-border: rgba(255,255,255,0.06);
  --border-subtle: rgba(255,255,255,0.08);
}

html[data-theme="light"] {
  --bg: #ffffff;
  --bg-card: #f8fafc;
  --bg-elevated: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 28px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.1);
  --shadow-glow: 0 8px 32px rgba(124,58,237,0.12);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-border: rgba(15,23,42,0.08);
  --border-subtle: rgba(15,23,42,0.08);
}

html[data-theme="light"] .glow { opacity: 0.12; }
html[data-theme="light"] .btn-outline {
  border-color: rgba(15,23,42,0.15);
  color: var(--text);
}
html[data-theme="light"] .btn-outline:hover {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.35);
}
html[data-theme="light"] .chat-in { background: #e2e8f0; color: #0f172a; }
html[data-theme="light"] .chat-out { background: #059669; }
html[data-theme="light"] .cta-banner .btn { background: #fff; color: #1e1b4b; }
html[data-theme="light"] .badge {
  background: rgba(124,58,237,0.1);
  color: #6d28d9;
  border-color: rgba(124,58,237,0.2);
}

h1, h2, h3, h4, h5, h6,
.logo, .section-head h2, .form-card h1, .price-card h3,
.portal-card h2, .problem-box h2, .cta-banner h2, footer h4,
.feature-card h3, .stats-value, .faq-question, .testimonial-card .author {
  font-family: Montserrat, Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; background: var(--bg); overflow-x: hidden; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  position: relative;
}
/* Script tags at end of body must not add scroll height */
body > script {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}
.glow-purple { background: #7c3aed; width: 400px; height: 400px; top: -100px; left: -100px; }
.glow-blue { background: #2563eb; width: 350px; height: 350px; top: 200px; right: -80px; }
.glow-teal { background: #0d9488; width: 300px; height: 300px; bottom: 0; left: 30%; }

nav {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(12px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  overflow: visible;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.95rem; }
.logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient);
  display: grid; place-items: center; font-size: 0.75rem;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.8125rem; font-weight: 500; transition: color 0.2s, transform 0.15s; }
.nav-links a:hover { color: var(--text); transform: translateY(-1px); }
.nav-cta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text); cursor: pointer; font-size: 1.1rem;
  display: grid; place-items: center;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.theme-toggle:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: rgba(249,115,22,0.4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { display: flex; align-items: center; gap: 28px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 0.8125rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(124,58,237,0.45); filter: brightness(1.05); }
.btn-outline:hover { border-color: rgba(139,92,246,0.45); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--gradient-btn); color: white; box-shadow: 0 8px 32px rgba(124,58,237,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.15); }
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }

.badge {
  display: inline-block; padding: 5px 12px; border-radius: 6px;
  background: rgba(139,92,246,0.15); color: #c4b5fd; font-size: 0.6875rem; font-weight: 600;
  border: 1px solid rgba(139,92,246,0.25); margin-bottom: 16px; letter-spacing: 0.02em;
}

.hero { position: relative; padding: 56px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { color: var(--muted); font-size: 0.875rem; max-width: 480px; margin-bottom: 24px; line-height: 1.6; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.phone-mock {
  background: var(--bg-card); border-radius: 32px; padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  max-width: 320px; margin: 0 auto;
}
.phone-screen {
  background: #0f1117; border-radius: 24px; padding: 16px; min-height: 420px;
}
.chat-header { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gradient); }
.chat-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 0.82rem; margin-bottom: 10px;
}
.chat-in { background: #1e293b; border-bottom-left-radius: 4px; }
.chat-out { background: #065f46; margin-left: auto; border-bottom-right-radius: 4px; color: #ecfdf5; }

section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); font-size: 0.8125rem; line-height: 1.55; }
.section-head .accent { color: var(--red); }

.problem-box {
  background: var(--bg-card); border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius); padding: 48px; text-align: center; max-width: 800px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.channels { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.channel {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 36px; background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06); min-width: 140px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.channel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(139,92,246,0.35); }
.channel-icon { font-size: 2rem; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-card.signature { border-color: rgba(34,197,94,0.3); background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(139,92,246,0.05)); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.25rem; margin-bottom: 14px;
}
.feature-card h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 0.8125rem; line-height: 1.5; }
.signature-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--green); margin-bottom: 8px;
}

.workflow {
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
  padding: 40px; background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
}
.workflow-step {
  text-align: center; padding: 16px; min-width: 120px;
}
.workflow-step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-btn);
  display: grid; place-items: center; font-weight: 800; margin: 0 auto 8px;
}
.workflow-arrow { color: var(--muted); font-size: 1.5rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.clinic-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.clinic-tag {
  padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.price-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 36px; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.popular { border-color: var(--purple); box-shadow: var(--shadow-glow); transform: scale(1.02); }
.price-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.price-card .popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-btn); padding: 4px 16px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 800;
}
.price-card h3 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 6px; }
.price-card .amount { font-size: 1.75rem; font-weight: 700; }
.price-card ul { list-style: none; margin: 20px 0; }
.price-card li { padding: 5px 0; color: var(--muted); font-size: 0.8125rem; display: flex; gap: 8px; align-items: flex-start; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Stats strip */
.stats-strip {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(59,130,246,0.08) 50%, rgba(20,184,166,0.1) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stats-value {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label { color: var(--muted); font-size: 0.75rem; font-weight: 500; }

/* FAQ accordion */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.is-open { border-color: rgba(139,92,246,0.4); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; background: transparent; border: none; color: var(--text);
  font-size: 0.8125rem; font-weight: 600; text-align: left; cursor: pointer;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  transition: color 0.15s, background 0.15s;
}
.faq-question:hover { color: #c4b5fd; background: rgba(139,92,246,0.06); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(139,92,246,0.15); display: grid; place-items: center;
  font-size: 1.1rem; color: #c4b5fd; transition: transform 0.25s, background 0.2s;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: rgba(139,92,246,0.3); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer { max-height: 240px; padding: 0 24px 20px; }
.faq-answer p { color: var(--muted); font-size: 0.8125rem; line-height: 1.55; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(20,184,166,0.35); }
.testimonial-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote { color: var(--muted); font-size: 0.8125rem; line-height: 1.55; margin-bottom: 12px; font-style: italic; }
.testimonial-card .author { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.testimonial-card .role { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.cta-banner {
  background: var(--gradient); border-radius: 16px; padding: 48px 32px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; margin-bottom: 8px; }
.cta-banner p { opacity: 0.92; margin-bottom: 20px; font-size: 0.8125rem; }
.cta-banner .btn { background: white; color: #1e1b4b; font-size: 0.8125rem; padding: 10px 22px; }

/* Always-dark footer (GN-style) — both themes */
footer.site-footer,
footer {
  background: #08090d !important;
  color: #cbd5e1 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 40px 0 32px;
  margin: 0;
  position: relative;
  z-index: 1;
}
footer .logo { color: #f8fafc !important; }
footer h4 { font-size: 0.6875rem; margin-bottom: 12px; color: #64748b !important; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
footer a { color: #94a3b8 !important; text-decoration: none; font-size: 0.8125rem; display: block; margin-bottom: 6px; transition: color 0.15s; }
footer a:hover { color: #f8fafc !important; }
footer p { color: #94a3b8 !important; font-size: 0.8125rem; }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06) !important; color: #64748b !important; font-size: 0.75rem; text-align: center; }

/* section-light / section-dark — unified via dma-theme.css */

.footer-grid { display: grid; grid-template-columns: 1.35fr 2fr; gap: 40px; align-items: start; }
.footer-links { display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 28px; }
.footer-col h4 { margin-bottom: 12px; }

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  nav {
    padding: 10px 16px 0;
    background: transparent !important;
    border-bottom: none !important;
    min-height: 0;
  }
  nav .container.nav-inner {
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    border-radius: 14px;
    padding: 10px 14px;
    min-height: 52px;
    max-width: 100%;
    box-shadow: var(--shadow-sm);
    justify-content: flex-start;
    gap: 10px;
  }
  .logo-text { display: none; }
  .logo { font-size: 0; gap: 0; }
  .nav-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    margin-left: auto;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
  .nav-inner { position: relative; flex-wrap: nowrap; overflow: visible; }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(300px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 14px;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    max-height: none;
    z-index: 210;
  }
  nav { position: sticky; top: 0; z-index: 200; overflow: visible; }
  .nav-menu.is-open { display: flex !important; }
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px;
  }
  .nav-links a {
    display: block;
    padding: 10px 8px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .nav-links a:hover { background: rgba(139,92,246,0.08); }
  .nav-cta {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .nav-cta .btn { width: 100%; }

  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    min-height: 44px;
    max-height: 48px;
  }
  .nav-cta .btn { max-height: 44px; }

  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    align-items: start;
  }
  .footer-links .footer-col:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .footer-links .footer-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-links .footer-col:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-brand p { max-width: none !important; }
  .hero { text-align: center; padding: 48px 0 64px; }
  .hero p { margin-left: auto; margin-right: auto; font-size: 1rem; }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { width: 100%; }

  section { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-strip { padding: 36px 0; }
  .stat-item { padding: 12px 8px; }
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-item.is-open .faq-answer { padding: 0 18px 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 24px; }
  .price-card .amount { font-size: 2rem; }
  .workflow { flex-direction: column; padding: 24px 16px; }
  .workflow-arrow { transform: rotate(90deg); }
  .channels { gap: 16px; }
  .channel { min-width: 0; flex: 1 1 calc(50% - 8px); padding: 16px; }
  .footer-grid { gap: 28px 20px; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.5rem; }
  .problem-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .logo { font-size: 0.95rem; }
  .logo-icon { width: 34px; height: 34px; font-size: 0.75rem; }
  .badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero h1 { font-size: 2rem; }
  .btn { padding: 9px 16px; font-size: 0.82rem; }
  .phone-mock { max-width: 280px; }
  .clinic-tags { gap: 8px; }
  .clinic-tag { font-size: 0.78rem; padding: 6px 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-value { font-size: 1.5rem; }
}
