/* NET Horizon Consulting - simple professional theme */
:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.10);
  --text: #EAF0FF;
  --muted: rgba(234,240,255,0.72);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 12px 30px rgba(0,0,0,0.45);
  --radius: 18px;
  --max: 1100px;

  /* List/icon + note colours (standardised) */
  --accent: rgba(255,153,51,0.95);        /* bullets + step numbers */
  --success: rgba(96, 226, 170, 0.95);    /* ✓ inclusions */
  --danger: rgba(255, 96, 110, 0.95);     /* ✕ exclusions */

  /* notes/disclaimers - neutral grey (matches your React site "muted") */
  --note: rgba(234,240,255,0.60);

  /* Steps (circled numbers) */
  --step-bg: rgba(255,153,51,0.18);       /* accent-tinted background */
  --step-fg: var(--accent);               /* SAME colour as dotted bullets */
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 700px at 70% 0%, rgba(74, 94, 255, 0.20), transparent 60%),
              radial-gradient(900px 600px at 20% 10%, rgba(255, 153, 51, 0.16), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,240,255,0.35);
}
a:hover{ border-bottom-color: rgba(234,240,255,0.75); }

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

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,0.65);
  border-bottom: 1px solid var(--border);
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.brand-badge{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74, 94, 255, 0.95), rgba(255,153,51,0.95));
  box-shadow: 0 10px 18px rgba(0,0,0,0.35);
}
.brand-name{
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 0.98rem;
}
.brand-sub{
  display:block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: -2px;
}

.nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.nav a{
  border-bottom: none;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(234,240,255,0.85);
  background: transparent;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}
.nav a.active{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
}

.hero{
  padding: 44px 0 28px;
}
.hero-card{
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-banner{
  padding: 18px;
  background: radial-gradient(900px 380px at 50% 40%, rgba(255,153,51,0.14), transparent 60%),
              radial-gradient(900px 380px at 70% 20%, rgba(74,94,255,0.20), transparent 58%),
              rgba(0,0,0,0.45);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.hero-logo{
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.55));
}

.hero-body{
  padding: 22px 22px 24px;
}
.kicker{
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 10px;
}
.hero-title{
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0 0 10px;
  line-height: 1.2;
}
.hero-text{
  margin: 0 0 18px;
  color: rgba(234,240,255,0.86);
  max-width: 78ch;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
}
.btn:hover{
  background: rgba(255,255,255,0.10);
}
.btn.primary{
  border-color: rgba(255,153,51,0.55);
  background: linear-gradient(135deg, rgba(255,153,51,0.22), rgba(74,94,255,0.16));
}

main{
  padding: 26px 0 40px;
}

.grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.card{
  grid-column: span 12;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  padding: 18px;
}
.card h2, .card h3{
  margin: 0 0 8px;
  line-height: 1.25;
}
.card p{ margin: 0 0 10px; color: rgba(234,240,255,0.85); }

/* Keep standard UL/OL indent consistent */
.card ul,
.card ol{
  margin: 10px 0 0 18px;
  color: rgba(234,240,255,0.85);
}

.split-6{ grid-column: span 12; }
.split-4{ grid-column: span 12; }
@media (min-width: 860px){
  .split-6{ grid-column: span 6; }
  .split-4{ grid-column: span 4; }
}

.small{
  font-size: 0.95rem;
  color: var(--muted);
}

.footer{
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  padding: 26px 0;
  color: rgba(234,240,255,0.72);
}
.footer a{ color: rgba(234,240,255,0.80); border-bottom: none; }
.footer a:hover{ color: var(--text); }
.footer-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Premium polish */
.card{
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.hero-card{
  border-color: rgba(255,255,255,0.18);
}

h1, h2, h3{
  letter-spacing: 0.15px;
}

.nav a{
  transition: background 120ms ease, border-color 120ms ease;
}
.btn{
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:hover{
  transform: translateY(-1px);
}

/* Centre-aligned hero text */
.hero-center{
  text-align: center;
}
.hero-center .hero-text{
  margin-left: auto;
  margin-right: auto;
}
.hero-center .cta-row{
  justify-content: center;
}

/* =========================
   Lists + Notes (Standardised)
   ========================= */

/* Native list markers (real <ul><li> bullets) — consistent accent colour */
.card ul li::marker,
.card ol li::marker{
  color: var(--accent);
}

/* Notes / disclaimers — neutral grey, slightly smaller */
.note{
  color: var(--note);
  font-size: 0.90rem;
  line-height: 1.55;
}
.card .note{
  color: var(--note);
}

/* Note links use neutral tone */
.note a{
  color: var(--note);
  border-bottom-color: rgba(234,240,255,0.30);
}
.note a:hover{
  border-bottom-color: rgba(234,240,255,0.55);
}

/* Standardised bullets list (optional helper) */
.list-bullets{
  margin: 10px 0 0 18px;
  padding: 0;
  color: rgba(234,240,255,0.85);
}
.list-bullets li::marker{
  color: var(--accent);
}

/* Icon lists (ticks/crosses) */
.list-inclusions,
.list-exclusions{
  list-style: none;
  margin: 10px 0 0 18px;
  padding: 0;
  color: rgba(234,240,255,0.85);
}

.list-inclusions li,
.list-exclusions li{
  position: relative;
  padding-left: 1.35em;
  margin: 8px 0 0 0;
}

/* ✓ inclusions */
.list-inclusions li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

/* ✕ exclusions */
.list-exclusions li::before{
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--danger);
  font-weight: 800;
}

/* =========================
   Step Lists (Circled Numbers)
   ========================= */
.steps{
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
}
.steps li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  color: rgba(234,240,255,0.85);
}
.steps li:first-child{
  margin-top: 0;
}
.step-num{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--step-bg);
  color: var(--step-fg);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* =========================
   Option 1: Mobile nav (hamburger)
   Requires small HTML addition:
   <input class="nav-toggle" ...>
   <label class="hamburger" for="...">...</label>
   ========================= */
.nav-toggle{
  display: none;
}

.hamburger{
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger:focus{
  outline: 2px solid rgba(255,153,51,0.45);
  outline-offset: 2px;
}

.hamburger-lines{
  width: 18px;
  height: 12px;
  position: relative;
}
.hamburger-lines span{
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(234,240,255,0.90);
  border-radius: 2px;
}
.hamburger-lines span:nth-child(1){ top: 0; }
.hamburger-lines span:nth-child(2){ top: 5px; }
.hamburger-lines span:nth-child(3){ top: 10px; }

@media (max-width: 720px){
  .topbar-inner{
    align-items: center;
  }

  .hamburger{
    display: inline-flex;
  }

  /* Hide nav by default on mobile */
  .nav{
    display: none;
    width: 100%;
    margin-top: 10px;
    justify-content: flex-start;
    gap: 8px;
  }

  /* Show nav when toggled */
  .nav-toggle:checked ~ .nav{
    display: flex;
    flex-direction: column;
  }

  .nav a{
    width: 100%;
  }
}

/* =========================
   Option 3: Small mobile polish (premium feel)
   ========================= */
@media (max-width: 520px){
  .hero{
    padding: 30px 0 18px;
  }

  .hero-body{
    padding: 18px;
  }

  .card{
    padding: 16px;
  }

  .cta-row{
    gap: 10px;
  }

  .cta-row .btn{
    width: 100%;
    text-align: center;
  }

  .note{
    font-size: 0.88rem;
    line-height: 1.55;
  }
}
