/* ==========================================================================
   Ringing — marketing site stylesheet
   Theme: "incoming call" — red & black, built around the moment a phone rings
   ========================================================================== */

:root {
  --ink: #0d0d0f;
  --ink-800: #17161a;
  --ink-700: #211f24;
  --ink-600: #322f36;
  --paper: #ffffff;
  --paper-alt: #f7f6f7;
  --line: #e8e6e8;
  --line-soft: #f1f0f1;
  --text: #121114;
  --text-muted: #5c5960;
  --text-faint: #8b8890;

  --red: #e31221;
  --red-dark: #9c0d1a;
  --red-light: #ff4757;
  --red-soft: #fdeaec;
  --muted-btn: rgba(255,255,255,0.09);

  --grad-brand: linear-gradient(135deg, var(--red-light) 0%, var(--red) 55%, var(--red-dark) 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 8, 10, 0.06), 0 2px 6px rgba(10, 8, 10, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 8, 10, 0.10);
  --shadow-lg: 0 24px 70px rgba(10, 8, 10, 0.18);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.14;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}
p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  position: relative;
}
.eyebrow .dot-live::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  animation: ring-pulse 1.8s ease-out infinite;
}
.hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow, .quote-block .eyebrow, .section-dark .eyebrow {
  color: var(--red-light);
}
.hero .eyebrow .dot-live, .page-hero .eyebrow .dot-live, .cta-band .eyebrow .dot-live { background: var(--red-light); box-shadow: 0 0 0 3px rgba(255,71,87,0.2); }
.hero .eyebrow .dot-live::after, .page-hero .eyebrow .dot-live::after, .cta-band .eyebrow .dot-live::after { border-color: var(--red-light); }

