/* ════════════════════════════════════════════════════════════
   SpeakOh — shared stylesheet (dark theme)
   AI sales call coaching · SaaS marketing site
   Design system adapted to SpeakOh's brand purple (#7c3aed).
   ════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand constants */
  --purple:   #7c3aed;
  --purple-d: #6d28d9;
  --violet:   #a78bfa;
  --cyan:     #22d3ee;
  --maxw:     1180px;

  /* Palette */
  --bg:        #08081a;
  --bg-alt:    #0d0d24;
  --card:      #111128;
  --border:    #1e1e3a;
  --heading:   #ffffff;
  --text:      #c0c0e0;
  --body:      #9b9bc4;
  --muted:     #8080a8;
  --faint:     #3a3a5c;
  --nav-bg:    rgba(8,8,26,0.82);
  --nav-bg-s:  rgba(8,8,26,0.93);
  --menu-bg:   rgba(10,10,30,0.98);
  --glow-a:    rgba(124,58,237,0.13);
  --glow-b:    rgba(34,211,238,0.07);
  --grid-line: rgba(124,58,237,0.05);
  --card-shadow: 0 24px 48px -20px rgba(0,0,0,0.6);
  --deep-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);

  /* Score colors */
  --good: #34d399;
  --warn: #fbbf24;
  --bad:  #f87171;
  color-scheme: dark;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--purple); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 0;
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Scroll reveal (hidden state only applies once JS confirms it can reveal) ── */
html.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ── NAV ── */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
header.nav.scrolled { border-bottom-color: var(--border); background: var(--nav-bg-s); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .nb-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 21px; letter-spacing: -0.01em; color: var(--heading);
}
.nav-brand .nb-name .nb-acc {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-brand .nb-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 8px; letter-spacing: 0.26em; color: var(--violet);
  text-transform: uppercase; margin-top: 4px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--heading); }
.nav-links a.active, .nav-links a[aria-current="page"] {
  color: var(--heading);
  border-bottom: 2px solid var(--purple);
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-signin {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500; transition: color .2s;
}
.nav-signin:hover { color: var(--heading); }
.nav-cta {
  background: var(--purple); color: #fff;
  border: none; padding: 10px 22px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--purple-d); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  width: 42px; height: 42px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--heading); border-radius: 2px;
  transition: transform .25s, opacity .25s;
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: var(--menu-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 24px;
  backdrop-filter: blur(14px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 4px;
  color: var(--heading); text-decoration: none;
  font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--violet); }
.mobile-menu .mm-cta {
  margin-top: 16px; text-align: center; background: var(--purple); color: #fff;
  border-radius: 8px; font-weight: 600; border-bottom: none;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--purple); color: #fff;
  border: none; padding: 15px 34px;
  border-radius: 10px; font-size: 15px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--purple-d); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(124,58,237,0.35);
}
.btn-secondary {
  background: transparent; color: var(--heading);
  border: 1px solid var(--faint); padding: 15px 34px;
  border-radius: 10px; font-size: 15px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--violet); color: var(--violet); background: rgba(124,58,237,0.06); }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--violet); text-decoration: none;
  font-size: 14.5px; font-weight: 600;
  transition: gap .2s;
}
.text-link:hover { gap: 11px; text-decoration: underline; }

/* ── HERO (home) ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, var(--glow-a) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 15%, var(--glow-b) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  align-items: center; gap: 48px;
  position: relative; z-index: 2; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 28px;
  border: 1px solid rgba(167,139,250,0.3);
  padding: 6px 16px; border-radius: 20px;
  background: rgba(124,58,237,0.08);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--good); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(38px, 5vw, 64px);
  line-height: 1.07; letter-spacing: -0.02em;
  color: var(--heading); margin-bottom: 24px;
}
h1.hero-title span, .grad-text {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px; color: var(--body); line-height: 1.75;
  max-width: 540px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted); margin-top: 18px; }

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-visual svg { width: min(440px, 100%); height: auto; }
.orbit-spin { transform-origin: 150px 150px; animation: orbitSpin 36s linear infinite; }
.orbit-spin-rev { transform-origin: 150px 150px; animation: orbitSpin 52s linear infinite reverse; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Floating scorecard used as hero visual */
.hero-mock {
  width: 100%; max-width: 420px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  box-shadow: var(--deep-shadow);
  position: relative; z-index: 2;
}
.hero-mock::before {
  content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(34,211,238,0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-float {
  position: absolute; z-index: 3;
  background: var(--card); border: 1px solid var(--faint);
  border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--card-shadow);
  display: flex; align-items: center; gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-float.f1 { top: -26px; right: -10px; }
.hero-float.f2 { bottom: -28px; left: -16px; animation-delay: 1.6s; }
.hero-float .hf-ic {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.22); color: var(--cyan);
}
.hero-float .hf-ic svg { width: 18px; height: 18px; }
.hero-float .hf-k { font-size: 11px; color: var(--muted); }
.hero-float .hf-v { font-size: 14px; font-weight: 700; color: var(--heading); }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-9px); } }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 164px 0 76px;
  position: relative; overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 90% at 80% 10%, var(--glow-a) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 90%, var(--glow-b) 0%, transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--heading); margin-bottom: 20px;
  max-width: 760px;
}
.page-hero .lead {
  font-size: 18px; color: var(--body); line-height: 1.75;
  max-width: 660px;
}
.page-hero .hero-actions { margin-top: 36px; }

