/* =========================================================================
   DanskIT Solutions — Design System
   Dark corporate-tech theme. Navy + red accent, glass panels, subtle glow.
   ========================================================================= */

:root{
  /* Core palette */
  --bg-0: #05070f;           /* deepest background */
  --bg-1: #070c1a;           /* page background */
  --bg-2: #0c1430;           /* section alt background */
  --bg-elevated: #101a3a;    /* card background */
  --bg-elevated-hover: #14204a;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);

  --navy-900: #060a16;
  --navy-800: #0a1230;
  --navy-700: #101c44;
  --navy-600: #16275c;
  --navy-500: #1d3378;

  --red-600: #c81e2c;
  --red-500: #e0222f;
  --red-400: #f13b47;
  --red-glow: rgba(224,34,47,.45);

  --gold: #e8b74b;
  --teal: #35c9c1;

  --text-0: #f6f8fc;
  --text-1: #c9d2e8;
  --text-2: #8d97b8;
  --text-3: #626d8d;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1240px;
  --container-wide: 1400px;

  --ease: cubic-bezier(.22,.9,.3,1);
  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,.6);
  --shadow-red: 0 20px 50px -18px rgba(224,34,47,.35);

  color-scheme: dark;
}

/* -------------------------------------------------------------- reset */
*, *::before, *::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
[id]{ scroll-margin-top: 110px; }
html, body{ height:100%; }
body{
  background: var(--bg-1);
  color: var(--text-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img, svg{ display:block; max-width:100%; }
svg{ width:20px; height:20px; flex-shrink:0; }
a{ color: inherit; text-decoration:none; }
button{ font: inherit; color: inherit; background:none; border:none; cursor:pointer; }
ul{ list-style:none; }
input, textarea, select{ font: inherit; color: inherit; }
::selection{ background: var(--red-500); color:#fff; }

h1,h2,h3,h4{
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--text-0);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* background: ambient grid + glow */
body::before{
  content:'';
  position: fixed; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
  pointer-events:none;
  z-index:0;
}

/* -------------------------------------------------------------- layout */
.container{ max-width: var(--container); margin-inline:auto; padding-inline: 24px; position:relative; z-index:1; }
.container-wide{ max-width: var(--container-wide); margin-inline:auto; padding-inline: 24px; position:relative; z-index:1; }
main{ position:relative; z-index:1; display:block; }
section{ position:relative; padding-block: 120px; }
@media (max-width: 900px){ section{ padding-block: 84px; } }

.section-alt{ background: linear-gradient(180deg, transparent, rgba(255,255,255,.015) 10%, rgba(255,255,255,.015) 90%, transparent); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.glow-blob{
  position:absolute; border-radius:50%;
  filter: blur(90px);
  opacity:.35;
  pointer-events:none;
  z-index:0;
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift{ 0%{ transform: translate(0,0) scale(1);} 100%{ transform: translate(30px,-40px) scale(1.12);} }

/* -------------------------------------------------------------- type helpers */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Sora',sans-serif;
  font-size: 12.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color: var(--red-400);
  margin-bottom: 18px;
}
.eyebrow::before{ content:''; width:20px; height:2px; background: var(--red-500); border-radius:2px; }

.section-head{ max-width: 720px; margin-bottom: 56px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-title{ font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 18px; }
.section-sub{ color: var(--text-2); font-size: 17px; max-width: 620px; }
.section-head.center .section-sub{ margin-inline:auto; }

.text-gradient{
  background: linear-gradient(100deg, var(--text-0) 20%, var(--red-400) 55%, var(--gold) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* -------------------------------------------------------------- buttons */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family:'Sora',sans-serif;
  font-size: 14.5px; font-weight:600; letter-spacing:.01em;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  cursor:pointer;
}
.btn svg{ width:16px; height:16px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn:active{ transform: scale(.97); }

.btn-primary{
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  color:#fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover{ box-shadow: 0 22px 60px -14px rgba(224,34,47,.55); transform: translateY(-2px); }

.btn-ghost{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  color: var(--text-0);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }

.btn-block{ width:100%; }
.btn-sm{ padding: 10px 20px; font-size:13px; }

/* -------------------------------------------------------------- header */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding-block: 20px;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  padding-block: 12px;
  background: rgba(6,10,20,.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header .container-wide{ display:flex; align-items:center; justify-content:space-between; gap:20px; }

.logo{ display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-weight:700; font-size:19px; color:var(--text-0); z-index:2; }
.logo .mark{
  width:34px; height:34px; border-radius:9px;
  background: linear-gradient(135deg, var(--red-400), var(--navy-500));
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:15px; color:#fff;
  box-shadow: 0 8px 20px -6px rgba(224,34,47,.6);
}
.logo .accent{ color: var(--red-400); }
.logo small{ display:block; font-family:'Inter',sans-serif; font-weight:500; font-size:10px; letter-spacing:.14em; color:var(--text-3); text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav a{
  font-size: 14.5px; font-weight:500; color: var(--text-2);
  position:relative; padding-block:6px;
  transition: color .25s var(--ease);
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: linear-gradient(90deg, var(--red-500), var(--gold));
  transform: scaleX(0); transform-origin:left; transition: transform .3s var(--ease);
  border-radius:2px;
}
.main-nav a:hover, .main-nav a.active{ color: var(--text-0); }
.main-nav a:hover::after, .main-nav a.active::after{ transform: scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.nav-cta-mobile{ display:none; }

.lang-switch{
  display:flex; align-items:center; background: rgba(255,255,255,.05);
  border:1px solid var(--line-strong); border-radius:100px; padding:3px; gap:2px;
}
.lang-switch button{
  padding:7px 13px; border-radius:100px; font-size:12.5px; font-weight:700;
  letter-spacing:.03em; color: var(--text-3); transition: all .3s var(--ease);
}
.lang-switch button.active{ background: var(--red-500); color:#fff; box-shadow: 0 4px 14px -4px rgba(224,34,47,.7); }
.lang-switch button:not(.active):hover{ color: var(--text-0); }

.nav-toggle{ display:none; width:40px; height:40px; align-items:center; justify-content:center; border-radius:10px; background: rgba(255,255,255,.05); border:1px solid var(--line-strong); z-index:2; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{ content:''; display:block; width:18px; height:2px; background:#fff; border-radius:2px; transition: all .3s var(--ease); }
.nav-toggle::before{ transform: translateY(-6px); position:absolute; }
.nav-toggle::after{ transform: translateY(6px); position:absolute; }
.nav-toggle.open span{ opacity:0; }
.nav-toggle.open::before{ transform: rotate(45deg); }
.nav-toggle.open::after{ transform: rotate(-45deg); }

@media (max-width: 980px){
  .main-nav{
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--navy-800); border-left:1px solid var(--line);
    flex-direction:column; align-items:flex-start; gap:6px;
    padding: 100px 28px 40px; transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index:1;
  }
  .main-nav.open{ transform: translateX(0); box-shadow: -30px 0 60px rgba(0,0,0,.4); }
  .main-nav a{ width:100%; padding:12px 0; font-size:17px; border-bottom:1px solid var(--line); }
  .nav-toggle{ display:flex; position:relative; }
  .nav-cta-desktop{ display:none; }
  .nav-cta-mobile{ display:inline-flex; margin-top:18px; }
}

@media (max-width: 480px){
  .logo{ font-size:16px; gap:8px; }
  .logo small{ display:none; }
  .lang-switch button{ padding:6px 10px; }
}

/* -------------------------------------------------------------- hero */
.hero{ padding-top: 190px; padding-bottom: 120px; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items:center; }
@media (max-width: 980px){ .hero-grid{ grid-template-columns: 1fr; } }

.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 16px; border-radius:100px;
  background: rgba(224,34,47,.1); border:1px solid rgba(224,34,47,.35);
  font-size:13px; font-weight:600; color: var(--red-400); margin-bottom:26px;
}
.hero-badge .dot{ width:6px; height:6px; border-radius:50%; background: var(--red-400); box-shadow:0 0 10px var(--red-400); animation: pulse 1.8s infinite; }
@keyframes pulse{ 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1{ font-size: clamp(38px, 5.2vw, 66px); margin-bottom:24px; }
.hero p.lead{ font-size: 18px; color: var(--text-2); max-width:540px; margin-bottom:38px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:54px; }

.hero-stats{ display:flex; gap:36px; flex-wrap:wrap; }
.hero-stats .stat b{ display:block; font-family:'Sora',sans-serif; font-size:26px; color:var(--text-0); }
.hero-stats .stat span{ font-size:13px; color:var(--text-3); }

.hero-visual{ position:relative; }

/* -------------------------------------------------------------- cards */
.card{
  background: linear-gradient(180deg, var(--bg-elevated), rgba(16,26,58,.4));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(224,34,47,.4);
  box-shadow: var(--shadow-soft);
}
.card .icon{
  width:52px; height:52px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(224,34,47,.18), rgba(29,51,120,.35));
  border:1px solid var(--line-strong);
  margin-bottom:22px;
}
.card .icon svg{ width:26px; height:26px; stroke: var(--red-400); }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color: var(--text-2); font-size:14.5px; }

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

/* -------------------------------------------------------------- glass panel */
.glass{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

/* -------------------------------------------------------------- pill / badge / tag */
.tag{
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 13px; border-radius:100px;
  background: rgba(255,255,255,.05); border:1px solid var(--line-strong);
  font-size:12.5px; font-weight:600; color: var(--text-1);
}
.tag svg{ width:14px; height:14px; stroke: var(--red-400); }

/* -------------------------------------------------------------- stats strip */
.stats-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--line); border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; }
.stats-strip .stat-item{ background: var(--bg-2); padding: 38px 26px; text-align:center; }
.stats-strip .stat-item b{ font-family:'Sora',sans-serif; font-size: clamp(28px,3.4vw,40px); color:var(--text-0); display:block; }
.stats-strip .stat-item span{ font-size:13.5px; color: var(--text-3); display:block; margin-top:8px; }
@media (max-width: 780px){ .stats-strip{ grid-template-columns: repeat(2,1fr);} }

/* -------------------------------------------------------------- process / timeline */
.process-list{ display:flex; flex-direction:column; }
.process-item{ display:grid; grid-template-columns: 60px 1fr; gap:24px; padding-block:28px; border-top:1px solid var(--line); }
.process-item:last-child{ border-bottom:1px solid var(--line); }
.process-item .num{ font-family:'Sora',sans-serif; font-size:22px; font-weight:700; color: var(--red-400); }
.process-item h4{ font-size:18px; margin-bottom:6px; color:var(--text-0); }
.process-item p{ color: var(--text-2); font-size:14.5px; max-width:560px; }

/* -------------------------------------------------------------- table (challenges) */
.impact-table{ display:flex; flex-direction:column; border-top:1px solid var(--line); }
.impact-row{ display:grid; grid-template-columns: 260px 1fr; gap:30px; padding: 26px 0; border-bottom:1px solid var(--line); }
.impact-row .impact-head{ display:flex; align-items:flex-start; gap:14px; }
.impact-row .impact-head .icon{ width:40px; height:40px; border-radius:10px; background: rgba(224,34,47,.12); border:1px solid rgba(224,34,47,.3); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.impact-row .impact-head .icon svg{ width:20px; height:20px; stroke: var(--red-400); }
.impact-row h4{ font-size:15.5px; color:var(--text-0); }
.impact-row p{ font-size:14.5px; color:var(--text-2); }
.impact-row strong{ color: var(--red-400); }
@media (max-width: 780px){ .impact-row{ grid-template-columns:1fr; gap:12px; } }

/* -------------------------------------------------------------- capability wheel (plantops) */
.capability-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width: 980px){ .capability-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .capability-grid{ grid-template-columns: 1fr; } }
.cap-card{
  background: var(--bg-elevated); border:1px solid var(--line); border-radius: var(--radius-md);
  padding:26px; transition: all .35s var(--ease); position:relative; overflow:hidden;
}
.cap-card .cap-index{ position:absolute; top:16px; right:18px; font-family:'Sora',sans-serif; font-weight:700; font-size:26px; color: rgba(255,255,255,.06); }
.cap-card:hover{ border-color: rgba(224,34,47,.4); transform: translateY(-4px); }
.cap-card .icon{ width:44px; height:44px; border-radius:11px; background: rgba(224,34,47,.14); border:1px solid rgba(224,34,47,.3); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.cap-card .icon svg{ width:22px; height:22px; stroke: var(--red-400); }
.cap-card h4{ font-size:15.5px; color:var(--text-0); margin-bottom:6px; }
.cap-card p{ font-size:13.5px; color: var(--text-2); }

/* -------------------------------------------------------------- case study */
.case-card{
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-2));
  border:1px solid var(--line); border-radius: var(--radius-lg); padding:38px;
  display:grid; grid-template-columns: 1fr 1fr; gap:36px;
}
@media (max-width: 780px){ .case-card{ grid-template-columns:1fr; } }
.case-card .industry-tag{ margin-bottom:16px; }
.case-card h3{ font-size:24px; margin-bottom:6px; }
.case-card .case-sub{ color: var(--text-2); font-size:14.5px; margin-bottom:24px; font-style:italic; }
.case-col h5{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color: var(--red-400); margin-bottom:10px; }
.case-col p{ font-size:14.5px; color: var(--text-2); margin-bottom:20px; }
.case-col ul li{ display:flex; gap:10px; font-size:14.5px; color: var(--text-1); margin-bottom:10px; align-items:flex-start; }
.case-col ul li svg{ width:16px; height:16px; stroke: var(--teal); flex-shrink:0; margin-top:3px; }
.case-result-big{ display:flex; align-items:baseline; gap:10px; margin-top:6px; }
.case-result-big b{ font-family:'Sora',sans-serif; font-size:52px; color: var(--red-400); line-height:1; }
.case-result-big span{ color: var(--text-2); font-size:14px; max-width:180px; }

/* -------------------------------------------------------------- dashboard mock (plantops hero) */
.dash-mock{
  border-radius: var(--radius-lg);
  border:1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(16,26,58,.9), rgba(6,10,22,.9));
  box-shadow: var(--shadow-soft);
  padding:22px;
}
.dash-mock .dash-topbar{ display:flex; gap:6px; margin-bottom:18px; }
.dash-mock .dash-topbar span{ width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.15); }
.dash-mock .dash-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.dash-mock .dash-tile{ background: rgba(255,255,255,.03); border:1px solid var(--line); border-radius:12px; padding:16px; }
.dash-mock .dash-tile b{ display:block; font-family:'Sora',sans-serif; font-size:24px; color:var(--text-0); }
.dash-mock .dash-tile span{ font-size:11.5px; color:var(--text-3); text-transform:uppercase; letter-spacing:.06em; }

/* -------------------------------------------------------------- CTA band */
.cta-band{
  border-radius: var(--radius-xl);
  padding: 70px;
  background: radial-gradient(120% 160% at 15% 0%, rgba(224,34,47,.22), transparent 55%), linear-gradient(140deg, var(--navy-700), var(--bg-0));
  border:1px solid var(--line-strong);
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-band h2{ font-size: clamp(26px,3.6vw,40px); margin-bottom:16px; }
.cta-band p{ color: var(--text-2); max-width:520px; margin-inline:auto; margin-bottom:34px; }
.cta-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
@media (max-width: 700px){ .cta-band{ padding: 44px 26px; } }

/* -------------------------------------------------------------- footer */
.site-footer{ border-top:1px solid var(--line); padding-block: 70px 100px; background: var(--bg-0); }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:60px; }
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand p{ color: var(--text-2); font-size:14.5px; margin: 18px 0 22px; max-width:280px; }
.footer-col h5{ font-family:'Sora',sans-serif; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--text-0); margin-bottom:18px; }
.footer-col a, .footer-col p{ display:block; color: var(--text-2); font-size:14.5px; margin-bottom:12px; transition: color .25s var(--ease); }
.footer-col a:hover{ color: var(--red-400); }
.footer-social{ display:flex; gap:10px; margin-top:8px; }
.footer-social a{ width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.05); border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; }
.footer-social a svg{ width:16px; height:16px; stroke: var(--text-1); }
.footer-social a:hover{ background: var(--red-500); border-color: var(--red-500); }
.footer-social a:hover svg{ stroke:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid var(--line); flex-wrap:wrap; gap:16px; }
.footer-bottom p{ color: var(--text-3); font-size:13px; }
.footer-legal{ display:flex; gap:22px; }
.footer-legal a{ color: var(--text-3); font-size:13px; }
.footer-legal a:hover{ color: var(--text-1); }

/* -------------------------------------------------------------- forms */
.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-size:13.5px; font-weight:600; color: var(--text-1); margin-bottom:8px; }
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:14px 16px; border-radius:10px;
  background: rgba(255,255,255,.04); border:1px solid var(--line-strong);
  color: var(--text-0); font-size:14.5px; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ outline:none; border-color: var(--red-500); background: rgba(255,255,255,.06); }
.form-field textarea{ resize: vertical; min-height:120px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:620px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ display:flex; gap:10px; font-size:13px; color: var(--text-3); align-items:flex-start; margin-top:6px; }
.form-note svg{ width:15px; height:15px; stroke: var(--text-3); flex-shrink:0; margin-top:2px; }

/* -------------------------------------------------------------- misc */
.contact-info-row{ display:flex; gap:16px; align-items:flex-start; padding: 20px 0; border-top:1px solid var(--line); }
.contact-info-row:last-child{ border-bottom:1px solid var(--line); }
.contact-info-row .icon{ width:42px; height:42px; border-radius:11px; background: rgba(224,34,47,.12); border:1px solid rgba(224,34,47,.3); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-row .icon svg{ width:20px; height:20px; stroke: var(--red-400); }
.contact-info-row h5{ font-size:14.5px; color: var(--text-0); margin-bottom:4px; }
.contact-info-row p{ font-size:14px; color: var(--text-2); }

.value-list{ display:flex; flex-direction:column; gap:0; }
.value-item{ display:flex; gap:20px; padding: 26px 0; border-top:1px solid var(--line); }
.value-item:last-child{ border-bottom:1px solid var(--line); }
.value-item .icon{ width:46px; height:46px; border-radius:12px; background: rgba(224,34,47,.12); border:1px solid rgba(224,34,47,.3); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.value-item .icon svg{ width:22px; height:22px; stroke: var(--red-400); }
.value-item h4{ font-size:17px; color:var(--text-0); margin-bottom:6px; }
.value-item p{ font-size:14.5px; color: var(--text-2); max-width:560px; }

.badge-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }

.breadcrumb-hero{ padding-top:150px; padding-bottom:70px; }
.breadcrumb-hero .eyebrow{ margin-bottom:20px; }
.breadcrumb-hero h1{ font-size: clamp(32px,4.4vw,54px); max-width:820px; }
.breadcrumb-hero p.lead{ font-size:17px; color: var(--text-2); max-width:600px; margin-top:20px; }

/* two-col feature */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap:40px; } }
.split.reverse .split-visual{ order:2; }
@media (max-width: 900px){ .split.reverse .split-visual{ order:0; } }

/* checklist */
.checklist{ margin-top:24px; }
.checklist li{ display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; font-size:15px; color: var(--text-1); }
.checklist li svg{ width:18px; height:18px; stroke: var(--teal); flex-shrink:0; margin-top:2px; }

/* reveal animation */
[data-reveal]{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in{ opacity:1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }

/* back to top */
.to-top{
  position: fixed; bottom:26px; right:26px; z-index:90;
  width:46px; height:46px; border-radius:50%;
  background: var(--red-500); box-shadow: 0 10px 30px -8px rgba(224,34,47,.6);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform: translateY(10px);
  transition: all .35s var(--ease);
}
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; stroke:#fff; }

/* loader */
.page-loader{ position:fixed; inset:0; background:var(--bg-1); z-index:999; display:flex; align-items:center; justify-content:center; transition: opacity .5s ease, visibility .5s ease; }
.page-loader.hidden{ opacity:0; visibility:hidden; }
.page-loader .spin{ width:34px; height:34px; border-radius:50%; border:3px solid var(--line-strong); border-top-color: var(--red-500); animation: spin .8s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }

/* -------------------------------------------------------------- FAQ accordion */
.faq-item{ border-top:1px solid var(--line); padding: 22px 0; }
.faq-item:last-child{ border-bottom:1px solid var(--line); }
.faq-item summary{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  cursor:pointer; list-style:none; font-family:'Sora',sans-serif; font-size:16.5px; color:var(--text-0); font-weight:600;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .chev{ width:34px; height:34px; border-radius:9px; background: rgba(255,255,255,.05); border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition: transform .3s var(--ease), background .3s var(--ease); }
.faq-item summary .chev svg{ width:16px; height:16px; stroke: var(--text-1); }
.faq-item[open] summary .chev{ transform: rotate(180deg); background: var(--red-500); }
.faq-item[open] summary .chev svg{ stroke:#fff; }
.faq-item p{ color: var(--text-2); font-size:14.5px; margin-top:14px; max-width:640px; }

/* -------------------------------------------------------------- map card */
.map-card{
  position:relative; border-radius: var(--radius-lg); border:1px solid var(--line-strong);
  padding: 46px; min-height: 260px; display:flex; flex-direction:column; justify-content:flex-end;
  background:
    radial-gradient(circle at 30% 30%, rgba(224,34,47,.16), transparent 55%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    var(--bg-elevated);
  background-size: auto, 34px 34px, 34px 34px, auto;
  overflow:hidden;
}
.map-card .pin{
  position:absolute; top:44px; left:50%; transform: translateX(-50%);
  width:56px; height:56px; border-radius:50%;
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 0 10px rgba(224,34,47,.12), 0 14px 30px -8px rgba(224,34,47,.6);
}
.map-card .pin svg{ width:26px; height:26px; stroke:#fff; }
.map-card .pin-ring{ position:absolute; top:44px; left:50%; transform: translateX(-50%); width:56px; height:56px; border-radius:50%; border:2px solid rgba(224,34,47,.5); animation: ring 2.4s infinite; }
@keyframes ring{ 0%{ transform: translateX(-50%) scale(1); opacity:.7;} 100%{ transform: translateX(-50%) scale(2.6); opacity:0;} }

/* utility */
.mt-0{margin-top:0}
.center-text{ text-align:center; }
.mx-auto{ margin-inline:auto; }
.pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
