/* ═══════════════════════════════════════════════════
   West Computers — Master Stylesheet
   All pages reference: css/west-computers.css
   ═══════════════════════════════════════════════════ */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #0A0F1E;
      --navy2:   #111827;
      --navy3:   #1C2333;
      --panel:   #161D2E;
      --accent:  #00C2FF;
      --accent2: #0EA5E9;
      --green:   #22C55E;
      --red:     #EF4444;
      --amber:   #F59E0B;
      --spectra: #7CC9C9;
      --text:    #E2E8F0;
      --muted:   #94A3B8;
      --border:  rgba(255,255,255,0.08);
      --mono:    'Space Mono', monospace;
      --sans:    'DM Sans', sans-serif;
      --radius:  10px;
      --max:     1180px;
      --gutter:  clamp(1rem, 4vw, 2.5rem);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--navy);
      color: var(--text);
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

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

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(10,15,30,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
      max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
    }
    .nav-logo {
      font-family: var(--mono);
      font-size: 15px; font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
      display: inline-flex; align-items: center;
      flex-wrap: nowrap; white-space: nowrap;
    }
    .nav-logo span { color: var(--accent); }
    .nav-logo .nav-shield {
      width: 38px; height: 38px;
      color: var(--accent);
      flex-shrink: 0;
      margin-right: 10px;
      vertical-align: middle;
      display: inline-block;
    }
    .nav-links {
      display: flex; gap: 28px; list-style: none;
      font-size: 14px; color: var(--muted);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links .dropdown { position: relative; }
    .nav-links .dropdown-menu {
      display: none; position: absolute; top: 100%; left: 0;
      background: var(--navy2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 8px 0; min-width: 210px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .nav-links .dropdown:hover .dropdown-menu { display: block; }
    .nav-links .dropdown-menu a {
      display: block; padding: 8px 18px; font-size: 13px; color: var(--muted);
    }
    .nav-links .dropdown-menu a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
    /* ── Nested submenu ── */
    .dropdown-menu .has-submenu { position: relative; }
    .dropdown-menu .has-submenu > a::after { content: ' ▸'; opacity: .5; }
    .dropdown-menu .submenu {
      display: none; position: absolute; left: 100%; top: -8px;
      background: var(--navy2); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 8px 0; min-width: 200px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .dropdown-menu .has-submenu:hover > .submenu { display: block; }
    .dropdown-menu .submenu a {
      display: block; padding: 8px 18px; font-size: 13px; color: var(--muted);
    }
    .dropdown-menu .submenu a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
    .nav-cta {
      background: var(--accent); color: var(--navy);
      padding: 8px 20px; border-radius: 6px;
      font-size: 14px; font-weight: 600;
      transition: opacity .15s;
    }
    .nav-cta:hover { opacity: .85; }

    /* ── HAMBURGER BUTTON ── */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      width: 40px; height: 40px;
      background: none; border: none; cursor: pointer; padding: 0;
      gap: 5px; z-index: 201;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--text); border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }
    .nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.active span:nth-child(2) { opacity: 0; }
    .nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE MENU OVERLAY ── */
    #mobileMenu {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0; bottom: 0;
      background: rgba(10,15,30,0.98);
      backdrop-filter: blur(12px);
      z-index: 9999;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 24px var(--gutter) 40px;
      flex-direction: column;
      gap: 0;
    }
    #mobileMenu.open { display: flex; }
    #mobileMenu > a {
      display: block; padding: 14px 0;
      font-size: 16px; color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    #mobileMenu > a:hover,
    #mobileMenu > a:active { color: var(--text); }
    #mobileMenu .mobile-section-label {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--accent);
      padding: 20px 0 6px; border-bottom: none;
      cursor: pointer; user-select: none;
    }
    #mobileMenu .mobile-section-label::after {
      content: '▸'; font-size: 13px; transition: transform .2s ease;
    }
    #mobileMenu .mobile-section-label.open::after {
      transform: rotate(90deg);
    }
    #mobileMenu .mobile-sub {
      display: none;
    }
    #mobileMenu .mobile-sub.open {
      display: block;
    }
    #mobileMenu .mobile-sub a {
      display: block; padding: 10px 0 10px 16px;
      font-size: 14px; color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    #mobileMenu .mobile-sub a:hover { color: var(--text); }
    #mobileMenu .mobile-cta {
      display: block;
      margin-top: 24px;
      background: var(--accent); color: var(--navy);
      padding: 14px 28px; border-radius: 8px;
      font-size: 15px; font-weight: 600;
      text-align: center; border-bottom: none;
    }
    #mobileMenu .mobile-cta:hover { opacity: .85; color: var(--navy); }
    .nav-badge {
      font-size: 11px; font-weight: 600;
      background: linear-gradient(135deg, #F59E0B, #EF4444);
      color: #fff; padding: 2px 8px; border-radius: 4px;
      margin-left: 8px;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,255,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(14,165,233,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--mono); font-size: 12px; color: var(--accent);
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: ''; display: block;
      width: 24px; height: 1px; background: var(--accent);
    }
    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 600; line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: normal; color: var(--accent);
    }
    .hero-sub {
      font-size: 17px; color: var(--muted);
      max-width: 520px; margin-bottom: 36px; line-height: 1.65;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--accent); color: var(--navy);
      padding: 13px 28px; border-radius: 8px;
      font-weight: 600; font-size: 15px;
      transition: opacity .15s, transform .15s;
      display: inline-block;
    }
    .btn-primary:hover { opacity: .88; transform: translateY(-1px); }
    .btn-ghost {
      border: 1px solid var(--border); color: var(--text);
      padding: 13px 28px; border-radius: 8px;
      font-weight: 500; font-size: 15px;
      transition: border-color .15s, background .15s;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

    /* Hero stats */
    .hero-stats {
      display: flex; gap: 32px; margin-top: 44px; padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .stat-item {}
    .stat-num {
      font-family: var(--mono); font-size: 26px; font-weight: 700;
      color: var(--accent); line-height: 1;
    }
    .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

    /* Hero card panel */
    .hero-panel {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 28px;
    }
    .hero-panel-title {
      font-family: var(--mono); font-size: 11px; color: var(--muted);
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
    }
    .soc-indicator {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 14px; border-radius: 8px;
      background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15);
      margin-bottom: 14px;
    }
    .pulse {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }
    @keyframes pulse {
      0%   { transform: scale(1); opacity: 1; }
      70%  { transform: scale(2); opacity: 0; }
      100% { transform: scale(1); opacity: 0; }
    }
    .soc-text { font-size: 13px; color: var(--text); }
    .soc-text span { color: var(--green); font-weight: 600; }
    .hero-stack-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px;
    }
    .hero-stack-item:last-child { border-bottom: none; }
    .stack-name { color: var(--muted); }
    .stack-badge {
      font-family: var(--mono); font-size: 10px; font-weight: 700;
      padding: 2px 8px; border-radius: 4px; letter-spacing: 0.05em;
    }
    .badge-active  { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
    .badge-protect { background: rgba(0,194,255,0.10); color: var(--accent); border: 1px solid rgba(0,194,255,0.2); }
    .badge-monitor { background: rgba(245,158,11,0.10); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
    }
    .trust-bar-inner {
      display: flex; align-items: center; justify-content: center;
      gap: clamp(20px, 4vw, 60px); flex-wrap: wrap;
      max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--muted); white-space: nowrap;
    }
    .trust-item .icon { color: var(--accent); font-size: 16px; }
    .trust-item strong { color: var(--text); }
    .trust-item img.spectra-badge {
      width: 22px; height: 22px;
      display: inline-block; vertical-align: middle; flex-shrink: 0;
    }
    .trust-item.spectra {
      padding: 4px 12px; border-radius: 8px;
      background: rgba(124,201,201,0.06);
      border: 1px solid rgba(124,201,201,0.25);
    }
    .trust-item.spectra strong { color: var(--spectra); }

    /* ── SECTIONS ── */
    section { padding: clamp(60px, 8vw, 100px) 0; }
    .section-eyebrow {
      font-family: var(--mono); font-size: 11px;
      color: var(--accent); letter-spacing: 0.1em;
      text-transform: uppercase; margin-bottom: 14px;
    }
    .section-heading {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 600; letter-spacing: -0.03em; line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-sub {
      font-size: 16px; color: var(--muted);
      max-width: 540px; line-height: 1.65;
    }
    .section-header { margin-bottom: 52px; }

    /* ── SERVICES GRID ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 18px;
    }
    .service-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 28px;
      transition: border-color .2s, transform .2s;
      position: relative; overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2));
      opacity: 0; transition: opacity .2s;
    }
    .service-card:hover { border-color: rgba(0,194,255,0.25); transform: translateY(-2px); }
    .service-card:hover::after { opacity: 1; }
    .service-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px; font-size: 20px;
    }
    .service-card h3 {
      font-size: 16px; font-weight: 600; margin-bottom: 10px;
    }
    .service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .service-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 18px; font-size: 13px; color: var(--accent);
      font-weight: 500;
    }
    .service-link:hover { gap: 9px; }

    /* ── COMPLIANCE STRIP ── */
    .compliance { background: var(--navy2); }
    .compliance-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .compliance-badges {
      display: flex; flex-wrap: wrap; gap: 12px;
    }
    .comp-badge {
      padding: 10px 18px; border-radius: 8px;
      border: 1px solid var(--border);
      font-family: var(--mono); font-size: 12px; font-weight: 700;
      color: var(--text); letter-spacing: 0.04em;
      background: var(--panel);
    }
    .comp-badge.highlight {
      border-color: rgba(0,194,255,0.3);
      background: rgba(0,194,255,0.06);
      color: var(--accent);
    }
    .compliance-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
    .compliance-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: var(--muted);
    }
    .compliance-item::before {
      content: '→'; color: var(--accent); flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── PROCESS ── */
    .process-steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; position: relative;
    }
    .process-step {
      background: var(--panel); border: 1px solid var(--border);
      padding: 36px 28px; position: relative;
    }
    .process-step:first-child { border-radius: 14px 0 0 14px; }
    .process-step:last-child  { border-radius: 0 14px 14px 0; }
    .step-num {
      font-family: var(--mono); font-size: 40px; font-weight: 700;
      color: rgba(0,194,255,0.35); line-height: 1;
      margin-bottom: 16px;
    }
    .process-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
    .process-step p  { font-size: 14px; color: var(--muted); }

    /* ── AREAS ── */
    .areas-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 14px;
    }
    .area-card {
      background: var(--panel); border: 1px solid var(--border);
      border-radius: 12px; padding: 22px;
      transition: border-color .2s;
    }
    .area-card:hover { border-color: rgba(0,194,255,0.3); }
    .area-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
    .area-card p  { font-size: 13px; color: var(--muted); }
    .area-link {
      display: inline-block; margin-top: 12px;
      font-size: 13px; color: var(--accent);
    }

    /* ── FAQ ── */
    .faq { background: var(--navy2); }
    .faq-grid { max-width: 780px; }
    .faq-item {
      border-bottom: 1px solid var(--border); padding: 20px 0;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      font-size: 16px; font-weight: 500;
      cursor: pointer; display: flex; justify-content: space-between;
      align-items: center; gap: 16px;
      list-style: none;
      color: var(--text);
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '+'; font-size: 20px; color: var(--accent);
      flex-shrink: 0; line-height: 1;
      transition: transform .2s;
    }
    details[open] .faq-q::after { transform: rotate(45deg); }
    .faq-a {
      font-size: 15px; color: var(--muted); margin-top: 14px;
      line-height: 1.7;
    }

    /* ── INTRO VIDEO SECTION ── */
    .video-section { background: var(--navy); }
    .video-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .video-copy .section-sub { margin-bottom: 24px; }
    .video-quote {
      border-left: 3px solid var(--accent);
      padding: 16px 20px; margin: 28px 0;
      background: rgba(0,194,255,0.04);
      border-radius: 0 8px 8px 0;
    }
    .video-quote p {
      font-size: 17px; font-style: italic; color: var(--text); line-height: 1.65;
    }
    .video-quote cite {
      display: block; margin-top: 10px;
      font-size: 13px; color: var(--muted); font-style: normal;
      font-family: var(--mono);
    }
    .video-placeholder {
      position: relative; border-radius: 16px; overflow: hidden;
      background: var(--panel); border: 1px solid var(--border);
      aspect-ratio: 16/9;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 16px; cursor: pointer;
    }
    .video-placeholder::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,194,255,0.07), transparent 70%);
      pointer-events: none;
    }
    .video-thumbnail-hint {
      font-family: var(--mono); font-size: 11px; color: var(--muted);
      letter-spacing: 0.1em; text-transform: uppercase;
      position: absolute; top: 16px; left: 16px;
    }
    .play-btn {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--accent); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: transform .2s, opacity .2s;
      position: relative; z-index: 1;
      flex-shrink: 0;
    }
    .play-btn:hover { transform: scale(1.08); }
    .play-btn svg { margin-left: 4px; }
    .video-placeholder-label {
      font-size: 14px; color: var(--muted); text-align: center;
      max-width: 220px; line-height: 1.5; position: relative; z-index: 1;
    }
    .video-placeholder-label strong { display: block; color: var(--text); margin-bottom: 4px; font-size: 15px; }
    .video-placeholder-swap {
      position: absolute; bottom: 16px; right: 16px;
      font-size: 11px; font-family: var(--mono);
      color: rgba(0,194,255,0.5); letter-spacing: 0.06em;
    }

    /* ── TEAM ── */
    .team-section { background: var(--navy2); }
    .team-intro {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; margin-bottom: 60px;
      padding-bottom: 56px; border-bottom: 1px solid var(--border);
    }
    .team-intro-copy p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
    .founder-card {
      display: flex; gap: 24px; align-items: flex-start;
      background: var(--panel); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px;
    }
    .founder-photo {
      width: 96px; height: 96px; border-radius: 12px;
      background: var(--navy3); border: 1px solid var(--border);
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; flex-shrink: 0; overflow: hidden;
      position: relative;
    }
    .founder-photo img { width: 100%; height: 100%; object-fit: cover; }
    .photo-placeholder-icon { font-size: 32px; opacity: .35; }
    .photo-placeholder-label {
      font-family: var(--mono); font-size: 9px; color: var(--muted);
      letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px;
    }
    .founder-info {}
    .founder-info h3 { font-size: 17px; font-weight: 600; margin-bottom: 2px; }
    .founder-info .title {
      font-family: var(--mono); font-size: 11px; color: var(--accent);
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
    }
    .founder-info p { font-size: 14px; color: var(--muted); line-height: 1.65; }

    /* Core team grid */
    .team-heading-row {
      display: flex; align-items: baseline; justify-content: space-between;
      margin-bottom: 24px;
    }
    .team-heading-row h3 {
      font-size: 16px; font-weight: 600; color: var(--text);
      font-family: var(--mono); letter-spacing: 0.05em;
    }
    .team-heading-row span {
      font-size: 12px; color: var(--muted); font-family: var(--mono);
    }
    .team-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 14px; margin-bottom: 48px;
    }
    .team-card {
      background: var(--panel); border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
      transition: border-color .2s, transform .2s;
    }
    .team-card:hover { border-color: rgba(0,194,255,0.25); transform: translateY(-2px); }
    .team-photo {
      width: 100%; aspect-ratio: 1;
      background: var(--navy3);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 6px;
      border-bottom: 1px solid var(--border);
      position: relative; overflow: hidden;
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
    .team-photo-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; position: relative; z-index: 1; }
    .team-photo-icon { font-size: 36px; opacity: .25; }
    .team-photo-hint {
      font-family: var(--mono); font-size: 9px; color: var(--muted);
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .team-card-info { padding: 14px; }
    .team-card-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
    .team-card-info .role { font-size: 12px; color: var(--muted); line-height: 1.4; }

    /* SOC team strip */
    .soc-team-strip {
      background: var(--navy3); border: 1px solid var(--border);
      border-radius: 14px; padding: 28px 32px;
    }
    .soc-strip-header {
      display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
    }
    .soc-strip-header h3 { font-size: 15px; font-weight: 600; }
    .soc-strip-header p  { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .soc-names-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 8px;
    }
    .soc-name-chip {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 12px; border-radius: 8px;
      background: rgba(0,194,255,0.04); border: 1px solid rgba(0,194,255,0.08);
    }
    .soc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
    .soc-name-chip span { font-size: 13px; color: var(--text); }
    .soc-name-chip small { font-size: 11px; color: var(--muted); display: block; margin-top: 1px; }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, var(--navy2) 0%, var(--panel) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: clamp(40px, 6vw, 72px) clamp(30px, 6vw, 72px);
      text-align: center;
      margin: 0 var(--gutter) clamp(60px, 8vw, 100px);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 200px;
      background: radial-gradient(ellipse, rgba(0,194,255,0.12), transparent 70%);
      pointer-events: none;
    }
    .cta-section h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 600; letter-spacing: -0.03em; margin-bottom: 14px;
    }
    .cta-section p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ── FOOTER CTA BAR ── */
    .footer-cta {
      background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
      padding: 28px 0;
    }
    .footer-cta .container {
      display: flex; justify-content: space-between; align-items: center;
      gap: 20px; flex-wrap: wrap;
    }
    .footer-cta h3 {
      font-size: 20px; font-weight: 700; color: #fff;
      font-family: var(--sans);
    }
    .footer-cta p {
      font-size: 14px; color: #bfdbfe; margin-top: 4px;
    }
    .footer-cta .cta-btn {
      display: inline-block; background: #fff; color: #1e3a8a;
      font-weight: 600; font-size: 14px; padding: 12px 28px;
      border-radius: 8px; text-decoration: none; white-space: nowrap;
      transition: background 0.2s, transform 0.2s;
      font-family: var(--sans);
    }
    .footer-cta .cta-btn:hover {
      background: #e0e7ff; transform: translateY(-1px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      padding: 48px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1.8fr 0.8fr 1fr;
      gap: 40px; margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: 14px; color: var(--muted); margin-top: 14px; max-width: 280px; line-height: 1.6;
    }
    .footer-logo {
      font-family: var(--mono); font-size: 16px; font-weight: 700;
      display: flex; align-items: center;
    }
    .footer-logo span { color: var(--accent); }
    .footer-logo .nav-shield {
      width: 34px; height: 34px;
      color: var(--accent);
      flex-shrink: 0;
      margin-right: 10px;
    }
    .footer-contact {
      margin-top: 20px; display: flex; flex-direction: column; gap: 6px;
    }
    .footer-contact a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
    .footer-contact a:hover { color: var(--text); }
    .footer-award {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
      padding: 6px 14px; border-radius: 6px;
      font-family: var(--mono); font-size: 11px; font-weight: 700;
      color: var(--amber); letter-spacing: 0.04em;
    }
    .footer-award.spectra {
      background: rgba(124,201,201,0.08);
      border-color: rgba(124,201,201,0.25);
      color: var(--spectra);
    }
    .footer-award img.spectra-badge {
      width: 14px; height: 14px; display: inline-block; vertical-align: middle;
    }
    .footer-award-stack {
      display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
    }
    /* ── DUAL CREDENTIAL CARD (about us) ── */
    .dual-credential {
      display: flex; align-items: center; justify-content: space-around;
      gap: 24px; margin: 14px 0 22px; padding: 18px 0;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .dual-credential .credential {
      text-align: center; display: flex; flex-direction: column;
      align-items: center; gap: 8px;
    }
    .dual-credential .credential .cred-icon {
      font-size: 48px; color: var(--amber); line-height: 1;
      display: flex; align-items: center; justify-content: center; height: 80px;
    }
    .dual-credential .credential.spectra .cred-icon { color: var(--spectra); }
    .dual-credential .credential .cred-name {
      font-size: 13px; font-weight: 600; color: var(--text);
      font-family: var(--mono); letter-spacing: 0.04em;
    }
    .dual-credential .credential.spectra .cred-name { color: var(--spectra); }
    .dual-credential .credential .cred-year { font-size: 11px; color: var(--muted); }
    .footer-service-area {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.15);
      border-radius: 6px; padding: 6px 12px;
      font-size: 12px; color: var(--accent); margin-top: 12px;
      font-family: var(--mono); letter-spacing: 0.02em;
    }

    /* Footer column headings */
    footer h4 {
      font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--text);
      margin-bottom: 16px; font-family: var(--mono);
    }
    /* Service sub-headings (Business IT / Cybersecurity / Home) */
    footer .footer-sub {
      font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 10px; margin-top: 18px;
      font-family: var(--mono);
    }
    footer .footer-sub:first-child { margin-top: 0; }

    /* Service grid (2 columns inside Services section) */
    .footer-services-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
    }

    footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    footer ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
    footer ul a:hover { color: var(--text); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 24px; border-top: 1px solid var(--border);
      font-size: 13px; color: var(--muted);
    }
    .footer-social { display: flex; gap: 16px; }
    .footer-social a {
      color: var(--muted); font-size: 13px; transition: color 0.2s;
      font-family: var(--mono);
    }
    .footer-social a:hover { color: var(--accent); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-panel { display: none; }
      .compliance-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .process-step:first-child { border-radius: 14px 14px 0 0; }
      .process-step:last-child  { border-radius: 0 0 14px 14px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-services-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .footer-cta .container { flex-direction: column; text-align: center; }
      .video-grid { grid-template-columns: 1fr; }
      .team-intro { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
    }
    @media (min-width: 769px) {
      #mobileMenu { display: none !important; }
    }
    @media (max-width: 640px) {
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .footer-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .soc-names-grid { grid-template-columns: 1fr 1fr; }
      .founder-card { flex-direction: column; }
    }
  

/* ═══ SERVICE PAGE COMPONENTS ═══ */

/* BREADCRUMB */
.breadcrumb { background: var(--navy2); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* SERVICE PAGE HERO */
.sp-hero { position: relative; padding: clamp(60px, 10vw, 100px) 0 clamp(50px, 7vw, 80px); overflow: hidden; background: var(--navy); }
.sp-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,194,255,0.09) 0%, transparent 70%); pointer-events: none; }
.sp-hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.sp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.sp-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.sp-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 18px; }
.sp-hero h1 em { font-style: normal; color: var(--accent); }
.sp-hero-sub { font-size: 17px; color: var(--muted); max-width: 500px; margin-bottom: 32px; line-height: 1.65; }
.sp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* PRICE CARD */
.sp-price-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.sp-price-card .label { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.sp-price-big { font-family: var(--mono); font-size: 42px; font-weight: 700; color: var(--accent); line-height: 1; }
.sp-price-big sup { font-size: 22px; vertical-align: super; }
.sp-price-per { font-size: 13px; color: var(--muted); margin-top: 6px; margin-bottom: 20px; }
.sp-price-includes { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border); }
.sp-price-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); }
.sp-price-item::before { content: '✓'; color: var(--green); flex-shrink: 0; font-weight: 700; }