/* ── STATS ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stats-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(30px, 3vw, 40px); color: var(--heading);
  letter-spacing: -0.02em; line-height: 1.1;
}
.stat-num span { color: var(--violet); }
.stat-label {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 6px;
}

/* ── SECTION SHARED ── */
section { padding: 110px 0; }
section.tight { padding: 84px 0; }
.sec-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 16px;
}
.sec-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15; margin-bottom: 18px; color: var(--heading);
  letter-spacing: -0.01em;
}
.sec-title span { color: var(--violet); }
.sec-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 580px; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }
.alt-bg { background: var(--bg-alt); }

/* ── SERVICES / FEATURE GRID ── */
.services-header { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  transition: border-color 0.25s, transform 0.25s, box-shadow .25s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover {
  border-color: var(--faint); transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(124,58,237,0.12);
  border-radius: 13px; border: 1px solid rgba(124,58,237,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--violet);
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon.danger { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.25); color: var(--bad); }
.service-icon.warn { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.25); color: var(--warn); }
.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 18px;
  color: var(--heading); margin-bottom: 12px;
}
.service-desc { font-size: 14.5px; color: var(--muted); line-height: 1.7; flex: 1; }
.service-card .text-link { margin-top: 20px; font-size: 13.5px; }

/* ── SERVICE DETAIL BLOCKS ── */
.svc-detail {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 46px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 26px;
  scroll-margin-top: 96px;
}
.svc-detail-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.svc-detail-head .service-icon { margin-bottom: 0; }
.svc-detail h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(21px, 2.2vw, 26px);
  color: var(--heading);
}
.svc-detail p { font-size: 15px; color: var(--body); line-height: 1.75; margin-bottom: 16px; }
.svc-detail p:last-child { margin-bottom: 0; }
.svc-side-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 16px;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--body); line-height: 1.6; }
.check-list svg { width: 18px; height: 18px; color: var(--violet); flex-shrink: 0; margin-top: 3px; }
.check-list.cyan svg { color: var(--cyan); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 16px;
  border: 1px solid var(--border);
  color: var(--muted); background: var(--bg-alt);
  white-space: nowrap;
}

/* ── GENERIC CARD GRIDS ── */
.cards-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px; margin-top: 56px;
}
.icard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 28px;
  transition: border-color .25s, transform .25s;
}
.icard:hover { border-color: var(--faint); transform: translateY(-4px); }
.icard .service-icon { width: 46px; height: 46px; margin-bottom: 18px; }
.icard .service-icon svg { width: 23px; height: 23px; }
.icard h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 16.5px; color: var(--heading); margin-bottom: 10px;
}
.icard p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.icard .price-tag { font-size: 13px; color: var(--violet); font-weight: 600; margin-top: 14px; }

/* ── DETAIL ROWS (alternating) ── */
.detail-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-of-type { border-bottom: none; }
.detail-row h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(22px, 2.4vw, 30px);
  color: var(--heading); margin-bottom: 16px; line-height: 1.2;
}
.detail-row > div > p { font-size: 15.5px; color: var(--body); line-height: 1.75; margin-bottom: 22px; }
.detail-row .check-list { margin-bottom: 6px; }
.d-panel {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px;
  box-shadow: var(--card-shadow);
}
.d-panel-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 18px;
}
.d-panel .uc { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.d-panel .uc:last-child { border-bottom: none; padding-bottom: 0; }
.d-panel .uc:first-of-type { padding-top: 0; }
.uc-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.15);
  border-radius: 10px; color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.uc-icon svg { width: 19px; height: 19px; }
