/* =========================================================
   SCIT CONSULTANTS — DESIGN TOKENS
   Concept: "The Ledger" — SCIT builds the registries, billing
   systems and record books institutions run on. The visual
   language borrows from registers, ledger rows and file
   reference codes rather than generic SaaS gradients.
   ========================================================= */
:root{
  --ink:        #0F2A22;   /* deep forest ink — used now only for footer + one contrast band */
  --ink-soft:   #163526;
  --navy:       #142347;   /* primary headline / nav-text color on light bg */
  --navy-soft:  #1F3268;
  --orange:     #F07B1B;   /* primary CTA / highlight accent */
  --orange-dark:#D5670E;
  --blue-stat:  #2955D6;   /* big stat numbers */
  --paper:      #FFFFFF;   /* page background is now white */
  --paper-dim:  #F5F6FA;   /* soft gray-blue for alternating sections */
  --brass:      #F07B1B;   /* legacy var name kept for compatibility, now = orange */
  --brass-dark: #D5670E;
  --teal:       #1F8C82;   /* live/interactive system accent */
  --slate:      #5B6472;   /* secondary text on paper */
  --line:       #E4E7EF;   /* hairline rule on paper */
  --line-dark:  rgba(255,255,255,0.14);
  --red-flag:   #B5482F;

  /* Registry accent set — one color per product/plan/stat so the
     "ledger" motif reads as colorful and alive rather than monochrome.
     Each accent has a soft tint for chips/backgrounds. */
  --c-amber:      #F07B1B;  --c-amber-tint:  #FDEBDA;
  --c-teal:       #1F8C82;  --c-teal-tint:   #DCF1EE;
  --c-coral:      #E0623A;  --c-coral-tint:  #FBE2D7;
  --c-blue:       #2955D6;  --c-blue-tint:   #DEE7FB;
  --c-violet:     #7A56D6;  --c-violet-tint: #E7DFF9;
  --c-green:      #2E9E5B;  --c-green-tint:  #DBF0E2;
  --c-pink:       #D6478E;  --c-pink-tint:   #F8DDEB;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(15,42,34,0.06), 0 8px 24px rgba(15,42,34,0.06);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--navy);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
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.15; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 24px; }