/* SPLIT SECTION */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split-copy p { font-size: 15px; color: var(--muted); margin-bottom: 14px; line-height: 1.7; }
.split-copy h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.feature-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.feature-item p  { font-size: 13px; color: var(--muted); }

/* TECH STACK PANEL */
.stack-panel { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.stack-panel .label { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.stack-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.stack-row:last-child { border-bottom: none; }
.stack-row-name { color: var(--muted); }
.stack-badge { font-family: var(--mono); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.05em; }
.badge-green  { background: rgba(34,197,94,0.12);  color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.badge-blue   { background: rgba(0,194,255,0.10);   color: var(--accent); border: 1px solid rgba(0,194,255,0.2); }
.badge-amber  { background: rgba(245,158,11,0.10); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }

/* ACTIVE badge glow pulse */
@keyframes badge-glow {
  0%,100% {
    box-shadow: 0 0 4px rgba(34,197,94,0.3), 0 0 8px rgba(34,197,94,0.15);
    border-color: rgba(34,197,94,0.35);
    background: rgba(34,197,94,0.10);
  }
  50% {
    box-shadow: 0 0 12px rgba(34,197,94,0.9), 0 0 24px rgba(34,197,94,0.45), 0 0 4px rgba(34,197,94,0.6);
    border-color: rgba(34,197,94,0.85);
    background: rgba(34,197,94,0.22);
  }
}
.badge-green.badge-active-glow {
  animation: badge-glow 2s ease-in-out infinite;
}

/* OUTCOMES GRID */
.outcomes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.outcome-card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.outcome-card .num { font-family: var(--mono); font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.outcome-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.outcome-card p  { font-size: 13px; color: var(--muted); }

/* WHO IT'S FOR */
.who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.who-card { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 18px; display: flex; align-items: flex-start; gap: 12px; }
.who-icon { font-size: 22px; flex-shrink: 0; }
.who-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.who-card p  { font-size: 13px; color: var(--muted); }

/* STEPS */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num-circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,194,255,0.1); border: 1px solid rgba(0,194,255,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.step-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: var(--muted); }

/* RELATED SERVICES */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.related-card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 22px; transition: border-color .2s, transform .2s; }
.related-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-2px); }
.related-card .icon { font-size: 22px; margin-bottom: 12px; }
.related-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.related-card p  { font-size: 13px; color: var(--muted); }
.related-card a  { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--accent); }