.uc-title { font-weight: 600; font-size: 14.5px; color: var(--heading); margin-bottom: 2px; }
.uc-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

@media (min-width: 981px) {
  .detail-row.flip > div:first-child { order: 2; }
  .detail-row.flip > div:last-child { order: 1; }
}

/* ── SCORECARD / CHAT MOCKS ── */
.product-mock, .mock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--deep-shadow);
}
.pm-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.pm-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.pm-title { font-weight: 700; font-size: 15px; color: var(--heading); margin-top: 4px; }
.pm-score { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: var(--cyan); line-height: 1; }
.pm-score small { font-size: 14px; color: var(--muted); font-weight: 600; }
.pm-row { margin-bottom: 16px; }
.pm-row-head { display: flex; justify-content: space-between; font-size: 12px; color: var(--body); margin-bottom: 6px; }
.pm-row-head .good { color: var(--good); } .pm-row-head .warn { color: var(--warn); } .pm-row-head .bad { color: var(--bad); }
.pm-bar { height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.pm-fill { height: 100%; border-radius: 4px; }
.pm-note {
  margin-top: 20px; padding: 14px 16px;
  background: rgba(34,211,238,0.06);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 12px;
}
.pm-note-label { font-size: 11px; font-weight: 700; color: var(--cyan); margin-bottom: 4px; letter-spacing: 0.06em; }
.pm-note-text { font-size: 12.5px; color: var(--body); line-height: 1.6; }

/* Chat bubbles (AI coach) */
.chat { display: flex; flex-direction: column; gap: 14px; }
.chat-row { display: flex; gap: 12px; }
.chat-row.me { flex-direction: row-reverse; }
.chat-av {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.chat-av.user { background: var(--border); color: var(--text); }
.chat-av.ai { background: linear-gradient(135deg, var(--purple), var(--cyan)); color: #fff; }
.chat-bubble {
  max-width: 80%; font-size: 13px; line-height: 1.6;
  padding: 11px 14px; border-radius: 14px;
}
.chat-row .chat-bubble { background: var(--bg-alt); border: 1px solid var(--border); color: var(--body); border-top-left-radius: 4px; }
.chat-row.me .chat-bubble { background: rgba(124,58,237,0.16); border: 1px solid rgba(124,58,237,0.35); color: var(--text); border-top-left-radius: 14px; border-top-right-radius: 4px; }

/* Leaderboard rows */
.lb-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.lb-row:last-child { margin-bottom: 0; }
.lb-av {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}
.lb-main { flex: 1; }
.lb-head { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
.lb-name { color: var(--body); }
.lb-score { font-weight: 700; }
.lb-score.good { color: var(--good); } .lb-score.warn { color: var(--warn); } .lb-score.bad { color: var(--bad); }
.lb-alert {
  margin-top: 6px; padding: 12px 14px; border-radius: 10px; font-size: 12px; line-height: 1.55;
  background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.2); color: #f3d27a;
}

/* ── PRODUCT SHOWCASE ── */
.product-card {
  position: relative; z-index: 2;
  background: linear-gradient(135deg, rgba(124,58,237,0.10) 0%, rgba(34,211,238,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
  margin-top: 56px;
}
.product-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 20px;
  border: 1px solid rgba(34,211,238,0.35);
  padding: 6px 14px; border-radius: 20px;
  background: rgba(34,211,238,0.07);
}
.product-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(26px, 3vw, 38px);
  color: var(--heading); margin-bottom: 14px;
}
.product-desc { font-size: 16px; color: var(--body); line-height: 1.75; margin-bottom: 28px; max-width: 480px; }
.product-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.product-point { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--body); }
.product-point svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--cyan); }
.product-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px; margin-top: 56px;
}

/* ── PRICING ── */
.billing-toggle { display: flex; align-items: center; justify-content: center; margin: 40px 0 8px; }
.billing-switch { display: inline-flex; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 30px; padding: 5px; }
.billing-switch button {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600;
  color: var(--muted); padding: 9px 20px; border-radius: 22px; transition: background .2s, color .2s;
}
.billing-switch button.active { background: var(--purple); color: #fff; }
.billing-switch button .save { color: var(--good); font-weight: 700; }
.billing-switch button.active .save { color: #d9fbe9; }

.price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 20px; margin: 48px auto 0;
  align-items: stretch;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 26px;
  text-align: left; position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--purple); }