:focus-visible{ outline:2px solid var(--teal); outline-offset:3px; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--ink); color:var(--paper);
  padding:10px 16px; z-index:200; border-radius:0 0 4px 0;
}
.skip-link:focus{ left:0; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

/* ---------- Eyebrow / reference-code label ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--teal); font-weight:600;
}
.eyebrow::before{ content:''; width:16px; height:1px; background:var(--teal); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--paper); border-bottom:1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:40px; height:40px; border-radius:4px;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, var(--c-teal) 150%);
  color:var(--orange); font-family:var(--font-mono); font-weight:600; font-size:15px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-name{ font-family:var(--font-display); font-weight:700; font-size:18px; color:var(--navy); }
.brand-sub{ font-family:var(--font-mono); font-size:10px; letter-spacing:0.1em; color:var(--slate); }

.primary-nav{ display:flex; align-items:center; gap:28px; }
.primary-nav a{
  font-size:14.5px; font-weight:500; color:var(--navy); padding:8px 0; position:relative;
}
.primary-nav a:not(.nav-cta)::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--orange);
  transform:scaleX(0); transform-origin:left; transition:transform .18s ease;
}
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a.active::after{ transform:scaleX(1); }
.nav-cta{
  background:var(--orange); color:#fff !important; padding:11px 22px !important;
  border-radius:3px; font-weight:700 !important;
}
.nav-cta:hover{ background:var(--orange-dark); }

.nav-toggle{ display:none; background:none; border:0; width:34px; height:34px; cursor:pointer; padding:0; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--navy); margin:5px auto; transition:.2s; }

@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .primary-nav{
    position:absolute; top:76px; left:0; right:0; background:var(--paper);
    flex-direction:column; align-items:flex-start; gap:0; border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; transition:max-height .25s ease;
  }
  .primary-nav.open{ max-height:480px; }
  .primary-nav a{ width:100%; padding:14px 24px; border-top:1px solid var(--line); }
  .nav-cta{ margin:14px 24px; display:inline-block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  background:var(--paper); color:var(--navy); position:relative; overflow:hidden;
  background-image:
    radial-gradient(680px 420px at 96% -10%, rgba(240,123,27,0.10) 0%, rgba(240,123,27,0) 70%),
    radial-gradient(620px 460px at -6% 108%, rgba(31,140,130,0.10) 0%, rgba(31,140,130,0) 70%);
  border-bottom:1px solid var(--line);
}
.hero-inner{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
  padding:76px 0 60px;
}
.hero-eyebrow{ color:var(--orange); }
.hero-eyebrow::before{ background:var(--orange); }
.hero h1{
  font-size:clamp(32px, 4.2vw, 52px); margin:18px 0 20px; color:var(--navy);
}
.hero h1 em{ font-style:normal; color:var(--orange); }
.hero-sub{ font-size:17.5px; color:var(--slate); max-width:52ch; margin-bottom:32px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:8px; }

.btn{
  display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14.5px;
  padding:13px 22px; border-radius:3px; border:1px solid transparent; cursor:pointer;
  transition:background .15s, color .15s, border-color .15s, transform .1s;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--orange); color:#fff; }
.btn-primary:hover{ background:var(--orange-dark); }
.btn-outline{ border-color:var(--line); color:var(--navy); }
.btn-outline:hover{ border-color:var(--navy); background:var(--paper-dim); }
.btn-ghost{ border-color:var(--line); color:var(--navy); }
.btn-ghost:hover{ border-color:var(--navy); }
.btn-teal{ background:var(--teal); color:#fff; }
.btn-teal:hover{ background:#227E75; }
.btn-block{ width:100%; justify-content:center; }

/* Stats bar — sits below the hero as its own light strip, big blue numbers */
.stats-bar{ background:var(--paper); border-bottom:1px solid var(--line); }
.stats-row{ display:flex; flex-wrap:wrap; }
.stat-block{
  flex:1; min-width:150px; text-align:center; padding:36px 16px;
  border-right:1px solid var(--line);
}
.stat-block:last-child{ border-right:0; }
.stat-block .num{ font-family:var(--font-display); font-weight:700; font-size:clamp(28px,3.4vw,40px); color:var(--blue-stat); }
.stat-block .lbl{ font-size:14px; color:var(--slate); margin-top:6px; }

/* --- Hero ledger/dashboard mock (light card, sits on white hero) --- */
.ledger-card{
  background:#fff; border:1px solid var(--line); border-radius:10px;
  padding:22px; box-shadow:0 24px 60px rgba(20,35,71,0.12);
}
.ledger-card-head{
  display:flex; justify-content:space-between; align-items:center;
  padding-bottom:14px; margin-bottom:16px; border-bottom:1px dashed var(--line);
}
.ledger-card-head .dot-row span{
  display:inline-block; width:8px; height:8px; border-radius:50%; background:var(--line); margin-right:5px;
}
.ledger-card-head .dot-row span:first-child{ background:var(--red-flag); }
.ledger-title{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em; color:var(--slate); }
.ledger-live{ font-family:var(--font-mono); font-size:11px; color:var(--teal); display:flex; align-items:center; gap:6px; }
.ledger-live::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--teal); animation:pulse 1.8s infinite; }
@keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:.35;} }

.ledger-stats{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:16px; }
.ledger-stat{ background:var(--paper-dim); border:1px solid var(--line); border-radius:6px; padding:14px; border-top:3px solid transparent; }
.ledger-stat .num{ font-family:var(--font-mono); font-size:22px; color:var(--navy); font-weight:600; }
.ledger-stat .lbl{ font-family:var(--font-mono); font-size:10.5px; color:var(--slate); letter-spacing:0.05em; text-transform:uppercase; margin-top:4px; }
.ledger-stat:nth-child(1){ border-top-color:var(--c-teal); }
.ledger-stat:nth-child(2){ border-top-color:var(--c-amber); }
.ledger-stat:nth-child(3){ border-top-color:var(--c-violet); }
.ledger-stat:nth-child(4){ border-top-color:var(--c-coral); }

.ledger-rows{ display:flex; flex-direction:column; gap:0; }
.ledger-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0; border-bottom:1px dashed var(--line); font-size:13px; color:var(--navy);
}
.ledger-row:last-child{ border-bottom:0; }
.ledger-row .tag{
  font-family:var(--font-mono); font-size:10.5px; padding:3px 8px; border-radius:20px;
  background:var(--c-teal-tint); color:var(--teal); border:1px solid rgba(31,140,130,0.3);
}
.ledger-row .tag.paid{ background:var(--c-amber-tint); color:var(--orange-dark); border-color:rgba(240,123,27,0.3); }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns:1fr; padding:56px 0 48px; }
  .stat-block{ border-right:0; border-bottom:1px solid var(--line); }
}