/* ---------- dial-pattern decorative background ---------- */
.dial-pattern {
  background-image: radial-gradient(currentColor 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 15px; font-family: 'Sora', sans-serif;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(227, 18, 33, 0.32);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(227, 18, 33, 0.42); }
.btn-ghost-light {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.btn-outline { background: var(--paper); color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 13, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: #fff; letter-spacing: -0.02em;
}
.brand-logo { height: 44px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: #cbc9cd; font-size: 14.5px; font-weight: 600;
  padding: 9px 14px; border-radius: var(--radius-pill);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: #fff; background: var(--grad-brand); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--ink); flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 460px; }
  .nav-links a { border-radius: 0; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-actions .btn-ghost-light { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- ringing pulse animations ---------- */
@keyframes ring-pulse {
  0% { transform: scale(0.85); opacity: .9; }
  100% { transform: scale(2.1); opacity: 0; }
}
/* ---------- scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.16,.7,.3,1), transform .8s cubic-bezier(.16,.7,.3,1);
  will-change: transform, opacity;
}
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-up { transform: translateY(36px); }
.reveal-scale { transform: scale(.94); }
.reveal.in-view { opacity: 1; transform: translate(0,0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 10% 0%, rgba(227,18,33,0.26), transparent 60%),
    radial-gradient(820px 480px at 95% 15%, rgba(227,18,33,0.14), transparent 55%),
    radial-gradient(rgba(255,255,255,0.05) 1.4px, transparent 1.4px);
  background-size: auto, auto, 28px 28px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
  padding-bottom: 70px;
}
.hero h1 { font-size: clamp(34px, 4.3vw, 56px); color: #fff; }
.hero h1 .grad {
  background: linear-gradient(135deg, #fff, var(--red-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { color: #c7c5c9; font-size: 18px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { margin-top: 44px; display: flex; gap: 34px; flex-wrap: wrap; color: #918f94; font-size: 13.5px; }
.hero-meta strong { color: #fff; display: block; font-size: 22px; font-family: 'Sora', sans-serif; }

/* -------- incoming-call phone mockup (hero centerpiece) -------- */
.call-phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: linear-gradient(180deg, #19171a, #100f11);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 40px;
  padding: 30px 26px 34px;
  box-shadow: var(--shadow-lg);
}
.call-phone::before {
  content: "";
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 54px; height: 5px; border-radius: 4px;
  background: rgba(255,255,255,0.14);
}
.call-status {
  text-align: center; margin-top: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red-light);
}
.call-avatar-wrap {
  position: relative;
  width: 132px; height: 132px; margin: 26px auto 22px;
  display: flex; align-items: center; justify-content: center;
}
.call-avatar-wrap .ring-el {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--red);
  animation: ring-pulse 2.4s ease-out infinite;
}
.call-avatar-wrap .ring-el:nth-child(2) { animation-delay: .6s; }
.call-avatar-wrap .ring-el:nth-child(3) { animation-delay: 1.2s; }
.call-avatar {
  position: relative;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(227,18,33,0.4);
}
.call-avatar svg { width: 38px; height: 38px; color: #fff; }
.call-name { text-align: center; color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 4px; }
.call-sub { text-align: center; color: #918f94; font-size: 13.5px; margin-bottom: 30px; }

.call-actions { display: flex; align-items: center; justify-content: center; gap: 46px; }
.call-actions .cbtn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.call-actions .cbtn svg { width: 24px; height: 24px; }
.cbtn.decline { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; transform: rotate(135deg); }
.cbtn.decline svg { transform: rotate(-135deg); }
.cbtn.answer { background: var(--grad-brand); color: #fff; }
.call-actions .lbl { display: block; text-align: center; font-size: 11px; color: #837f85; margin-top: 8px; }

.call-waveform-strip {
  margin-top: 26px;
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  height: 30px;
}
.call-waveform-strip span {
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
  animation: wave-bounce 1.1s ease-in-out infinite;
}

@keyframes wave-bounce {
  0%, 100% { height: 6px; opacity: .5; }
  50% { height: 26px; opacity: 1; }
}

/* floating chips around the phone */
.call-chip {
  position: absolute;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
}
.call-chip svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.call-chip.chip-1 { top: 10%; left: -8%; }
.call-chip.chip-2 { bottom: 6%; right: -10%; }
@media (max-width: 1050px) { .call-chip { display: none; } }

.hero-visual { position: relative; }

@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
section { padding: 100px 0; }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 44px; text-align: left; }
.section-head h2 { font-size: clamp(28px, 3.3vw, 38px); }
.section-head p { font-size: 17px; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: #b0aeb2; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--red); }

.icon-tile {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-tile svg { width: 23px; height: 23px; color: var(--red); }
.icon-tile.alt { background: var(--ink); }
.icon-tile.alt svg { color: #fff; }
.icon-tile.solid { background: var(--grad-brand); }
.icon-tile.solid svg { color: #fff; }

.card h3 { font-size: 18px; }
.card p { font-size: 15px; margin: 0; }

/* ---------- feature rows w/ rich visuals ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center;
  padding: 70px 0; border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-copy .tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--red); background: var(--red-soft);
  padding: 6px 12px; border-radius: var(--radius-pill); margin-bottom: 16px; letter-spacing: .03em;
}
.feature-copy h3 { font-size: 27px; }
.feature-copy ul { padding-left: 0; list-style: none; margin: 22px 0 0; }
.feature-copy ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); margin-bottom: 12px; }
.feature-copy ul li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

.feature-visual {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(460px 280px at 12% 8%, rgba(227,18,33,0.28), transparent 60%),
              radial-gradient(420px 260px at 92% 92%, rgba(227,18,33,0.14), transparent 60%);
}
.feature-visual > * { position: relative; }

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; padding: 46px 0; }
  .feature-row.reverse .feature-copy { order: 0; }
}

/* waveform block (recording feature) */
.waveform-block { display: flex; align-items: center; gap: 3px; height: 120px; }
.waveform-block span {
  width: 5px; border-radius: 3px;
  background: linear-gradient(180deg, var(--red-light), var(--red-dark));
  animation: wave-tall 1.6s ease-in-out infinite;
}
@keyframes wave-tall { 0%,100% { height: 14px; } 50% { height: var(--h, 80px); } }

/* call bridge (monitor/whisper/barge) */
.bridge-diagram { display: flex; align-items: center; justify-content: center; gap: 0; width: 100%; }
.bridge-node { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.bridge-node .av {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.16);
}
.bridge-node .av svg { width: 26px; height: 26px; color: #fff; }
.bridge-node.center .av { background: var(--grad-brand); border-color: transparent; width: 74px; height: 74px; }
.bridge-node.center .av svg { color: #fff; width: 30px; height: 30px; }
.bridge-node span.lbl { color: #c7c5c9; font-size: 12.5px; font-weight: 600; }
.bridge-line { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0 6px, transparent 6px 12px); margin: 0 6px 26px; max-width: 70px; }
.bridge-flag {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 10.5px; font-weight: 800;
  padding: 3px 9px; border-radius: var(--radius-pill); white-space: nowrap;
}
.bridge-node { position: relative; }

/* IVR call-flow diagram */
.flow-diagram { width: 100%; }
.flow-root {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink); border-radius: var(--radius-pill);
  padding: 10px 18px; font-weight: 700; font-size: 13.5px; margin: 0 auto 26px; box-shadow: var(--shadow-sm);
}
.flow-root svg { width: 16px; height: 16px; color: var(--red); }
.flow-root-wrap { display: flex; justify-content: center; }
.flow-branches { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.flow-branch {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  min-width: 130px;
  text-align: left;
}
.flow-branch .key {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--grad-brand); color: #fff; font-size: 11.5px; font-weight: 800; margin-bottom: 8px;
}
.flow-branch p { color: #c7c5c9; font-size: 13px; margin: 0; }
.flow-branch strong { display: block; color: #fff; font-size: 13.5px; margin-bottom: 2px; }
.flow-connector { height: 22px; border-left: 1.5px dashed rgba(255,255,255,0.24); margin: 0 auto; width: 0; }

/* transfer diagram */
.transfer-diagram { display: flex; align-items: center; gap: 16px; width: 100%; justify-content: center; }
.transfer-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md); padding: 16px 18px; text-align: center; min-width: 120px;
}
.transfer-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); margin: 0 auto 10px; display:flex; align-items:center; justify-content:center; }
.transfer-card .av svg { width: 20px; height: 20px; color: #fff; }
.transfer-card span { color: #fff; font-size: 12.5px; font-weight: 700; }
.transfer-arrow { color: var(--red-light); flex-shrink: 0; }
.transfer-arrow svg { width: 30px; height: 30px; }

/* security visual */
.shield-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.shield-visual .shield-badge {
  width: 108px; height: 108px; border-radius: 50%;
  background: rgba(227,18,33,0.14); border: 1.5px solid rgba(227,18,33,0.4);
  display: flex; align-items: center; justify-content: center;
}
.shield-visual .shield-badge svg { width: 46px; height: 46px; color: var(--red-light); }
.shield-visual .lock-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.shield-visual .lock-row span {
  font-size: 11px; font-weight: 700; color: #c7c5c9;
  border: 1px solid rgba(255,255,255,0.18); padding: 5px 10px; border-radius: var(--radius-pill);
}

/* queue mini-mockup reused in hero + features */
.queue-mock { width: 100%; max-width: 300px; }
.queue-mock .qrow {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px; margin-bottom: 10px;
}
.queue-mock .qrow .av { width: 34px; height: 34px; border-radius: 9px; background: var(--grad-brand); flex-shrink: 0; }
.queue-mock .qrow .meta { flex: 1; min-width: 0; }
.queue-mock .qrow .meta .name { color: #fff; font-weight: 700; font-size: 13px; }
.queue-mock .qrow .meta .sub { color: #918f94; font-size: 11.5px; }
.queue-mock .qrow .status { font-size: 10.5px; font-weight: 800; padding: 4px 9px; border-radius: var(--radius-pill); white-space: nowrap; }
.status.live { background: rgba(227,18,33,0.2); color: #ff8a93; }
.status.queue { background: rgba(255,255,255,0.12); color: #d8d6da; }
.status.wrap { background: rgba(255,255,255,0.07); color: #918f94; }

/* ---------- stats strip ---------- */
.stats-strip { background: var(--ink); color: #fff; padding: 58px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.stats-strip .grid-4 { text-align: center; }
.stats-strip .stat strong { display: block; font-family: 'Sora', sans-serif; font-size: 32px; background: linear-gradient(135deg, #fff, var(--red-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats-strip .stat span { color: #948f94; font-size: 13.5px; }
@media (max-width: 760px) { .stats-strip .grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- pricing ---------- */
.pricing-toggle-note { text-align: center; color: var(--text-faint); font-size: 14px; margin-top: -20px; margin-bottom: 50px; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--paper), var(--paper)) padding-box, var(--grad-brand) border-box;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff; font-size: 12px; font-weight: 800;
  padding: 6px 16px; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card .bars { display: flex; gap: 3px; align-items: flex-end; height: 20px; margin-bottom: 16px; }
.price-card .bars span { width: 6px; border-radius: 2px; background: var(--line); }
.price-card .bars span.on { background: var(--grad-brand); }
.price-card .bars span:nth-child(1) { height: 40%; }
.price-card .bars span:nth-child(2) { height: 65%; }
.price-card .bars span:nth-child(3) { height: 100%; }
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card .price-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.price-card .price-amount { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 24px; font-family: 'Sora', sans-serif; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); padding: 10px 0; border-top: 1px solid var(--line-soft); }
.price-card ul li:first-child { border-top: none; }
.price-card ul li svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 30px 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); }
.step .num {
  width: 36px; height: 36px; border-radius: 10px; background: var(--ink); color: var(--red-light);
  display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 18px;
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- about page ---------- */
.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .value-list { grid-template-columns: 1fr; } }

.quote-block {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 60px; text-align: center; position: relative; overflow: hidden;
}
.quote-block::before { content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(227,18,33,0.24), transparent 60%),
              radial-gradient(600px 300px at 85% 100%, rgba(227,18,33,0.14), transparent 60%);
}
.quote-block > * { position: relative; }
.quote-block .quote-mark { width: 40px; height: 40px; margin: 0 auto 20px; color: var(--red-light); }
.quote-block p { color: #e6e5e7; font-size: 22px; font-weight: 500; max-width: 760px; margin: 0 auto; line-height: 1.5; font-family: 'Sora', sans-serif; }
.quote-block .who { color: var(--red-light); font-size: 13.5px; margin-top: 22px; font-weight: 700; letter-spacing: .02em; }

/* ---------- cta band ---------- */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 68px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 320px at 85% 0%, rgba(227,18,33,0.24), transparent 60%),
              radial-gradient(700px 320px at 10% 100%, rgba(227,18,33,0.14), transparent 60%),
              radial-gradient(rgba(255,255,255,0.05) 1.4px, transparent 1.4px);
  background-size: auto, auto, 28px 28px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c2c0c4; max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14.5px; color: var(--text); background: var(--paper-alt);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 10px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info .item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .item .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.contact-info .item h4 { font-size: 15.5px; margin-bottom: 3px; }
.contact-info .item p { font-size: 14.5px; margin: 0; }

.confirm-card { background: var(--ink); border-radius: var(--radius-lg); padding: 28px; color: #fff; }
.confirm-card .top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.confirm-card .top .ok { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.confirm-card .top .ok svg { width: 17px; height: 17px; color: #fff; }
.confirm-card .top strong { font-family: 'Sora', sans-serif; font-size: 14.5px; }
.confirm-card .row { display: flex; justify-content: space-between; font-size: 13px; color: #c7c5c9; padding: 9px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.confirm-card .row:first-of-type { border-top: none; }
.confirm-card .row span:last-child { color: #fff; font-weight: 600; }

/* ---------- faq ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 16px; color: var(--text); font-family: 'Sora', sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform .2s ease; color: var(--text-faint); flex-shrink: 0; margin-left: 16px; }
.faq-item[open] summary .chev { transform: rotate(45deg); color: var(--red); }
.faq-item p { margin-top: 12px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #c7c5c9; padding: 64px 0 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top .brand { margin-bottom: 14px; }
.footer-top .brand-logo { height: 52px; }
.footer-top p.desc { font-size: 14px; color: #918f94; max-width: 280px; }
.footer-col h5 { color: #fff; font-family: 'Sora', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: #ada9ae; padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 13px; color: #7a777c; flex-wrap: wrap; gap: 12px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- misc ---------- */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.badge-row span { font-size: 12.5px; font-weight: 700; color: #c7c5c9; border: 1px solid rgba(255,255,255,0.16); padding: 6px 12px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 6px; }
.badge-row svg { width: 13px; height: 13px; color: var(--red-light); }

.page-hero { background: var(--ink); color: #fff; padding: 76px 0 66px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 20% 0%, rgba(227,18,33,0.22), transparent 60%),
              radial-gradient(600px 320px at 85% 100%, rgba(227,18,33,0.12), transparent 60%),
              radial-gradient(rgba(255,255,255,0.05) 1.4px, transparent 1.4px);
  background-size: auto, auto, 28px 28px; }
.page-hero > * { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.page-hero p { color: #c2c0c4; max-width: 620px; margin: 14px auto 0; font-size: 17px; }