/* INLINE CTA */
.inline-cta { background: var(--navy2); border: 1px solid var(--border); border-radius: 16px; padding: clamp(32px, 5vw, 56px); text-align: center; }
.inline-cta h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.inline-cta p  { font-size: 16px; color: var(--muted); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.inline-cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG INDEX ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.blog-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; cursor: pointer; overflow: hidden; }
.blog-card.has-thumb { padding-top: 0; padding-left: 0; padding-right: 0; }
.blog-card.has-thumb .blog-tag,
.blog-card.has-thumb .blog-card-meta,
.blog-card.has-thumb h2,
.blog-card.has-thumb p,
.blog-card.has-thumb .pin-badge,
.blog-card.has-thumb .blog-card-link { margin-left: 28px; margin-right: 28px; }
.blog-card-thumb { position: relative; margin-bottom: 20px; overflow: hidden; }
.blog-card-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,15,30,0.7) 100%); pointer-events: none; }
.blog-card-thumb img { display: block; width: 100%; height: 200px; max-height: 200px; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card:hover { border-color: rgba(0,194,255,0.3); transform: translateY(-3px); }
.blog-card::after { content: ''; display: block; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 0 0 2px 2px; opacity: 0; transition: opacity .2s; margin-top: auto; }
.blog-card:hover::after { opacity: 1; }
.blog-tag { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.2); padding: 3px 9px; border-radius: 4px; margin-bottom: 14px; }
.blog-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; font-family: var(--mono); }
.blog-card h2 { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.35; margin-bottom: 12px; }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.blog-card-link { font-size: 13px; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.blog-loading { text-align: center; padding: 60px; color: var(--muted); font-size: 14px; font-family: var(--mono); }
.blog-empty  { text-align: center; padding: 80px; color: var(--muted); font-size: 15px; }

/* ── BLOG ARTICLE ── */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 0 var(--gutter); }
.article-hero { background: var(--navy); position: relative; padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 52px); overflow: hidden; }
.article-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,194,255,0.07) 0%, transparent 70%); pointer-events: none; }
.article-category { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 16px; }
.article-byline { font-size: 13px; color: var(--muted); font-family: var(--mono); display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.article-byline span::before { content: '· '; margin-right: 4px; }
.article-byline span:first-child::before { content: ''; }
.article-body { padding: clamp(40px, 6vw, 72px) 0; }
.article-body p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.article-body h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; letter-spacing: -0.02em; margin: 48px 0 16px; color: var(--text); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.05rem; font-weight: 600; margin: 32px 0 12px; color: var(--text); }
.article-body ul { margin: 0 0 20px 0; padding: 0; list-style: none; }
.article-body li { font-size: 15px; color: var(--muted); line-height: 1.7; padding: 6px 0 6px 20px; position: relative; }
.article-body li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(0,194,255,0.3); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.article-body a:hover { text-decoration-color: var(--accent); }
.article-blockquote { background: var(--panel); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 28px 0; font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; }
.article-blockquote a { color: var(--accent); }
.article-step-label { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--accent); padding: 3px 9px; border-radius: 4px; margin-bottom: 8px; }
.article-attribution { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); font-style: italic; }
.article-attribution a { color: var(--accent); }