/* =========================================================
   SECTION SCAFFOLDING
   ========================================================= */
.section{ padding:84px 0; }
.section-alt{ background:var(--paper-dim); }
.section-dark{ background:var(--navy); color:#fff; }
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(26px,3vw,36px); margin-top:14px; }
.section-head p{ color:var(--slate); margin-top:14px; font-size:16px; }
.section-dark .section-head p{ color:#C7C4B4; }

/* =========================================================
   WHY CHOOSE — manifest checklist
   ========================================================= */
.manifest{
  border-top:1px solid var(--line); border-left:1px solid var(--line);
  display:grid; grid-template-columns:repeat(3, 1fr);
}
.manifest-item{
  border-bottom:1px solid var(--line); border-right:1px solid var(--line);
  padding:26px 26px 24px; display:flex; gap:14px; align-items:flex-start;
}
.manifest-check{
  flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--ink);
  color:var(--brass); font-size:13px; display:flex; align-items:center; justify-content:center; margin-top:2px;
}
.manifest-item h4{ font-size:15.5px; margin-bottom:5px; }
.manifest-item p{ font-size:13.8px; color:var(--slate); }
.manifest-item:nth-child(9n+1) .manifest-check{ background:var(--c-teal); color:#fff; }
.manifest-item:nth-child(9n+2) .manifest-check{ background:var(--c-coral); color:#fff; }
.manifest-item:nth-child(9n+3) .manifest-check{ background:var(--c-violet); color:#fff; }
.manifest-item:nth-child(9n+4) .manifest-check{ background:var(--c-amber); color:var(--navy); }
.manifest-item:nth-child(9n+5) .manifest-check{ background:var(--c-blue); color:#fff; }
.manifest-item:nth-child(9n+6) .manifest-check{ background:var(--c-green); color:#fff; }
.manifest-item:nth-child(9n+7) .manifest-check{ background:var(--c-pink); color:#fff; }
.manifest-item:nth-child(9n+8) .manifest-check{ background:var(--ink); color:var(--brass); }
.manifest-item:nth-child(9n+9) .manifest-check{ background:var(--c-teal); color:#fff; }

@media (max-width: 860px){ .manifest{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 560px){ .manifest{ grid-template-columns:1fr; } }

/* =========================================================
   PRODUCT / REGISTRY CARDS
   ========================================================= */
.registry-grid{ display:flex; flex-direction:column; gap:1px; background:var(--line); border:1px solid var(--line); }
.registry-card{
  background:var(--paper); padding:34px 34px 34px 30px; display:grid; grid-template-columns:160px 1fr auto;
  gap:30px; align-items:start; border-left:4px solid var(--brass); transition:background .15s;
}
.registry-card:hover{ background:#fff; }
.reg-code{ font-family:var(--font-mono); }
.reg-code .num{ font-size:34px; color:var(--brass); font-weight:600; display:block; }
.reg-code .label{ font-size:11px; color:var(--slate); letter-spacing:0.06em; text-transform:uppercase; }
.registry-card h3{ font-size:22px; margin-bottom:8px; }
.registry-card > div.rc-body p{ color:var(--slate); margin-bottom:16px; font-size:14.8px; max-width:60ch; }
.feature-pills{ display:flex; flex-wrap:wrap; gap:8px; }
.feature-pills span{
  font-size:12.5px; font-family:var(--font-mono); background:var(--paper-dim); border:1px solid var(--line);
  padding:5px 10px; border-radius:20px; color:var(--navy);
}
.rc-price{ text-align:right; white-space:nowrap; }
.rc-price .from{ font-size:11px; color:var(--slate); text-transform:uppercase; letter-spacing:0.05em; }
.rc-price .amount{ font-family:var(--font-mono); font-size:22px; font-weight:600; color:var(--navy); margin:2px 0 12px; }
.rc-price .btn{ padding:10px 16px; font-size:13px; }

/* One accent per product, in catalogue order (01–06) */
.registry-card:nth-of-type(1),.product-detail:nth-of-type(1) .eyebrow{ --acc:var(--c-teal); }
.registry-card:nth-of-type(2),.product-detail:nth-of-type(2) .eyebrow{ --acc:var(--c-coral); }
.registry-card:nth-of-type(3),.product-detail:nth-of-type(3) .eyebrow{ --acc:var(--c-blue); }
.registry-card:nth-of-type(4),.product-detail:nth-of-type(4) .eyebrow{ --acc:var(--c-violet); }
.registry-card:nth-of-type(5),.product-detail:nth-of-type(5) .eyebrow{ --acc:var(--c-green); }
.registry-card:nth-of-type(6),.product-detail:nth-of-type(6) .eyebrow{ --acc:var(--c-pink); }
.registry-card{ border-left-color:var(--acc, var(--brass)); }
.registry-card .reg-code .num{ color:var(--acc, var(--brass)); }
.registry-card .feature-pills span:first-child{ background:color-mix(in srgb, var(--acc, var(--brass)) 14%, var(--paper-dim)); border-color:color-mix(in srgb, var(--acc, var(--brass)) 35%, var(--line)); }

@media (max-width: 800px){
  .registry-card{ grid-template-columns:1fr; }
  .rc-price{ text-align:left; }
}

/* Detailed product page blocks */
.product-detail{ border-top:1px solid var(--line); padding:64px 0; }
.product-detail:first-of-type{ border-top:0; }
.product-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:30px; }
.product-head h2{ font-size:clamp(24px,3vw,32px); margin-top:10px; }
.product-grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:48px; }
@media (max-width: 860px){ .product-grid{ grid-template-columns:1fr; } }

.feature-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 20px; margin:20px 0 24px; }
.feature-list li{ font-size:14.5px; padding-left:22px; position:relative; color:var(--navy); }
.feature-list li::before{ content:'—'; position:absolute; left:0; color:var(--teal); font-family:var(--font-mono); }
@media (max-width:560px){ .feature-list{ grid-template-columns:1fr; } }

.product-detail .eyebrow{ color:var(--acc, var(--teal)); }
.product-detail .eyebrow::before{ background:var(--acc, var(--teal)); }
.product-detail .feature-list li::before{ color:var(--acc, var(--teal)); }
.product-detail .price-table{ border-top:3px solid var(--acc, var(--brass)); }
.product-detail .price-table td.amount{ color:var(--acc, var(--ink)); }

.price-table{ width:100%; border-collapse:collapse; background:var(--paper); border:1px solid var(--line); }
.price-table th, .price-table td{ padding:14px 16px; text-align:left; border-bottom:1px solid var(--line); font-size:14.5px; }
.price-table th{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--slate); background:var(--paper-dim); }
.price-table td.amount{ font-family:var(--font-mono); font-weight:600; text-align:right; }
.price-table tr:last-child td{ border-bottom:0; }
.price-note{ font-size:12.5px; color:var(--slate); margin-top:10px; }
.detail-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.testimonial-card{ background:var(--paper); padding:30px; border-top:3px solid var(--brass); }
.testimonial-card:nth-child(3n+1){ border-top-color:var(--c-teal); }
.testimonial-card:nth-child(3n+2){ border-top-color:var(--c-coral); }
.testimonial-card:nth-child(3n+3){ border-top-color:var(--c-violet); }
.stars{ color:var(--brass); letter-spacing:2px; font-size:15px; margin-bottom:14px; }
.testimonial-card p.quote{ font-size:15.5px; font-style:italic; color:var(--navy); margin-bottom:16px; }
.testimonial-card .attr{ font-family:var(--font-mono); font-size:12px; color:var(--slate); }
@media (max-width:800px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* =========================================================
   CLIENTS strip
   ========================================================= */
.clients-strip{ display:flex; flex-wrap:wrap; gap:0; border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.clients-strip span{
  flex:1; min-width:150px; text-align:center; padding:22px 12px; font-family:var(--font-mono);
  font-size:13px; letter-spacing:0.04em; border-right:1px solid var(--line-dark); color:#C7C4B4;
  border-bottom:2px solid transparent; transition:color .15s, border-color .15s;
}
.clients-strip span:last-child{ border-right:0; }
.clients-strip span:nth-child(1):hover{ color:#fff; border-bottom-color:var(--c-teal); }
.clients-strip span:nth-child(2):hover{ color:#fff; border-bottom-color:var(--c-amber); }
.clients-strip span:nth-child(3):hover{ color:#fff; border-bottom-color:var(--c-coral); }
.clients-strip span:nth-child(4):hover{ color:#fff; border-bottom-color:var(--c-violet); }
.clients-strip span:nth-child(5):hover{ color:#fff; border-bottom-color:var(--c-pink); }
.clients-strip span:nth-child(6):hover{ color:#fff; border-bottom-color:var(--c-green); }

/* =========================================================
   CARDS: generic (demo centre / downloads / support)
   ========================================================= */
.card-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.card-grid.cols-3{ grid-template-columns:repeat(3,1fr); }
.card-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
.action-card{ background:var(--paper); padding:28px; display:flex; flex-direction:column; gap:14px; }
.action-card .ic{
  width:38px; height:38px; border-radius:4px; background:var(--ink); color:var(--brass);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:13px;
}
.action-card h3{ font-size:16.5px; }
.action-card p{ font-size:14px; color:var(--slate); flex-grow:1; }
.action-card:nth-child(8n+1) .ic{ background:var(--c-teal); color:#fff; }
.action-card:nth-child(8n+2) .ic{ background:var(--c-coral); color:#fff; }
.action-card:nth-child(8n+3) .ic{ background:var(--c-blue); color:#fff; }
.action-card:nth-child(8n+4) .ic{ background:var(--c-violet); color:#fff; }
.action-card:nth-child(8n+5) .ic{ background:var(--c-green); color:#fff; }
.action-card:nth-child(8n+6) .ic{ background:var(--c-pink); color:#fff; }
.action-card:nth-child(8n+7) .ic{ background:var(--c-amber); color:var(--navy); }
.action-card:nth-child(8n+8) .ic{ background:var(--ink); color:var(--brass); }
@media (max-width:900px){ .card-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .card-grid{ grid-template-columns:1fr; } }

/* Video placeholders */
.video-frame{
  aspect-ratio:16/9; background:var(--ink); border-radius:6px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center; color:var(--paper); border:1px solid var(--line-dark);
}
.video-frame .play-btn{
  width:56px; height:56px; border-radius:50%; background:var(--brass); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.video-frame .vf-label{ position:absolute; bottom:14px; left:16px; font-family:var(--font-mono); font-size:11.5px; color:#C7C4B4; }

/* =========================================================
   SUPPORT PLANS
   ========================================================= */
.plan-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.plan-card{ background:var(--paper); border:1px solid var(--line); border-top:4px solid #B08D57; border-radius:6px; padding:30px; display:flex; flex-direction:column; }
.plan-card.featured{ border-color:var(--brass); border-top-color:#9FA6AC; box-shadow:0 10px 30px rgba(199,154,62,0.18); position:relative; }
.plan-card.featured::before{
  content:'MOST CHOSEN'; position:absolute; top:-12px; left:24px; background:var(--brass); color:var(--navy);
  font-family:var(--font-mono); font-size:10.5px; padding:4px 10px; border-radius:3px; font-weight:600;
}
.plan-card:nth-child(3){ border-top-color:var(--brass-dark); }
.plan-card:nth-child(1) .plan-name{ color:#B08D57; }
.plan-card:nth-child(2) .plan-name{ color:#6B7680; }
.plan-card:nth-child(3) .plan-name{ color:var(--brass-dark); }
.plan-card:nth-child(1) ul li::before{ color:#B08D57; }
.plan-card:nth-child(2) ul li::before{ color:var(--teal); }
.plan-card:nth-child(3) ul li::before{ color:var(--brass-dark); }
.plan-name{ font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--teal); }
.plan-price{ font-family:var(--font-mono); font-size:34px; font-weight:600; margin:10px 0 4px; }
.plan-price span{ font-size:14px; color:var(--slate); font-weight:500; }
.plan-card ul{ margin:20px 0 24px; display:flex; flex-direction:column; gap:9px; }
.plan-card ul li{ font-size:14px; padding-left:20px; position:relative; }
.plan-card ul li::before{ content:'✓'; position:absolute; left:0; color:var(--teal); }
@media (max-width:860px){ .plan-grid{ grid-template-columns:1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-list{ display:flex; flex-direction:column; gap:22px; margin-top:26px; }
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-item .ic{
  width:40px; height:40px; border-radius:4px; background:var(--ink-soft); color:var(--brass);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-family:var(--font-mono); font-size:13px;
}
.contact-info-item:nth-child(1) .ic{ background:var(--c-teal); color:#fff; }
.contact-info-item:nth-child(2) .ic{ background:#25D366; color:#fff; }
.contact-info-item:nth-child(3) .ic{ background:var(--c-coral); color:#fff; }
.contact-info-item:nth-child(4) .ic{ background:var(--c-violet); color:#fff; }
.contact-info-item h4{ font-size:14.5px; margin-bottom:3px; }
.contact-info-item p, .contact-info-item a{ font-size:14.5px; color:var(--slate); }
.contact-info-item a:hover{ color:var(--teal); }

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:13px; font-weight:600; margin-bottom:6px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:3px; font-family:inherit;
  font-size:14.5px; background:#fff; color:var(--navy);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--teal); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ font-size:12.5px; color:var(--slate); margin-top:10px; }
.alert{ padding:14px 16px; border-radius:4px; font-size:14px; margin-bottom:20px; }
.alert-success{ background:#E4F1E8; color:#1F6B3A; border:1px solid #BFE0CA; }
.alert-error{ background:#FBEAE5; color:var(--red-flag); border:1px solid #F0C7BA; }

.map-embed{ border-radius:6px; overflow:hidden; border:1px solid var(--line); margin-top:30px; }
.map-embed iframe{ width:100%; height:280px; border:0; display:block; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band{
  background:var(--navy); color:#fff; padding:64px 0; text-align:center;
  background-image:
    radial-gradient(680px 300px at 50% -30%, rgba(240,123,27,0.22) 0%, rgba(240,123,27,0) 70%),
    radial-gradient(520px 340px at 100% 120%, rgba(31,140,130,0.28) 0%, rgba(31,140,130,0) 70%),
    linear-gradient(180deg, var(--navy) 0%, #0E1A38 100%);
}
.cta-band h2{ font-size:clamp(24px,3vw,34px); margin-bottom:14px; color:#fff; }
.cta-band p{ color:#B9C0D6; max-width:56ch; margin:0 auto 30px; }
.cta-band .hero-actions{ justify-content:center; }
.cta-band .btn-outline{ border-color:rgba(255,255,255,0.35); color:#fff; }
.cta-band .btn-outline:hover{ border-color:#fff; background:rgba(255,255,255,0.08); }

/* =========================================================
   ADMIN PANEL PREVIEW STRIP (index)
   ========================================================= */
.admin-list{ display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.admin-list span{
  font-family:var(--font-mono); font-size:12.5px; text-align:center; padding:14px 8px;
  background:var(--paper); border:1px solid var(--line); border-radius:3px; color:var(--slate);
}
@media (max-width:800px){ .admin-list{ grid-template-columns:repeat(2,1fr); } }

/* =========================================================
   TECH STRIP
   ========================================================= */
.tech-strip{ display:flex; flex-wrap:wrap; gap:10px; }
.tech-strip span{
  font-family:var(--font-mono); font-size:12.5px; padding:8px 14px; border:1px solid var(--line-dark);
  border-radius:20px; color:#D9D6C6;
}

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero{
  background:var(--paper-dim); color:var(--navy); padding:56px 0 46px;
  background-image:
    radial-gradient(520px 340px at 92% 0%, rgba(240,123,27,0.10) 0%, rgba(240,123,27,0) 70%),
    radial-gradient(560px 380px at 4% 120%, rgba(31,140,130,0.10) 0%, rgba(31,140,130,0) 70%);
  border-bottom:1px solid var(--line);
}
.page-hero h1{ font-size:clamp(28px,3.6vw,42px); margin-top:14px; color:var(--navy); }
.page-hero p{ color:var(--slate); max-width:60ch; margin-top:14px; font-size:16px; }
.page-hero .hero-eyebrow{ color:var(--orange); }
.page-hero .hero-eyebrow::before{ background:var(--orange); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--navy); color:#fff; padding:64px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.1fr; gap:40px; padding-bottom:48px; }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .footer-tagline{ font-family:var(--font-display); font-size:16px; margin:16px 0 10px; color:var(--brass); }
.footer-note{ font-size:13.5px; color:#B9B6A5; max-width:38ch; }
.footer-col h4{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.07em; text-transform:uppercase; color:var(--brass); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color:#D9D6C6; }
.footer-col a:hover{ color:var(--paper); }
.footer-contact li{ font-size:14px; color:#D9D6C6; }
.footer-bottom{
  border-top:1px solid var(--line-dark); padding:20px 0; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:10px; font-size:12.5px; color:#9C9A8A;
}
.ref-code{ font-family:var(--font-mono); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float{
  position:fixed; bottom:22px; right:22px; width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.25); z-index:150; transition:transform .15s;
}
.whatsapp-float:hover{ transform:scale(1.08); }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center{ text-align:center; margin-left:auto; margin-right:auto; }
.mt-40{ margin-top:40px; }
