/* ==========================================================================
   TSC - Dev  —  design tokens
   Display: Space Grotesk · Body: Inter · Utility/mono: JetBrains Mono
   ========================================================================== */

:root{
  --ink:        #0B1524;
  --ink-soft:   #101C30;
  --paper:      #F6F8FB;
  --paper-soft: #ECEFF4;
  --white:      #FFFFFF;
  --slate:      #5B6B82;
  --slate-dim:  #8592A6;
  --line:       #E2E6ED;
  --line-dark:  #223350;

  --brand:      #2454FF;
  --brand-dark: #173CC2;
  --brand-tint: #EAF0FF;
  --amber:      #FFB020;
  --amber-tint: #FFF4DF;

  --billing:    #1FAA6E;
  --billing-tint: #E7F7EF;
  --ems:        #7C5CFF;
  --ems-tint:   #F1EDFF;
  --hms:        #FF5C7A;
  --hms-tint:   #FFEBF0;

  --font-display:'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --shadow-soft: 0 20px 50px -25px rgba(11,21,36,0.35);
  --shadow-card: 0 1px 0 rgba(11,21,36,0.03), 0 10px 30px -20px rgba(11,21,36,0.25);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{ outline:2.5px solid var(--brand); outline-offset:3px; border-radius:4px; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:0.02em;
  color:var(--brand);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  text-transform:none;
}
.eyebrow::before{
  content:"";
  width:18px; height:1px;
  background:var(--brand);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--amber); }
.eyebrow.on-dark::before{ background:var(--amber); }

.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head h2{ font-size:clamp(28px,3.4vw,40px); margin-bottom:14px; }
.section-head p{ color:var(--slate); font-size:16.5px; }

section{ padding:96px 0; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  padding:13px 22px;
  border-radius:999px;
  border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--brand); color:#fff; box-shadow:0 10px 24px -10px rgba(36,84,255,0.55); }