.price-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 14px; white-space: nowrap;
}
.price-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 16px; color: var(--heading); margin-bottom: 6px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.price-for { font-size: 13px; color: var(--muted); margin-bottom: 20px; min-height: 38px; }
.price-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 36px; color: var(--heading); line-height: 1;
}
.price-amount small { font-size: 15px; font-weight: 600; color: var(--muted); }
.price-alt { font-size: 12.5px; color: var(--muted); margin-top: 7px; min-height: 18px; }
.price-alt strong { color: var(--good); font-weight: 600; }
.price-card .check-list { margin: 22px 0 26px; flex: 1; }
.price-card .check-list li { font-size: 13px; }
.price-card .btn-primary, .price-card .btn-secondary { text-align: center; padding: 12px 18px; font-size: 13.5px; }
.price-note {
  margin-top: 12px; padding: 8px 10px;
  font-size: 11.5px; font-weight: 600; text-align: center; line-height: 1.45;
  color: var(--good);
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 8px;
}
/* Billing visibility */
.price-grid[data-billing="annual"] .bill-monthly { display: none; }
.price-grid[data-billing="monthly"] .bill-annual { display: none; }

/* ── WHY US ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.why-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 420px;
}
.why-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.why-ring-1 { width: 360px; height: 360px; border-color: rgba(124,58,237,0.18); }
.why-ring-2 { width: 260px; height: 260px; border-color: rgba(124,58,237,0.3); border-style: dashed; animation: spin 22s linear infinite; }
.why-ring-3 { width: 165px; height: 165px; border-color: rgba(34,211,238,0.25); animation: spin 13s linear infinite reverse; }
.why-center {
  width: 104px; height: 104px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet); z-index: 2;
  box-shadow: 0 0 60px rgba(124,58,237,0.25);
}
.why-center svg { width: 52px; height: 52px; }
.why-orb { position: absolute; width: 9px; height: 9px; border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }

.why-points { display: flex; flex-direction: column; gap: 30px; }
.why-point { display: flex; gap: 18px; }
.why-check {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet); margin-top: 2px;
}
.why-check svg { width: 15px; height: 15px; }
.why-point-title { font-weight: 600; font-size: 16.5px; color: var(--heading); margin-bottom: 5px; }
.why-point-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ── SPLIT (generic two-col, used in benefits/AI sections) ── */
.ai-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.ai-feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.ai-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform .2s;
}
.ai-feature:hover { border-color: rgba(34,211,238,0.35); transform: translateX(4px); }
.ai-feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.18);
  border-radius: 10px; color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.ai-feature-icon svg { width: 21px; height: 21px; }