/* ── PINNED / FEATURED POSTS ── */
.blog-featured-label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.blog-featured-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0,194,255,0.3), transparent); }
.blog-featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-bottom: 36px; }
.blog-card.pinned { border-color: rgba(0,194,255,0.25); position: relative; }
.blog-card.pinned::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 14px 14px 0 0; }
.pin-badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: rgba(0,194,255,0.08); border: 1px solid rgba(0,194,255,0.2); padding: 3px 8px; border-radius: 4px; margin-bottom: 10px; }
.arc-pin-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 6px; cursor: pointer; transition: background .15s; font-size: 13px; color: var(--muted); }
.arc-pin-row:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.arc-pin-row.active { background: rgba(0,194,255,0.10); color: var(--accent); }
.arc-pin-row.active .archive-count { background: rgba(0,194,255,0.15); color: var(--accent); }

/* ── BLOG LAYOUT (index page with sidebar) ── */
.blog-layout { display: grid; grid-template-columns: 1fr 240px; gap: 40px; align-items: start; }
.blog-sidebar { position: sticky; top: 84px; }
.blog-sidebar-card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.blog-sidebar-title { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.archive-month { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-radius: 6px; cursor: pointer; transition: background .15s; font-size: 13px; color: var(--muted); }
.archive-month:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.archive-month.active { background: rgba(0,194,255,0.10); color: var(--accent); }
.archive-month.active .archive-count { background: rgba(0,194,255,0.15); color: var(--accent); }
.archive-count { font-family: var(--mono); font-size: 10px; background: rgba(255,255,255,0.06); color: var(--muted); padding: 2px 7px; border-radius: 10px; }
.archive-divider { height: 1px; background: var(--border); margin: 8px 0; }
.blog-section-label { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
@media (max-width: 860px) { .blog-layout { grid-template-columns: 1fr; } .blog-sidebar { position: static; } }

/* SERVICE PAGE RESPONSIVE ADDITIONS */
@media (max-width: 900px) {
  .sp-hero-grid { grid-template-columns: 1fr; }
  .sp-price-card { display: none; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .who-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}