.btn-primary:hover{ transform:translateY(-2px); background:var(--brand-dark); }
.btn-amber{ background:var(--amber); color:var(--ink); box-shadow:0 10px 24px -10px rgba(255,176,32,0.55); }
.btn-amber:hover{ transform:translateY(-2px); }
.btn-ghost{ border-color:var(--line); color:var(--ink); background:transparent; }
.btn-ghost:hover{ border-color:var(--brand); color:var(--brand); }
.btn-ghost-dark{ border-color:rgba(255,255,255,0.25); color:#fff; }
.btn-ghost-dark:hover{ border-color:#fff; background:rgba(255,255,255,0.08); }
.btn-sm{ padding:10px 18px; font-size:13.5px; }
.btn-block{ width:100%; justify-content:center; }
.btn svg{ width:15px; height:15px; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(246,248,251,0.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ width:48px; height:48px; display:block; }
.logo-word{ font-family:var(--font-display); font-weight:700; font-size:19px; letter-spacing:-0.01em; }
.logo-word span{ color:var(--brand); }

.nav-desktop{ display:flex; align-items:center; gap:6px; }
.nav-desktop > li > a{
  font-size:14.5px; font-weight:500; color:var(--ink);
  padding:10px 14px; border-radius:999px;
  transition:background .16s ease, color .16s ease;
  display:flex; align-items:center; gap:5px;
}
.nav-desktop > li > a:hover{ background:var(--paper-soft); color:var(--brand); }
.nav-desktop > li.current > a{ color:var(--brand); }

.has-dropdown{ position:relative; }
.dropdown{
  position:absolute; top:calc(100% + 10px); left:0;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  min-width:230px; padding:8px;
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown li a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:8px; font-size:14px; color:var(--ink);
}
.dropdown li a:hover{ background:var(--paper-soft); color:var(--brand); }
.dropdown .dot{ width:7px; height:7px; border-radius:50%; flex:none; }

.header-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{
  display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--line);
  background:#fff; align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:1.6px; background:var(--ink); position:relative; transition:.2s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

@media (max-width: 940px){
  .nav-desktop{ display:none; }
  .header-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- mobile nav ---------- */
.nav-mobile{
  display:none; flex-direction:column; gap:2px;
  background:#fff; border-top:1px solid var(--line); padding:14px 0 22px;
}
.nav-mobile.open{ display:flex; }
.nav-mobile a{ padding:12px 28px; font-size:15px; font-weight:500; display:block; }
.nav-mobile a:hover{ background:var(--paper-soft); }
.nav-mobile .sub-label{ padding:10px 28px 4px; font-family:var(--font-mono); font-size:11.5px; color:var(--slate-dim); }

/* ---------- hero ---------- */
.hero{
  background:var(--ink);
  color:#fff;
  padding:88px 0 100px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(ellipse 90% 70% at 30% 20%, black 40%, transparent 90%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:60px; align-items:center;
}
.hero h1{
  font-size:clamp(34px,4.6vw,54px);
  margin-bottom:20px;
}
.hero h1 em{ font-style:normal; color:var(--amber); }
.hero p.lead{ font-size:17.5px; color:#C6D0E0; max-width:520px; margin-bottom:34px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats div strong{ font-family:var(--font-display); font-size:24px; display:block; }
.hero-stats div span{ font-size:12.5px; color:var(--slate-dim); font-family:var(--font-mono); }

/* terminal signature element */
.terminal{
  background:var(--ink-soft);
  border:1px solid var(--line-dark);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.terminal-bar{
  display:flex; align-items:center; gap:8px;
  padding:14px 18px;
  border-bottom:1px solid var(--line-dark);
}
.terminal-bar span{ width:11px; height:11px; border-radius:50%; }
.terminal-bar span:nth-child(1){ background:#FF5F57; }
.terminal-bar span:nth-child(2){ background:#FEBC2E; }
.terminal-bar span:nth-child(3){ background:#28C840; }
.terminal-bar em{ font-style:normal; margin-left:8px; font-family:var(--font-mono); font-size:12px; color:var(--slate-dim); }
.terminal-body{ padding:24px 22px 30px; font-family:var(--font-mono); font-size:13.3px; }
.terminal-body .line{ display:flex; gap:10px; margin-bottom:13px; color:#AEBBD0; opacity:0; animation:reveal .5s ease forwards; }
.terminal-body .line:nth-child(1){ animation-delay:.2s; }
.terminal-body .line:nth-child(2){ animation-delay:.9s; }
.terminal-body .line:nth-child(3){ animation-delay:1.6s; }
.terminal-body .line:nth-child(4){ animation-delay:2.3s; }
.terminal-body .line:nth-child(5){ animation-delay:3.0s; }
.terminal-body .prompt{ color:var(--amber); flex:none; }
.terminal-body .ok{ color:#28C840; }
@keyframes reveal{ to{ opacity:1; } }
.terminal-cursor{ display:inline-block; width:7px; height:14px; background:var(--amber); animation:blink 1s step-start infinite; vertical-align:middle; margin-left:2px; }
@keyframes blink{ 50%{ opacity:0; } }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns:1fr; }
}

/* ---------- services ---------- */
.services-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px;
}
.service-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:30px 26px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); border-color:transparent; }
.icon-tile{
  width:46px; height:46px; border-radius:12px;
  background:var(--brand-tint); color:var(--brand);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.icon-tile svg{ width:22px; height:22px; }
.service-card h3{ font-size:18px; margin-bottom:9px; }
.service-card p{ color:var(--slate); font-size:14.5px; }

@media (max-width: 900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 600px){ .services-grid{ grid-template-columns:1fr; } }

/* ---------- products (ready-made software) ---------- */
.products{ background:var(--paper-soft); }
.products-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.product-card{
  background:#fff; border-radius:var(--radius-lg); border:1px solid var(--line);
  padding:30px; display:flex; flex-direction:column; gap:18px;
  box-shadow:var(--shadow-card);
}
.product-top{ display:flex; align-items:center; gap:13px; }
.product-top img{ width:46px; height:46px; flex:none; display:block; }
.product-top .p-name{ font-family:var(--font-display); font-size:19px; font-weight:700; }
.product-top .p-tag{ font-family:var(--font-mono); font-size:12px; color:var(--slate-dim); }
.product-card p.desc{ color:var(--slate); font-size:14.5px; }
.product-features{ display:flex; flex-direction:column; gap:9px; }
.product-features li{ display:flex; gap:9px; font-size:13.8px; color:var(--ink); align-items:flex-start; }
.product-features svg{ width:15px; height:15px; flex:none; margin-top:3px; }
.product-card .card-actions{ display:flex; gap:10px; margin-top:auto; padding-top:6px; }

.product-card.billing .p-tag, .product-card.billing svg.tick{ color:var(--billing); }
.product-card.ems .p-tag, .product-card.ems svg.tick{ color:var(--ems); }
.product-card.hms .p-tag, .product-card.hms svg.tick{ color:var(--hms); }

@media (max-width: 940px){ .products-grid{ grid-template-columns:1fr; } }

/* ---------- about ---------- */
.about-grid{ display:grid; grid-template-columns:0.95fr 1.05fr; gap:60px; align-items:center; }
.about-copy p{ color:var(--slate); font-size:16px; margin-bottom:16px; }
.about-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:8px; }
.stat-box{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:22px; }
.stat-box strong{ font-family:var(--font-display); font-size:30px; display:block; color:var(--brand); }
.stat-box span{ font-size:13px; color:var(--slate); }
.about-panel{
  background:var(--ink); color:#fff; border-radius:var(--radius-lg);
  padding:34px; position:relative; overflow:hidden;
}
.about-panel h3{ font-size:22px; margin-bottom:14px; }
.about-panel p{ color:#C6D0E0; font-size:14.8px; margin-bottom:20px; }
.value-list{ display:flex; flex-direction:column; gap:14px; }
.value-list li{ display:flex; gap:12px; align-items:flex-start; font-size:14.3px; color:#DDE4EF; }
.value-list .num{ font-family:var(--font-mono); color:var(--amber); flex:none; }

@media (max-width: 860px){ .about-grid{ grid-template-columns:1fr; } }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:26px; }
.contact-form{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px; box-shadow:var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13px; font-weight:600; }
.field input, .field select, .field textarea{
  border:1.5px solid var(--line); border-radius:10px; padding:12px 14px;
  font-family:var(--font-body); font-size:14.5px; background:var(--paper); color:var(--ink);
  transition:border-color .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--brand); outline:none; }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color:var(--slate-dim); margin-top:12px; }

.contact-side{ display:flex; flex-direction:column; gap:18px; }
.contact-info-card{
  background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:30px;
}
.contact-info-card h3{ font-size:19px; margin-bottom:18px; }
.contact-line{ display:flex; gap:13px; align-items:flex-start; margin-bottom:16px; font-size:14px; color:#DDE4EF; }
.contact-line svg{ width:18px; height:18px; flex:none; margin-top:2px; color:var(--amber); }
.contact-line strong{ display:block; color:#fff; font-size:13.5px; margin-bottom:2px; }
.map-box{
  border-radius:var(--radius-lg); border:1px solid var(--line);
  background:repeating-linear-gradient(135deg, var(--paper-soft), var(--paper-soft) 10px, #fff 10px, #fff 20px);
  height:150px; display:flex; align-items:center; justify-content:center; color:var(--slate); font-size:13px; font-family:var(--font-mono);
}

@media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } }

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--brand); color:#fff; border-radius:var(--radius-lg);
  padding:48px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-band h3{ font-size:26px; margin-bottom:8px; }
.cta-band p{ color:#DCE5FF; font-size:14.5px; }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:#C6D0E0; padding:70px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:46px; border-bottom:1px solid var(--line-dark); }
.footer-brand p{ font-size:13.8px; color:var(--slate-dim); margin:16px 0 20px; max-width:270px; }
.footer-logo{ display:flex; align-items:center; gap:9px; }
.footer-logo img{ width:42px; height:42px; display:block; }
.footer-logo span{ font-family:var(--font-display); font-weight:700; font-size:17px; color:#fff; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center; transition:.18s;
}
.social-row a:hover{ background:var(--brand); border-color:var(--brand); }
.social-row svg{ width:15px; height:15px; }
.footer-col h4{ color:#fff; font-size:13.5px; margin-bottom:18px; font-family:var(--font-mono); font-weight:500; letter-spacing:.02em; }
.footer-col li{ margin-bottom:11px; }
.footer-col a{ font-size:14px; color:#AEBBD0; transition:color .16s; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:12.8px; color:var(--slate-dim); flex-wrap:wrap; gap:10px; }

@media (max-width: 860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns:1fr; } }

/* ---------- inner page hero (hosting / whatsapp) ---------- */
.page-hero{ background:var(--ink); color:#fff; padding:70px 0 78px; position:relative; overflow:hidden; }
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:radial-gradient(ellipse 80% 60% at 80% 10%, black 30%, transparent 85%);
}
.page-hero .inner{ position:relative; max-width:680px; }
.page-hero h1{ font-size:clamp(30px,4vw,44px); margin-bottom:16px; }
.page-hero p{ color:#C6D0E0; font-size:16.5px; }
.breadcrumb{ font-family:var(--font-mono); font-size:12.5px; color:var(--slate-dim); margin-bottom:18px; display:flex; gap:8px; align-items:center; position:relative;}
.breadcrumb a{ color:var(--amber); }

/* ---------- page-hero: split layout with visual panel ---------- */
.page-hero .hero-flex{
  position:relative;
  display:flex; align-items:center; justify-content:space-between; gap:50px; flex-wrap:wrap;
}
.page-hero .hero-copy{ max-width:560px; flex:1 1 380px; }
.page-hero .hero-visual{ flex:none; }

.hero-icon-panel{
  width:250px; height:250px;
  border-radius:var(--radius-lg);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-icon-panel img{
  width:100%; height:100%; object-fit:contain;
  position:relative; z-index:1;
  animation:heroFloat 5s ease-in-out infinite;
  will-change:transform;
}
.hero-icon-panel::before{
  content:"";
  position:absolute; inset:6%;
  border-radius:50%;
  z-index:0;
  background:radial-gradient(circle, rgba(255,255,255,0.32), rgba(255,255,255,0) 70%);
  animation:heroPulse 3.4s ease-in-out infinite;
}

@keyframes heroFloat{
  0%, 100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-16px) rotate(-1.2deg); }
}
@keyframes heroPulse{
  0%, 100%{ transform:scale(0.82); opacity:0.55; }
  50%{ transform:scale(1.12); opacity:0.12; }
}

@media (max-width: 860px){
  .page-hero .hero-flex{ flex-direction:column; align-items:flex-start; }
  .page-hero .hero-visual{ align-self:center; }
}
@media (max-width: 560px){
  .hero-icon-panel{ width:190px; height:190px; }
}

/* page-hero — blue variant (hosting) */
.page-hero.hero-blue{
  background:linear-gradient(135deg, #173CC2 0%, #2454FF 100%);
  color:#fff;
}
.page-hero.hero-blue::before{
  background-image:linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}
.page-hero.hero-blue .eyebrow{ color:var(--amber); }
.page-hero.hero-blue .eyebrow::before{ background:var(--amber); }
.page-hero.hero-blue p{ color:#D6E0FF; }
.page-hero.hero-blue .breadcrumb{ color:#A9BBF2; }
.page-hero.hero-blue .breadcrumb a{ color:var(--amber); }
.page-hero.hero-blue .hero-icon-panel{
  background:transparent;
  border:none;
  backdrop-filter:none;
  box-shadow:none;
  width:300px;
  height:300px;
}
.page-hero.hero-blue .hero-icon-panel img{
  animation:heroFloat 5.5s ease-in-out infinite;
}
.page-hero.hero-blue .hero-icon-panel::before{
  background:radial-gradient(circle, rgba(120,170,255,0.45), rgba(120,170,255,0) 70%);
  animation:heroPulse 3.2s ease-in-out infinite;
}

/* page-hero — lime variant (bulk whatsapp) */
.page-hero.hero-green{
  background:linear-gradient(135deg, #4C6B12 0%, #C8E86B 100%);
}
.page-hero.hero-green .hero-icon-panel{
  background:transparent;
  border:none;
  backdrop-filter:none;
  box-shadow:none;
  width:340px;
  height:340px;
}
.page-hero.hero-green .hero-icon-panel img{
  animation:heroFloat 4.4s ease-in-out infinite;
}
.page-hero.hero-green .hero-icon-panel::before{
  background:radial-gradient(circle, rgba(255,255,255,0.5), rgba(255,255,255,0) 70%);
  animation:heroPulse 2.6s ease-in-out infinite;
}
.page-hero.hero-green .hero-icon-panel::after{
  content:"";
  position:absolute; inset:-6%;
  border-radius:50%;
  z-index:0;
  border:1.5px solid rgba(76,107,18,0.4);
  animation:heroRing 2.6s ease-out infinite;
}

@keyframes heroRing{
  0%{ transform:scale(0.75); opacity:0.6; }
  100%{ transform:scale(1.18); opacity:0; }
}

/* pricing */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; }
.plan-card{
  background:#fff; border:1.5px solid var(--line); border-radius:var(--radius-lg);
  padding:32px 28px; display:flex; flex-direction:column; position:relative;
}
.plan-card.featured{ border-color:var(--brand); box-shadow:0 20px 45px -25px rgba(36,84,255,0.5); transform:translateY(-8px); }
.plan-badge{
  position:absolute; top:-13px; right:28px; background:var(--amber); color:var(--ink);
  font-family:var(--font-mono); font-size:11.5px; padding:5px 12px; border-radius:999px; font-weight:600;
}
.plan-name{ font-family:var(--font-mono); font-size:13px; color:var(--slate-dim); margin-bottom:10px; }
.plan-price{ font-family:var(--font-display); font-size:36px; margin-bottom:4px; }
.plan-price span{ font-family:var(--font-body); font-size:13.5px; color:var(--slate); font-weight:500; }
.plan-desc{ color:var(--slate); font-size:13.8px; margin-bottom:22px; }
.plan-features{ display:flex; flex-direction:column; gap:12px; margin-bottom:26px; flex:1; }
.plan-features li{ display:flex; gap:10px; font-size:14px; align-items:flex-start; }
.plan-features svg{ width:16px; height:16px; color:var(--brand); flex:none; margin-top:2px; }

@media (max-width: 940px){ .pricing-grid{ grid-template-columns:1fr; } .plan-card.featured{ transform:none; } }

/* feature / use-case grid (generic) */
.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.feature-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:24px; }
.feature-item .icon-tile{ margin-bottom:14px; }
.feature-item h4{ font-size:15.5px; margin-bottom:7px; }
.feature-item p{ font-size:13.3px; color:var(--slate); }
@media (max-width: 940px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 560px){ .feature-grid{ grid-template-columns:1fr; } }

/* steps (real sequence -> numbered is appropriate here) */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.step{ position:relative; padding:0 20px 0 0; }
.step .step-num{
  font-family:var(--font-mono); font-size:13px; color:var(--brand);
  width:38px; height:38px; border:1.5px solid var(--brand); border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; background:#fff; position:relative; z-index:1;
}
.step h4{ font-size:15.5px; margin-bottom:8px; }
.step p{ font-size:13.3px; color:var(--slate); }
.steps::before{
  content:""; position:absolute; top:19px; left:5%; right:5%; height:1.5px; background:var(--line); z-index:0;
}
@media (max-width: 860px){ .steps{ grid-template-columns:1fr; gap:28px; } .steps::before{ display:none; } }

/* faq */
.faq-list{ display:flex; flex-direction:column; gap:12px; max-width:760px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; }
.faq-item summary{
  padding:19px 22px; font-weight:600; font-size:15px; cursor:pointer; list-style:none;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-family:var(--font-mono); font-size:20px; color:var(--brand); flex:none; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item .faq-a{ padding:0 22px 20px; color:var(--slate); font-size:14.3px; }

.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:26px; }
.badge{
  font-family:var(--font-mono); font-size:12.5px; color:var(--slate);
  border:1px solid var(--line); padding:7px 13px; border-radius:999px; background:#fff;
}

.section.on-paper-soft{ background:var(--paper-soft); }
.divider-line{ height:1px; background:var(--line); border:none; margin:0; }