.ai-feature-title { font-weight: 600; font-size: 15px; color: var(--heading); margin-bottom: 4px; }
.ai-feature-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.ai-visual { display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.ai-card-stack { position: relative; width: 310px; height: 330px; }
.ai-card-item {
  position: absolute;
  width: 270px; background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 22px;
  box-shadow: var(--card-shadow);
}
.ai-card-item:nth-child(1) { top: 0; left: 40px; transform: rotate(-3deg); }
.ai-card-item:nth-child(2) { top: 54px; left: 10px; transform: rotate(1deg); z-index: 2; border-color: var(--faint); }
.ai-card-item:nth-child(3) { top: 108px; left: 25px; z-index: 3; border-color: rgba(124,58,237,0.5); }
.ai-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet); margin-bottom: 7px; }
.ai-card-value { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 24px; color: var(--heading); }
.ai-card-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.ai-bar { height: 6px; background: var(--border); border-radius: 3px; margin-top: 14px; overflow: hidden; }
.ai-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--purple), var(--cyan)); }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 33px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--faint), transparent);
}
.process-step { text-align: center; padding: 0 18px; position: relative; }
.process-num {
  width: 66px; height: 66px; margin: 0 auto 22px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px;
  color: var(--violet); position: relative; z-index: 2;
  transition: border-color .25s, box-shadow .25s;
}
.process-step:hover .process-num {
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 30px rgba(124,58,237,0.25);
}
.process-step-title { font-weight: 700; font-size: 15.5px; color: var(--heading); margin-bottom: 9px; }
.process-step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── TIMELINE (how-it-works page) ── */
.timeline { position: relative; margin-top: 72px; }
.timeline::before {
  content: '';
  position: absolute; left: 32px; top: 16px; bottom: 40px; width: 1px;
  background: linear-gradient(var(--faint) 80%, transparent);
}
.t-item {
  display: grid; grid-template-columns: 66px 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding-bottom: 64px; position: relative;
}
.t-item:last-child { padding-bottom: 0; }
.t-num {
  width: 66px; height: 66px;
  background: var(--card); border: 1px solid rgba(124,58,237,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px;
  color: var(--violet); position: relative; z-index: 2;
  box-shadow: 0 0 24px rgba(124,58,237,0.15);
}
.t-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(20px, 2.2vw, 26px);
  color: var(--heading); margin: 16px 0 6px;
}
.t-duration { font-size: 13px; font-weight: 600; color: var(--cyan); letter-spacing: 0.06em; text-transform: uppercase; }
.t-body > p { font-size: 15px; color: var(--body); line-height: 1.75; margin: 14px 0 0; max-width: 700px; }
.t-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-top: 26px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 28px;
}
.t-col h3 {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 14px;
}
.t-col .check-list li { font-size: 13.5px; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-top: 56px;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 34px 30px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.testi-card:hover { border-color: var(--faint); transform: translateY(-4px); }
.testi-stars { color: var(--warn); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-quote { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 26px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14.5px; color: var(--heading); }
.testi-role { font-size: 12.5px; color: var(--muted); }

/* Big pull quote */
.pullquote { max-width: 820px; margin: 0 auto; text-align: center; }
.pullquote blockquote {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.3; color: var(--heading);
  letter-spacing: -0.01em;
}
.pullquote blockquote span { color: var(--violet); }
.pullquote .testi-author { justify-content: center; margin-top: 28px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer; text-align: left;
  color: var(--heading); font-family: 'Inter', sans-serif; font-size: 15.5px; font-weight: 600;
}
.faq-icon { color: var(--violet); transition: transform .3s ease; flex-shrink: 0; }
.faq-icon svg { width: 18px; height: 18px; display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--body); line-height: 1.75; }

/* ── CONTACT / LEAD FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: clamp(26px, 4vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--heading); }
.form-field label small { font-weight: 400; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14.5px;
  transition: border-color .2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--violet); outline: none;
}
.form-error { font-size: 13px; color: var(--bad); font-weight: 500; margin-bottom: 12px; }
.form-hint { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.6; text-align: center; }
.contact-form .btn-primary { width: 100%; text-align: center; margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }

.form-success { text-align: center; padding: 24px 8px; }
.form-success .fs-ic {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.3); color: var(--good);
}
.form-success .fs-ic svg { width: 26px; height: 26px; }
.form-success h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; color: var(--heading); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--body); }

.spinner { width: 16px; height: 16px; animation: spin 0.8s linear infinite; }

.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-card .service-icon { width: 44px; height: 44px; margin-bottom: 0; }
.contact-info-card .service-icon svg { width: 21px; height: 21px; }
.contact-info-card h3 { font-size: 15.5px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.contact-info-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.contact-info-card a { color: var(--violet); text-decoration: none; font-weight: 600; }
.contact-info-card a:hover { text-decoration: underline; }

/* ── CTA BANNER ── */
.cta-inner {
  background: linear-gradient(135deg, rgba(124,58,237,0.16) 0%, rgba(34,211,238,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 64px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,211,238,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(28px, 3.6vw, 50px);
  color: var(--heading); margin-bottom: 18px; position: relative; z-index: 2;
  letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 17px; color: var(--body); margin-bottom: 42px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-mail { margin-top: 26px; font-size: 14px; color: var(--muted); position: relative; z-index: 2; }
.cta-mail a { color: var(--violet); text-decoration: none; font-weight: 600; }
.cta-mail a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand svg { width: 40px; height: 40px; }
.footer-brand .fb-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 19px; color: var(--heading); }
.footer-brand .fb-name .nb-acc { background: linear-gradient(135deg, var(--violet), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand .fb-tag { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 8px; letter-spacing: 0.26em; color: var(--violet); text-transform: uppercase; margin-top: 4px; }
.footer-brand-desc {
  font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.75;
  max-width: 320px;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--heading); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  text-decoration: none; color: var(--muted); font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--violet); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-tagline {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid, .ai-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 360px; order: -1; }
  .product-card { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail { grid-template-columns: 1fr; gap: 28px; }
  .detail-row { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .process-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .t-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  section { padding: 80px 0; }
  .hero { padding-top: 104px; }
  .page-hero { padding: 136px 0 56px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .nav-signin { display: none; }
  .timeline::before { left: 24px; }
  .t-item { grid-template-columns: 50px 1fr; }
  .t-num { width: 50px; height: 50px; font-size: 15px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary,
  .cta-actions .btn-primary, .cta-actions .btn-secondary,
  .product-actions .btn-primary, .product-actions .btn-secondary { width: 100%; text-align: center; }
}
