*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --paper: #FAF7F1;
  --paper-2: #F1ECE2;
  --ink: #14202E;
  --ink-2: #0F1A26;
  --ink-soft: #4B5A6B;
  --ink-faint: #8593A2;
  --teal: #0F9D8C;
  --teal-deep: #0B4F47;
  --teal-glow: rgba(15,157,140,0.12);
  --gold: #C97A2B;
  --line: rgba(20,32,46,0.1);
  --line-dark: rgba(255,255,255,0.08);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max: 1140px;
}
body { font-family: var(--font-body); background: var(--paper); color: var(--ink-soft); line-height: 1.65; overflow-x: hidden; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* eyebrow / mono label pattern — used everywhere as the signature device */
.eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 1.8px;
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); flex-shrink: 0; }
.eyebrow.on-dark { color: #7FD9C9; }
.eyebrow.on-light { color: var(--teal-deep); }

h2.h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 42px); font-weight: 600; letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 16px; }
.h2.on-dark { color: #F3F6F8; }
.h2.on-light { color: var(--ink); }
.lead { font-size: 16.5px; line-height: 1.7; max-width: 560px; }
.lead.on-dark { color: #A9B6C2; }
.lead.on-light { color: var(--ink-soft); }

/* buttons */
.btn { font-family: var(--font-body); font-size: 14.5px; font-weight: 600; padding: 13px 26px; border-radius: 8px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; }
.btn-primary { background: var(--teal); color: #FFFFFF; }
.btn-outline-light { border: 1.5px solid var(--line); color: var(--ink); background: #fff; }
.btn-outline-dark { border: 1.5px solid var(--line-dark); color: #F3F6F8; background: transparent; }

/* monogram tile — signature device for products */
.mono-tile { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; flex-shrink: 0; }

/* tick icon reused across the page */
.tick { width: 18px; height: 18px; border-radius: 50%; background: var(--teal-glow); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tick svg { width: 10px; height: 10px; }

/* ══ NAV ══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: rgba(15,26,38,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-dark); }
.nav-inner { max-width: var(--max); margin: 0 auto; height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.nav-logo-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.2px; }
.nav-logo-name span { color: var(--teal); }
.nav-logo-sub { font-family: var(--font-mono); font-size: 9.5px; color: #6B7A8C; letter-spacing: 1px; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 13.5px; font-weight: 500; color: #C3CCD6; text-decoration: none; }
.nav-link:hover { color: #fff; }
.nav-cta { background: var(--teal); color: #fff; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 7px; text-decoration: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 20px; height: 2px; background: #fff; display: block; }
.mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 199; background: rgba(15,26,38,0.98); border-bottom: 1px solid var(--line-dark); padding: 14px 24px 20px; flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-nav-link { font-size: 15px; font-weight: 500; color: #C3CCD6; text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line-dark); }

/* ══ HERO ══ */
.hero { background: var(--paper); padding: 128px 24px 80px; }
.hero-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 54px); line-height: 1.08; font-weight: 500; letter-spacing: -0.5px; color: var(--ink-soft); }
.hero-h1 strong { display: block; font-weight: 700; color: var(--ink); }
.hero-sub { margin-top: 24px; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); max-width: 460px; }
.hero-ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.console { background: var(--ink-2); border-radius: 14px; padding: 20px; box-shadow: 0 20px 40px -20px rgba(20,32,46,0.35); }
.console-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.console-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.2px; color: #6B7A8C; }
.console-live { font-family: var(--font-mono); font-size: 10.5px; color: var(--teal); display: flex; align-items: center; gap: 6px; }
.console-live span { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.crow { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line-dark); opacity: 0; animation: rowIn 9s ease-in-out infinite; }
.crow:first-of-type { border-top: none; }
.crow .tick { background: rgba(15,157,140,0.18); }
.crow-text { font-size: 13px; color: #E7ECF1; flex: 1; }
.crow-text b { font-weight: 500; color: #9FB0C2; }
.crow-time { font-family: var(--font-mono); font-size: 10.5px; color: #566578; }
.crow.r1{animation-delay:0s}.crow.r2{animation-delay:1.8s}.crow.r3{animation-delay:3.6s}.crow.r4{animation-delay:5.4s}.crow.r5{animation-delay:7.2s}
@keyframes rowIn { 0%{opacity:0;transform:translateY(6px)} 8%{opacity:1;transform:translateY(0)} 80%{opacity:1} 100%{opacity:1} }
.console-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-dark); font-family: var(--font-mono); font-size: 11px; color: #566578; display: flex; justify-content: space-between; }
.console-foot b { color: var(--gold); font-weight: 500; }

/* ══ QUOTE STRIP ══ */
.quote-strip { background: var(--teal); padding: 26px 24px; }
.quote-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.quote-text { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: #fff; max-width: 700px; }
.quote-co { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.75); text-align: right; }

/* ══ PRODUCTS ══ */
.suite { background: var(--paper); padding: 96px 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { justify-content: center; }
.suite-brand { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; padding: 7px 18px 7px 12px; border-radius: 8px; margin: 0 auto 44px; font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.suite-brand .mono-tile { width: 28px; height: 28px; background: var(--teal); color: #fff; font-size: 12px; border-radius: 6px; }
.suite-brand span.tag { font-family: var(--font-mono); font-size: 9.5px; font-weight: 400; color: #7A8899; border-left: 1px solid var(--line-dark); padding-left: 10px; margin-left: 4px; }
.center-wrap { text-align: center; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; }
.pcard.featured { border-color: rgba(15,157,140,0.4); }
.pcard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.status-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.status-tag .dot { width: 5px; height: 5px; border-radius: 50%; }
.status-live .dot { background: var(--teal); } .status-live { color: var(--teal-deep); }
.status-next .dot { background: var(--gold); } .status-next { color: var(--gold); }
.status-soon .dot { background: var(--ink-faint); } .status-soon { color: var(--ink-faint); }

.pc-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pc-tag { font-size: 11.5px; font-weight: 600; color: var(--teal-deep); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.pc-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 14px; flex-grow: 0; }
.pc-features { list-style: none; margin-bottom: 16px; }
.pc-feature { font-size: 12.5px; color: var(--ink-soft); padding: 3px 0; display: flex; gap: 8px; align-items: center; }
.pc-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pc-price { font-family: var(--font-body); font-size: 14.5px; font-weight: 700; color: var(--ink); }
.pc-price-sub { font-size: 10.5px; color: var(--ink-faint); }
.pc-action { font-size: 12px; font-weight: 600; color: var(--teal-deep); background: var(--teal-glow); padding: 7px 14px; border-radius: 6px; text-decoration: none; white-space: nowrap; }
.pc-action.soon { color: var(--ink-faint); background: var(--paper-2); }

/* ══ DIGIREADY ══ */
.digiready { background: var(--ink-2); padding: 96px 24px; }
.dr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.dr-tag { font-size: 12px; font-weight: 500; color: #C3CCD6; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: 30px; padding: 7px 14px; display: flex; align-items: center; gap: 7px; }
.dr-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.dr-packages { display: flex; flex-direction: column; gap: 10px; }
.dr-pkg { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 10px; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; text-decoration: none; }
.dr-pkg.highlight { border-color: rgba(15,157,140,0.35); background: rgba(15,157,140,0.06); }
.dr-pkg-name { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: #F3F6F8; margin-bottom: 2px; }
.dr-pkg-desc { font-size: 11px; color: #6B7A8C; }
.dr-pkg-right { text-align: right; }
.dr-pkg-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--teal); }
.dr-pkg-days { font-family: var(--font-mono); font-size: 9.5px; color: #566578; margin-top: 2px; }
.dr-bottom { margin-top: 52px; text-align: center; padding-top: 36px; border-top: 1px solid var(--line-dark); }
.dr-bottom-label { font-family: var(--font-mono); font-size: 11px; color: #566578; margin-bottom: 16px; }
.dr-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.dr-feature { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #C3CCD6; font-weight: 500; }

/* ══ PHILOSOPHY ══ */
.philosophy { background: var(--paper-2); padding: 96px 24px; }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.phil-principles { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.pp-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: var(--teal-deep); margin-bottom: 5px; }
.pp-title { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pp-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.mv-cards { display: flex; flex-direction: column; gap: 14px; }
.mv-card { background: var(--ink-2); border-radius: 12px; padding: 22px; }
.mv-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.2px; color: var(--teal); display: block; margin-bottom: 10px; }
.mv-text { font-family: var(--font-display); font-size: 15px; color: #D6DEE5; line-height: 1.6; font-weight: 400; }

/* ══ CUSTOM ══ */
.custom { background: var(--paper); padding: 96px 24px; border-top: 1px solid var(--line); }
.custom-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.custom-badge { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.2px; color: var(--gold); margin-bottom: 14px; display: block; }
.custom-points { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.custom-point { padding: 15px 18px; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.custom-point b { color: var(--ink); }
.custom-box { background: var(--ink-2); border-radius: 14px; padding: 30px; }
.custom-box-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #F3F6F8; margin-bottom: 8px; }
.custom-box-desc { font-size: 13.5px; color: #A9B6C2; line-height: 1.6; margin-bottom: 22px; }
.custom-steps { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.custom-step { font-size: 13px; color: #C3CCD6; display: flex; gap: 12px; align-items: baseline; }
.custom-step .num { font-family: var(--font-mono); font-weight: 500; color: var(--teal); flex-shrink: 0; }

/* ══ CONTACT ══ */
.contact { background: var(--ink-2); padding: 96px 24px; text-align: center; }
.contact-h { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); color: #F3F6F8; margin-bottom: 12px; font-weight: 600; }
.contact-h em { color: var(--teal); font-style: normal; }
.contact-sub { font-size: 15.5px; color: #A9B6C2; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; max-width: 640px; margin: 0 auto 32px; }
.contact-item { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 10px; padding: 17px 19px; text-align: left; text-decoration: none; display: flex; flex-direction: column; gap: 4px; }
.ci-label { font-family: var(--font-mono); font-size: 9.5px; color: var(--teal); letter-spacing: 1.2px; }
.ci-value { font-size: 13.5px; font-weight: 500; color: #F3F6F8; }
.brevo-wrap { max-width: 540px; margin: 0 auto; }
.brevo-label { font-family: var(--font-mono); font-size: 10.5px; color: var(--teal); letter-spacing: 1.2px; margin-bottom: 12px; }
.brevo-box { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 10px; padding: 22px; }
.brevo-row { display: flex; gap: 10px; flex-wrap: wrap; }
.brevo-row input { flex: 1; min-width: 140px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); color: #F3F6F8; font-size: 13.5px; padding: 11px 14px; border-radius: 7px; outline: none; font-family: var(--font-body); }
.brevo-btn { width: 100%; margin-top: 10px; background: var(--teal); color: #fff; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 12px; border-radius: 7px; border: none; cursor: pointer; }
.brevo-note { font-size: 11px; color: #566578; margin-top: 8px; }
.contact-url { margin-top: 22px; font-size: 12.5px; color: #6B7A8C; }
.contact-url a { color: var(--teal); text-decoration: none; }

/* ══ FOOTER ══ */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-dark); padding: 30px 24px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #F3F6F8; }
.footer-brand span { color: var(--teal); }
.footer-sub { font-size: 11px; color: #566578; margin-top: 3px; }
.footer-links { display: flex; gap: 20px; }
.footer-link { font-size: 12px; color: #7A8899; text-decoration: none; }

@media (max-width: 960px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .dr-grid, .phil-grid, .custom-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid, .contact-grid { grid-template-columns: 1fr; }
  .quote-inner { flex-direction: column; text-align: center; }
  .quote-co { text-align: center; }
}

/* ══ SHARED PRODUCT-PAGE COMPONENTS ══ */

/* product hero (dark) */
.phero { background: var(--ink-2); padding: 128px 24px 72px; position: relative; overflow: hidden; }
.phero::before { content:''; position:absolute; right:-120px; top:-120px; width:480px; height:480px; border-radius:50%; background: radial-gradient(circle, rgba(15,157,140,0.10) 0%, transparent 70%); pointer-events:none; }
.phero-inner { max-width: var(--max); margin:0 auto; position:relative; }
.phero-h1 { font-family: var(--font-display); font-size: clamp(34px,5vw,58px); font-weight:600; color:#F3F6F8; line-height:1.12; letter-spacing:-0.5px; margin-bottom:18px; }
.phero-h1 strong { color: var(--teal); font-weight:700; }
.phero-sub { font-size:16.5px; color:#A9B6C2; max-width:600px; margin-bottom:32px; }
.phero-ctas { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.stat-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-dark); border:1px solid var(--line-dark); border-radius:10px; overflow:hidden; margin-bottom:28px; }
.stat-cell { background: rgba(255,255,255,0.03); padding:18px 14px; text-align:center; }
.stat-num { font-family:var(--font-display); font-size:26px; font-weight:700; color:#F3F6F8; display:block; line-height:1; margin-bottom:4px; }
.stat-lbl { font-family: var(--font-mono); font-size:9.5px; color:#7A8899; letter-spacing:0.8px; text-transform:uppercase; }
.phero-tags { display:flex; gap:10px; flex-wrap:wrap; }
.phero-tag { font-family: var(--font-mono); font-size:11px; color:#9FB0C2; border:1px solid var(--line-dark); padding:6px 13px; border-radius:20px; background:rgba(255,255,255,0.03); }

/* pain / problem section */
.pain-sec { background: var(--paper-2); padding: 88px 24px; }
.pain-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; max-width:var(--max); margin:0 auto; }
.pain-quote { background: var(--teal-glow); border-left: 3px solid var(--teal); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-top: 20px; }
.pain-quote-text { font-family: var(--font-display); font-size: 14.5px; color: var(--ink); line-height: 1.65; margin-bottom: 8px; }
.pain-quote-attr { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }
.pain-list { list-style:none; display:flex; flex-direction:column; gap:8px; }
.pain-item { display:flex; gap:12px; align-items:flex-start; padding:13px 15px; border-radius:8px; background:#fff; border:1px solid var(--line); font-size:13.5px; color:var(--ink-soft); line-height:1.55; }
.pain-item b { color: var(--ink); }
.pain-item .dot { width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; margin-top:7px; }

/* numbered flow — genuine sequence, numbers kept */
.flow-sec { background: var(--paper); padding: 88px 24px; }
.flow-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom: 48px; }
.flow-step { background:#fff; border:1px solid var(--line); border-top:2px solid var(--teal); border-radius: 10px; padding: 24px 20px; }
.flow-num { font-family: var(--font-mono); font-size: 12px; color: var(--teal-deep); letter-spacing:1px; margin-bottom:10px; }
.flow-title { font-family: var(--font-display); font-size: 15.5px; font-weight:700; color: var(--ink); margin-bottom:6px; }
.flow-desc { font-size: 13px; color: var(--ink-soft); line-height:1.6; }

/* spotlight — dark feature callout, echoes hero console */
.spotlight { background: var(--ink-2); border-radius: 14px; padding: 40px; }
.spot-badge { font-family: var(--font-mono); font-size: 10.5px; letter-spacing:1.2px; color: var(--teal); margin-bottom: 14px; }
.spot-title { font-family: var(--font-display); font-size: clamp(20px,2.6vw,28px); font-weight:600; color:#F3F6F8; margin-bottom:8px; }
.spot-sub { font-size: 13.5px; color:#8593A2; margin-bottom: 28px; }
.spot-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.spot-card { background: rgba(255,255,255,0.04); border:1px solid var(--line-dark); border-radius:10px; padding:18px 16px; }
.spot-card-title { font-family: var(--font-display); font-size:13.5px; font-weight:700; color:var(--teal); margin-bottom:6px; }
.spot-card-desc { font-size: 12.5px; color:#8593A2; line-height:1.6; }

/* feature card grid */
.feat-sec { background: var(--paper-2); padding: 88px 24px; }
.feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.feat-card { background:#fff; border:1px solid var(--line); border-radius:10px; overflow:hidden; }
.feat-head { background: var(--ink); color:#fff; padding:13px 17px; font-family: var(--font-display); font-size:13.5px; font-weight:700; }
.feat-body { padding:15px 17px; }
.feat-item { font-size:12.5px; color:var(--ink-soft); padding:3px 0; display:flex; gap:7px; }
.infra-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:40px; }
.infra-card { background: var(--teal-glow); border:1px solid rgba(15,157,140,0.25); border-radius:10px; padding:16px 14px; text-align:center; }
.infra-name { font-family: var(--font-display); font-size:12.5px; font-weight:700; color:var(--teal-deep); display:block; margin-bottom:2px; }
.infra-sub { font-family: var(--font-mono); font-size:10px; color:var(--ink-faint); }

/* comparison table */
.compare-sec { background: var(--paper); padding: 88px 24px; }
.compare-table { width:100%; border-collapse:collapse; border-radius:10px; overflow:hidden; font-size:13.5px; box-shadow: 0 4px 24px rgba(20,32,46,0.08); }
.compare-table thead th { background: var(--ink); color:#fff; padding:14px 18px; font-family:var(--font-display); font-size:13px; font-weight:700; text-align:center; }
.compare-table thead th:first-child { text-align:left; width:38%; }
.compare-table tbody td { padding:12px 18px; border-bottom:1px solid var(--line); }
.compare-table tbody td:first-child { font-weight:600; color:var(--ink-soft); background: var(--paper-2); }
.compare-table .bad { color:#B3401F; text-align:center; background:#FBEDE7 !important; font-weight:600; }
.compare-table .good { color:var(--teal-deep); text-align:center; background:var(--teal-glow) !important; font-weight:700; }
.compare-table tbody tr:last-child td { font-size:15px; font-weight:700; border-bottom:none; }
.compare-table tbody tr:last-child .good { background: var(--teal) !important; color:#fff; }

/* pricing tiers */
.pricing-sec { background: var(--ink-2); padding: 88px 24px; }
.roi-box { background: rgba(201,122,43,0.08); border-left:3px solid var(--gold); border-radius:0 8px 8px 0; padding:18px 20px; margin-bottom:44px; max-width:800px; margin-left:auto; margin-right:auto; }
.roi-label { font-family: var(--font-mono); font-size:11px; letter-spacing:1px; color:var(--gold); margin-bottom:6px; }
.roi-text { font-size:13.5px; color:#A9B6C2; line-height:1.7; }
.roi-text b { color:#F3F6F8; }
.price-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; max-width:960px; margin:0 auto 32px; }
.price-card { background: rgba(255,255,255,0.04); border:1px solid var(--line-dark); border-radius:12px; overflow:hidden; display:flex; flex-direction:column; }
.price-card.pro { background: var(--teal); border-color:var(--teal); transform: scale(1.03); }
.price-top { padding:24px 20px 18px; text-align:center; border-bottom:1px solid rgba(255,255,255,0.1); }
.price-popular { font-family: var(--font-mono); font-size:9.5px; letter-spacing:1px; color: var(--gold); margin-bottom:10px; display:block; }
.price-card.pro .price-popular { color: rgba(255,255,255,0.85); }
.price-name { font-family: var(--font-display); font-size:14px; font-weight:700; color:#C3CCD6; text-transform:uppercase; letter-spacing:0.8px; display:block; margin-bottom:4px; }
.price-card.pro .price-name { color:rgba(255,255,255,0.9); }
.price-setup { font-family: var(--font-mono); font-size:10.5px; color:#6B7A8C; margin-bottom:14px; }
.price-card.pro .price-setup { color:rgba(255,255,255,0.65); }
.price-amount { font-family: var(--font-display); font-size:38px; font-weight:700; color:#F3F6F8; line-height:1; }
.price-card.pro .price-amount { color:#fff; }
.price-pm { font-size:12.5px; color:#6B7A8C; margin-bottom:8px; }
.price-card.pro .price-pm { color:rgba(255,255,255,0.65); }
.price-annual { display:inline-block; font-family:var(--font-mono); font-size:10.5px; color:var(--gold); background:rgba(201,122,43,0.12); padding:3px 10px; border-radius:3px; }
.price-card.pro .price-annual { background:rgba(255,255,255,0.15); color:#FDE6C9; }
.price-feats { padding:18px 20px; flex:1; }
.p-feat { font-size:12.5px; color:#A9B6C2; line-height:1.6; padding:3px 0; }
.price-card.pro .p-feat { color:rgba(255,255,255,0.9); }
.waba-note { background:rgba(201,122,43,0.08); border-left:3px solid var(--gold); border-radius:0 8px 8px 0; padding:16px 20px; max-width:960px; margin:0 auto; font-size:12.5px; color:#A9B6C2; line-height:1.7; }
.waba-note b { color:#F3F6F8; }

/* stories */
.stories-sec { background: var(--paper); padding: 88px 24px; }
.stories-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.story-card { background:#fff; border:1px solid var(--line); border-left:3px solid var(--teal); border-radius:0 10px 10px 0; padding:24px; }
.story-co { font-family: var(--font-display); font-size:15px; font-weight:700; color:var(--ink); margin-bottom:2px; }
.story-loc { font-family: var(--font-mono); font-size:10.5px; color:var(--ink-faint); margin-bottom:12px; }
.story-body { font-size:13.5px; color:var(--ink-soft); line-height:1.75; margin-bottom:14px; }
.story-result { display:inline-block; background:var(--teal); color:#fff; font-size:11.5px; font-weight:600; padding:5px 13px; border-radius:5px; }
.isolation-box { background: var(--teal-glow); border:1px solid rgba(15,157,140,0.25); border-left:4px solid var(--teal); border-radius:0 10px 10px 0; padding:24px 26px; margin-top:36px; }
.iso-title { font-family: var(--font-display); font-size:15px; font-weight:700; color:var(--teal-deep); margin-bottom:8px; }
.iso-body { font-size:13.5px; color:var(--ink-soft); line-height:1.7; }
.iso-body b { color: var(--teal-deep); }

/* solid CTA band */
.cta-band { background: var(--teal); padding: 88px 24px; text-align:center; }
.cta-band-h { font-family: var(--font-display); font-size: clamp(26px,3.6vw,42px); font-weight:600; color:#fff; margin-bottom:12px; }
.cta-band-sub { font-size:15.5px; color:rgba(255,255,255,0.85); margin-bottom:32px; }
.cta-contacts { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-bottom:8px; }
.cta-contact-item { background: rgba(255,255,255,0.15); color:#fff; font-size:13.5px; font-weight:500; padding:11px 18px; border-radius:8px; text-decoration:none; }
.cta-url { font-family: var(--font-mono); font-size:11.5px; color:rgba(255,255,255,0.75); margin-top:20px; }
.cta-form-box { max-width:520px; margin:32px auto 0; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); border-radius:12px; padding:26px 24px; }
.cta-form-title { font-family:var(--font-display); font-size:15px; font-weight:600; color:#fff; margin-bottom:16px; }
.cta-form-row { display:flex; gap:10px; margin-bottom:10px; flex-wrap:wrap; }
.cta-form-box input { flex:1; min-width:130px; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); color:#fff; font-size:13.5px; padding:11px 13px; border-radius:7px; outline:none; font-family:var(--font-body); box-sizing:border-box; }
.cta-form-btn { width:100%; background:#fff; color:var(--teal-deep); font-family:var(--font-body); font-size:13.5px; font-weight:700; padding:12px; border-radius:7px; border:none; cursor:pointer; margin-top:6px; }
.cta-form-note { font-size:10.5px; color:rgba(255,255,255,0.65); text-align:center; margin-top:10px; }
.cta-success { display:none; text-align:center; padding:24px; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25); border-radius:12px; margin-top:32px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-success-title { font-family:var(--font-display); font-size:16px; font-weight:700; color:#fff; margin-bottom:6px; }
.cta-success-body { font-size:12.5px; color:rgba(255,255,255,0.8); }

@media (max-width: 960px) {
  .pain-grid, .stories-grid { grid-template-columns:1fr; gap:36px; }
  .flow-grid, .feat-grid { grid-template-columns:1fr 1fr; }
  .spot-grid { grid-template-columns:1fr; }
  .price-grid { grid-template-columns:1fr; max-width:400px; }
  .price-card.pro { transform:none; }
  .stat-strip { grid-template-columns:1fr 1fr; }
  .infra-strip { grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px) {
  .flow-grid, .feat-grid { grid-template-columns:1fr; }
  .compare-table { font-size:11.5px; }
  .compare-table thead th, .compare-table tbody td { padding:9px 10px; }
}

/* ══ QUOTATION-PRO STYLE COMPONENTS (reusable for future feature-heavy pages) ══ */

/* hero pill row for unique differentiators */
.diff-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 30px; }
.diff-pill { font-family: var(--font-mono); font-size:11px; padding:6px 13px; border-radius:6px; border:1px solid; }
.diff-pill.tag-teal { color:var(--teal); border-color:rgba(15,157,140,0.35); background:rgba(15,157,140,0.08); }
.diff-pill.tag-gold { color:var(--gold); border-color:rgba(201,122,43,0.35); background:rgba(201,122,43,0.08); }
.diff-pill.tag-muted { color:#8593A2; border-color:var(--line-dark); background:rgba(255,255,255,0.03); }

/* before/after time banner */
.time-banner { background: rgba(255,255,255,0.04); border:1px solid var(--line-dark); border-radius:12px; padding:22px 26px; display:flex; align-items:center; gap:30px; flex-wrap:wrap; }
.time-cell { text-align:center; }
.time-cell-label { font-family: var(--font-mono); font-size:9.5px; color:#6B7A8C; text-transform:uppercase; letter-spacing:0.8px; margin-bottom:4px; }
.time-cell-num { font-family: var(--font-display); font-size:22px; font-weight:700; }
.time-cell-num.gold { color: var(--gold); }
.time-cell-sub { font-size:10.5px; color:#6B7A8C; margin-top:2px; }
.time-div { width:1px; height:36px; background:var(--line-dark); }

/* pain cards with red-orange top bar (kept distinct — this IS a real "problem" cue, not decorative) */
.pain-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:16px; margin-top: 32px; }
.pain-card2 { background:#fff; border:1px solid var(--line); border-radius:12px; padding:24px; }
.pain-card2 h3 { font-family: var(--font-display); font-size:15px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.pain-card2 p { font-size:13px; color:var(--ink-soft); line-height:1.65; }
.pain-card2-quote { font-style:italic; color:var(--ink-faint); font-size:12px; margin-top:10px; padding-left:12px; border-left:2px solid var(--line); }

/* feature tag grid */
.feat-legend { display:flex; gap:16px; flex-wrap:wrap; font-family: var(--font-mono); font-size:10.5px; color:var(--ink-faint); }
.feat-legend-dot { width:7px; height:7px; border-radius:2px; display:inline-block; margin-right:5px; }
.feat-tag-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:16px; }
.feat-tag-card { background:#fff; border:1px solid var(--line); border-radius:12px; padding:20px; position:relative; }
.feat-tag-card.highlighted { border-color: rgba(15,157,140,0.35); }
.feat-tag-badge { position:absolute; top:16px; right:16px; font-family:var(--font-mono); font-size:9px; padding:3px 8px; border-radius:4px; letter-spacing:0.5px; }
.feat-tag-num { font-family: var(--font-mono); font-size:11px; color:var(--ink-faint); margin-bottom:8px; }
.feat-tag-card h3 { font-family: var(--font-display); font-size:14px; font-weight:700; color:var(--ink); margin-bottom:6px; padding-right:70px; line-height:1.35; }
.feat-tag-card p { font-size:12.5px; color:var(--ink-soft); line-height:1.6; }

/* who-for checklist + stat panel */
.who-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.checklist { list-style:none; display:flex; flex-direction:column; gap:11px; margin-top:20px; }
.checklist li { display:flex; align-items:flex-start; gap:11px; font-size:14px; color:var(--ink-soft); line-height:1.5; }
.check-mark { width:19px; height:19px; min-width:19px; background:var(--teal-glow); border-radius:5px; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.check-mark svg { width:10px; height:10px; }
.not-for-box { margin-top:20px; padding:16px 18px; background:var(--paper-2); border-radius:10px; border-left:3px solid var(--gold); font-size:13px; color:var(--ink-soft); line-height:1.6; }
.stat-panel { background: var(--ink-2); border-radius:14px; padding:26px; }
.stat-panel-title { font-family: var(--font-mono); font-size:10.5px; letter-spacing:1.5px; color:var(--teal); margin-bottom:16px; }
.stat-row { display:flex; justify-content:space-between; align-items:center; padding:9px 0; border-bottom:1px solid var(--line-dark); }
.stat-row:last-child { border-bottom:none; }
.stat-row-label { font-size:12.5px; color:#8593A2; }
.stat-row-val { font-family: var(--font-display); font-size:13px; font-weight:700; color:var(--gold); }

/* single price box */
.price-single { max-width:640px; margin:36px auto 0; background:rgba(255,255,255,0.04); border:1px solid rgba(15,157,140,0.3); border-radius:16px; padding:38px; }
.price-single-tag { text-align:center; margin-bottom:16px; }
.price-single-tag span { font-family: var(--font-mono); font-size:10.5px; color:var(--teal); background:rgba(15,157,140,0.12); padding:5px 14px; border-radius:20px; letter-spacing:0.8px; }
.price-single-amount { text-align:center; margin-bottom:20px; display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }
.price-mrp-label { font-family: var(--font-mono); font-size:10px; color:#6B7A8C; text-transform:uppercase; margin-bottom:4px; }
.price-mrp-val { font-family: var(--font-display); font-size:26px; font-weight:700; color:#4A5563; text-decoration:line-through; }
.price-new-label { font-family: var(--font-mono); font-size:10px; color:var(--gold); text-transform:uppercase; margin-bottom:4px; }
.price-new-val { font-family: var(--font-display); font-size:48px; font-weight:700; color:#F3F6F8; }
.price-single-suffix { text-align:center; font-size:12.5px; color:#6B7A8C; margin-bottom:20px; }
.price-amc-box { text-align:center; background:rgba(201,122,43,0.08); border:1px solid rgba(201,122,43,0.2); border-radius:8px; padding:13px; margin-bottom:20px; font-size:13px; color:#A9B6C2; }
.price-amc-box b { color:var(--gold); }
.price-single-list { display:flex; flex-direction:column; gap:9px; margin-bottom:24px; }
.price-single-line { display:flex; align-items:center; gap:10px; font-size:13px; color:#A9B6C2; }
.price-single-line .tick { background:rgba(15,157,140,0.18); }
.price-single-note { text-align:center; font-size:11px; color:#566578; margin-top:16px; }
.referral-box { text-align:center; margin-top:24px; padding:20px; background:rgba(201,122,43,0.06); border:1px dashed rgba(201,122,43,0.3); border-radius:12px; max-width:640px; margin-left:auto; margin-right:auto; font-size:13px; color:#A9B6C2; }
.referral-box b { color: var(--gold); }

/* about + team */
.about-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.sig-block { margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }
.sig-name { font-family: var(--font-display); font-size:16px; font-weight:700; color:var(--ink); }
.sig-role { font-size:12.5px; color:var(--ink-faint); margin-top:2px; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:10px; margin-top:20px; }
.team-card { background: var(--paper-2); border:1px solid var(--line); border-radius:8px; padding:13px 14px; }
.team-name { font-family: var(--font-body); font-size:13.5px; font-weight:600; color:var(--ink); }
.team-role { font-size:11px; color:var(--teal-deep); font-weight:600; margin-top:2px; }
.team-desc { font-size:11px; color:var(--ink-faint); margin-top:3px; line-height:1.4; }
.contact-card-dark { background: var(--ink-2); border-radius:14px; padding:26px; }
.contact-card-label { font-family: var(--font-mono); font-size:10.5px; letter-spacing:1.5px; color:var(--teal); margin-bottom:16px; }
.contact-row { display:flex; gap:12px; margin-bottom:14px; }
.contact-row-icon { width:32px; height:32px; min-width:32px; background:rgba(15,157,140,0.14); border-radius:7px; }
.contact-row-text { font-size:12.5px; color:#8593A2; line-height:1.5; }
.contact-row-text strong { color:#F3F6F8; display:block; font-size:13px; margin-bottom:2px; }
.contact-row-text a { color: var(--teal); text-decoration:none; }

@media (max-width: 960px) {
  .who-grid2, .about-grid2 { grid-template-columns:1fr; gap:36px; }
  .time-banner { justify-content: center; }
}

/* ══ DIGIREADY-STYLE COMPONENTS ══ */

/* why cards */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card { background:#fff; border:1px solid var(--line); border-radius:12px; padding:26px 24px; }
.why-title { font-family: var(--font-display); font-size:15.5px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.why-desc { font-size:13px; color:var(--ink-soft); line-height:1.6; }

/* package tier cards */
.pkg-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:stretch; }
.pkg-card { border-radius:12px; border:1px solid var(--line); overflow:hidden; display:flex; flex-direction:column; background:#fff; }
.pkg-card.featured { border-color: rgba(15,157,140,0.4); }
.pkg-top { padding:22px 20px 16px; border-bottom:1px solid var(--line); position:relative; }
.pkg-card.featured .pkg-top { background: var(--ink); }
.pkg-ribbon { position:absolute; top:14px; right:14px; font-family:var(--font-mono); font-size:9px; letter-spacing:0.8px; background:var(--teal); color:#fff; padding:3px 9px; border-radius:20px; }
.pkg-name { font-family: var(--font-display); font-size:18px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.pkg-card.featured .pkg-name { color:#fff; }
.pkg-for { font-size:11px; color:var(--ink-faint); margin-bottom:14px; }
.pkg-card.featured .pkg-for { color:#8593A2; }
.pkg-price { font-family: var(--font-display); font-size:28px; font-weight:700; color:var(--teal-deep); line-height:1; margin-bottom:4px; }
.pkg-card.featured .pkg-price { color: var(--teal); }
.pkg-price-note { font-family: var(--font-mono); font-size:10px; color:var(--ink-faint); }
.pkg-card.featured .pkg-price-note { color:#6B7A8C; }
.pkg-custom-price { font-family: var(--font-display); font-size:17px; font-weight:700; color:var(--teal-deep); }
.pkg-body { padding:16px 20px 20px; flex:1; display:flex; flex-direction:column; }
.pkg-delivery { display:inline-flex; align-items:center; font-family:var(--font-mono); font-size:10px; background:var(--teal-glow); color:var(--teal-deep); padding:5px 11px; border-radius:20px; margin-bottom:14px; }
.pkg-features { list-style:none; margin-bottom:16px; flex:1; }
.pkg-feature { display:flex; gap:8px; font-size:12px; color:var(--ink-soft); padding:5px 0; border-bottom:1px solid var(--paper-2); line-height:1.5; }
.pkg-feature:last-child { border-bottom:none; }
.pkg-support { font-family: var(--font-mono); font-size:10px; color:var(--ink-faint); margin-bottom:14px; }
.pkg-cta { display:block; text-align:center; background:var(--teal); color:#fff; font-family:var(--font-body); font-size:12.5px; font-weight:600; padding:11px; border-radius:7px; text-decoration:none; }
.pkg-cta.ghost { background:transparent; border:1.5px solid var(--teal); color:var(--teal-deep); }

/* how-it-works with connecting line (genuine sequence) */
.how-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; }
.how-steps::before { content:''; position:absolute; top:26px; left:10%; right:10%; height:1px; background:var(--line); z-index:0; }
.how-step { text-align:center; position:relative; z-index:1; padding:0 10px; }
.how-num { width:52px; height:52px; border-radius:50%; background:var(--ink); border:2px solid var(--teal); display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:15px; color:var(--teal); margin:0 auto 14px; }
.how-title { font-family: var(--font-display); font-size:13.5px; font-weight:700; color:var(--ink); margin-bottom:6px; }
.how-desc { font-size:11.5px; color:var(--ink-soft); line-height:1.5; }

/* hosting tiers */
.hosting-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:900px; margin:0 auto; }
.hosting-card { border:1px solid var(--line); border-radius:12px; padding:24px 22px; }
.hosting-tier { font-family: var(--font-mono); font-size:10.5px; letter-spacing:1px; color:var(--teal-deep); margin-bottom:8px; }
.hosting-price { font-family: var(--font-display); font-size:24px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.hosting-storage { font-size:11.5px; color:var(--ink-faint); margin-bottom:14px; }
.hosting-features { list-style:none; }
.hosting-feat { font-size:12.5px; color:var(--ink-soft); padding:4px 0; }

/* add-ons list */
.addons-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:36px; max-width:900px; margin:0 auto; }
.addon-group-title { font-family: var(--font-display); font-size:14px; font-weight:700; color:var(--ink); margin-bottom:14px; padding-bottom:8px; border-bottom:2px solid var(--teal); }
.addon-row { display:flex; justify-content:space-between; align-items:center; padding:9px 0; border-bottom:1px solid var(--line); gap:14px; }
.addon-row:last-child { border-bottom:none; }
.addon-name { font-size:12.5px; color:var(--ink-soft); }
.addon-price { font-family: var(--font-mono); font-size:12px; font-weight:600; color:var(--teal-deep); white-space:nowrap; }
.addon-free { font-family: var(--font-mono); font-size:11.5px; font-weight:600; color:var(--gold); }

/* AMC cards */
.amc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; max-width:800px; margin:0 auto 28px; }
.amc-card { background: rgba(255,255,255,0.04); border:1px solid var(--line-dark); border-radius:12px; padding:24px 20px; text-align:center; }
.amc-card.highlight { border-color: rgba(15,157,140,0.35); }
.amc-name { font-family: var(--font-display); font-size:14.5px; font-weight:700; color:#F3F6F8; margin-bottom:8px; }
.amc-price { font-family: var(--font-display); font-size:24px; font-weight:700; color:var(--teal); margin-bottom:4px; }
.amc-per { font-family: var(--font-mono); font-size:10px; color:#6B7A8C; }
.amc-includes { max-width:620px; margin:0 auto; background: rgba(15,157,140,0.08); border:1px solid rgba(15,157,140,0.2); border-radius:12px; padding:20px 22px; }
.amc-includes-title { font-family: var(--font-mono); font-size:10.5px; letter-spacing:1px; color:var(--teal); margin-bottom:12px; }
.amc-list { display:flex; flex-wrap:wrap; gap:9px; }
.amc-item { font-size:12px; color:#A9B6C2; }

/* payment terms band */
.payment-band { padding:56px 24px; background: var(--teal-glow); border-top:1px solid rgba(15,157,140,0.2); border-bottom:1px solid rgba(15,157,140,0.2); }
.payment-inner { max-width:700px; margin:0 auto; text-align:center; }
.payment-title { font-family: var(--font-display); font-size:22px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.payment-sub { font-size:14px; color:var(--ink-soft); margin-bottom:26px; }
.payment-grid { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.payment-item { background:#fff; border:1px solid rgba(15,157,140,0.3); border-radius:10px; padding:16px 22px; min-width:150px; text-align:center; }
.payment-pct { font-family: var(--font-display); font-size:28px; font-weight:700; color:var(--teal-deep); }
.payment-when { font-family: var(--font-mono); font-size:10.5px; color:var(--ink-soft); margin-top:4px; }
.payment-note { font-size:11.5px; color:var(--ink-faint); margin-top:14px; }

/* contact form (light variant) */
.form-wrap { max-width:560px; margin:0 auto; }
.form-grid { display:flex; flex-direction:column; gap:11px; }
.form-row { display:flex; gap:11px; }
.form-input, .form-select, .form-textarea { flex:1; background:var(--paper-2); border:1px solid var(--line); color:var(--ink); font-size:13.5px; padding:12px 15px; border-radius:8px; outline:none; font-family:var(--font-body); }
.form-textarea { width:100%; resize:vertical; min-height:90px; }
.form-note { font-size:10.5px; color:var(--ink-faint); text-align:center; margin-top:8px; }

@media (max-width: 960px) {
  .pkg-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .how-steps { grid-template-columns:repeat(3,1fr); gap:20px; }
  .how-steps::before { display:none; }
  .hosting-grid, .addons-grid { grid-template-columns:1fr; }
  .amc-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .pkg-grid, .why-grid { grid-template-columns:1fr; }
  .how-steps { grid-template-columns:repeat(2,1fr); }
  .form-row { flex-direction:column; }
}

/* ══ ADDRESSPRINT-STYLE COMPONENTS ══ */

/* label mock visual — hero signature element */
.label-mock { background: var(--ink-2); border-radius:14px; padding:22px; }
.label-mock-paper { background:#fff; border-radius:8px; padding:20px 18px; margin-bottom:16px; }
.label-mock-to { font-family: var(--font-mono); font-size:9.5px; color:#8593A2; letter-spacing:1px; margin-bottom:6px; }
.label-mock-name { font-family: var(--font-display); font-size:16px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.label-mock-line { font-size:12px; color:var(--ink-soft); line-height:1.5; }
.label-mock-from { margin-top:12px; padding-top:10px; border-top:1px dashed var(--line); font-family:var(--font-mono); font-size:10px; color:#8593A2; }
.label-size-row { display:flex; gap:8px; flex-wrap:wrap; }
.label-size-pill { font-family: var(--font-mono); font-size:10.5px; padding:6px 12px; border-radius:6px; border:1px solid var(--line-dark); color:#8593A2; }
.label-size-pill.active { background:var(--teal); color:#fff; border-color:var(--teal); }

/* audience cards (5-up) */
.audience-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; }
.audience-card { background:#fff; border:1px solid var(--line); border-radius:10px; padding:20px; font-size:13px; color:var(--ink-soft); line-height:1.55; }
.audience-card b { color:var(--ink); font-family:var(--font-display); font-size:14px; display:block; margin-bottom:4px; }

/* format showcase pills */
.format-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.format-card { background:#fff; border:1px solid var(--line); border-radius:10px; padding:20px; text-align:center; }
.format-name { font-family: var(--font-display); font-size:18px; font-weight:700; color:var(--teal-deep); margin-bottom:4px; }
.format-desc { font-size:11.5px; color:var(--ink-faint); }

/* compact 4-tier pricing */
.price-mini-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; max-width:920px; margin:0 auto; }
.price-mini { background: rgba(255,255,255,0.04); border:1px solid var(--line-dark); border-radius:12px; padding:22px 18px; text-align:center; }
.price-mini.best { border-color: var(--teal); background: rgba(15,157,140,0.08); }
.price-mini-tag { font-family: var(--font-mono); font-size:9px; color:var(--gold); letter-spacing:0.8px; margin-bottom:10px; height:12px; }
.price-mini-name { font-family: var(--font-mono); font-size:10.5px; color:#8593A2; text-transform:uppercase; letter-spacing:0.8px; margin-bottom:10px; }
.price-mini-amt { font-family: var(--font-display); font-size:22px; font-weight:700; color:#F3F6F8; margin-bottom:4px; }
.price-mini-sub { font-size:10.5px; color:#6B7A8C; }

@media (max-width: 960px) {
  .format-grid, .price-mini-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 640px) {
  .format-grid, .price-mini-grid { grid-template-columns:1fr; }
}

/* ══ TRADEKIT-STYLE COMPONENTS ══ */

/* POUR accessibility principles */
.pour-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.pour-card { background:#fff; border:1px solid var(--line); border-top:3px solid var(--teal); border-radius:10px; padding:20px 18px; }
.pour-letter { font-family: var(--font-display); font-size:26px; font-weight:700; color:var(--teal-deep); margin-bottom:8px; }
.pour-title { font-family: var(--font-display); font-size:13.5px; font-weight:700; color:var(--ink); margin-bottom:6px; }
.pour-desc { font-size:12px; color:var(--ink-soft); line-height:1.55; }

/* audit split — built-in vs auditor arranged */
.audit-split { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.audit-card { background: var(--ink-2); border-radius:14px; padding:26px; }
.audit-card.accent { background: rgba(15,157,140,0.1); border:1px solid rgba(15,157,140,0.3); }
.audit-num { font-family: var(--font-mono); font-size:10.5px; color:var(--teal); letter-spacing:1px; margin-bottom:12px; }
.audit-title { font-family: var(--font-display); font-size:17px; font-weight:700; color:#F3F6F8; margin-bottom:10px; }
.audit-card.accent .audit-title { color:var(--ink); }
.audit-desc { font-size:13px; color:#A9B6C2; line-height:1.7; }
.audit-card.accent .audit-desc { color:var(--ink-soft); }

/* urgency banner */
.urgency-band { background: rgba(201,122,43,0.1); border-top:1px solid rgba(201,122,43,0.25); border-bottom:1px solid rgba(201,122,43,0.25); padding:16px 24px; text-align:center; }
.urgency-text { font-size:13.5px; color:#8A4E1B; font-weight:500; max-width:720px; margin:0 auto; }
.urgency-text b { color:var(--gold); }

/* rationale tool preview */
.rationale-preview { background: var(--ink-2); border-radius:14px; padding:24px; }
.rp-title { font-family: var(--font-mono); font-size:10.5px; color:#6B7A8C; letter-spacing:1px; margin-bottom:16px; }
.rp-row { display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--line-dark); font-size:12.5px; }
.rp-row:last-child { border-bottom:none; }
.rp-label { color:#6B7A8C; }
.rp-val { color:#E7ECF1; font-weight:600; }
.rp-val.up { color:var(--teal); }
.rp-val.down { color:#D97757; }

@media (max-width: 960px) {
  .pour-grid { grid-template-columns:1fr 1fr; }
  .audit-split { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .pour-grid { grid-template-columns:1fr; }
}

/* ══ FAQ COMPONENT (SEO/GEO) ══ */
.faq-sec { background: var(--paper); padding: 88px 24px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-glow); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 400;
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; padding: 12px 38px 0 0; }
