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

    :root {
      --bg:     #FFFFFF;
      --bg2:    #FFF7ED; /* Warm Orange Tint */
      --bg3:    #FED7AA; /* Orange hover/tint */
      --card:   #FFFFFF;
      --or:     #F97316; /* Brand Orange */
      --ord:    rgba(249,115,22,0.10);
      --orm:    rgba(249,115,22,0.22);
      --pu:     #7C3AED; /* Brand Purple */
      --pud:    rgba(124,58,237,0.10);
      --pum:    rgba(124,58,237,0.22);
      --w:      #FFFFFF;
      --t1:     #060D1F; /* Addotek Dark */
      --t2:     #1A1A2E; /* Addotek Ink */
      --t3:     #6B7A99; /* Addotek Steel */
      --bd:     rgba(6,13,31,0.10);
      --bd2:    rgba(6,13,31,0.05);
      --max:    1200px;
      --r:      8px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: Arial, sans-serif;
      font-size: 16px; line-height: 1.6;
      color: var(--t2); background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }

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

    /* LABEL */
    .lbl {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--or);
    }
    .lbl::before { content: ''; width: 20px; height: 2px; background: currentColor; border-radius: 1px; flex-shrink: 0; }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px;
      font-family: Arial, sans-serif; font-size: 14px; font-weight: 600;
      text-decoration: none; border-radius: var(--r); border: 2px solid transparent;
      cursor: pointer; transition: all 0.2s; letter-spacing: 0.01em; white-space: nowrap;
    }
    .btn-pri { background: var(--or); color: var(--w); border-color: var(--or); }
    .btn-pri:hover { background: #EA6B00; border-color: #EA6B00; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(249,115,22,0.28); }
    .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
    .btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); }
    .btn-sm { padding: 10px 22px; font-size: 13px; }

    /* ── NAV ──────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 68px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--bd);
      transition: box-shadow 0.3s;
    }
    #nav.scrolled { box-shadow: 0 4px 32px rgba(6,13,31,0.08); }
    #nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

    .logo { font-family: 'Arial Black', Arial, sans-serif; font-size: 19px; font-weight: 700; color: var(--t1); text-decoration: none; letter-spacing: 0.09em; flex-shrink: 0; }
    .logo .o { color: var(--or); }

    .nav-links { display: flex; list-style: none; gap: 2px; }
    .nav-links a { display: block; padding: 8px 14px; color: var(--t3); text-decoration: none; font-size: 13px; font-weight: 600; transition: color 0.18s; border-radius: 4px; }
    .nav-links a:hover, .nav-links a.active { color: var(--or); }

    .nav-r { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

    /* Burger Button */
    .burger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 250;
      padding: 0;
    }
    .burger-btn span {
      width: 100%;
      height: 2px;
      background-color: var(--t1);
      transition: all 0.3s ease;
      border-radius: 1px;
    }
    .burger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-btn.active span:nth-child(2) { opacity: 0; }
    .burger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile Navigation Drawer */
    .mobile-nav {
      position: fixed;
      top: 68px;
      left: 0;
      width: 100%;
      height: calc(100vh - 68px);
      background: var(--bg);
      z-index: 190;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 48px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-top: 1px solid var(--bd);
    }
    .mobile-nav.active { transform: translateX(0); }
    .mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 24px; }
    .mobile-nav-links a { font-size: 20px; font-weight: 700; color: var(--t1); text-decoration: none; display: block; transition: color 0.2s; }
    .mobile-nav-links a:hover { color: var(--or); }
    .mobile-nav-links .mobile-nav-btn { display: inline-block; margin-top: 12px; text-align: center; background: var(--or); color: var(--w); padding: 14px 28px; border-radius: var(--r); font-size: 16px; font-weight: 600; }

    /* Scroll Progress Bar */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--or);
      z-index: 210;
      width: 0%;
      transition: width 0.1s ease-out;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 44px;
      height: 44px;
      background: var(--card);
      border: 1px solid var(--bd);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 100;
      box-shadow: 0 4px 16px rgba(6,13,31,0.08);
      opacity: 0;
      transform: translateY(12px) scale(0.9);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .back-to-top.show { opacity: 1; transform: translateY(0) scale(1); }
    .back-to-top:hover {
      background: var(--or);
      color: var(--w);
      border-color: var(--or);
      box-shadow: 0 8px 24px rgba(249,115,22,0.3);
      transform: translateY(-2px);
    }
    .back-to-top svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ── HERO ─────────────────────────────────────── */
    #hero { min-height: 100vh; position: relative; overflow: hidden; background: #060D1F; display: flex; align-items: center; }
    .hero-photo {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=75&auto=format&fit=crop');
      background-size: cover; background-position: center; opacity: 0.04;
    }
    .hero-ov { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,13,31,0.96) 0%, rgba(6,13,31,0.80) 30%, rgba(6,13,31,0.15) 60%, rgba(6,13,31,0.02) 100%); }
    .hero-dots {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(249,115,22,0.07) 1px, transparent 1px);
      background-size: 44px 44px; opacity: 0.7;
    }
    .hero-gl { position: absolute; top: -20%; left: -8%; width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(249,115,22,0.07) 0%, transparent 65%); pointer-events: none; }
    .hero-gr { position: absolute; bottom: -15%; right: 5%; width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(124,58,237,0.10) 0%, transparent 65%); pointer-events: none; }

    .hero-inner {
      position: relative; z-index: 3; width: 100%;
      padding: 160px 48px 120px;
      max-width: var(--max); margin: 0 auto;
    }
    .hero-text { max-width: 620px; }

    .hero-pill {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--ord); border: 1px solid var(--orm);
      padding: 7px 16px; border-radius: 4px; margin-bottom: 32px;
    }
    .hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--or); animation: blink 2s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }
    .hero-pill span { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--or); }

    .hero-h1 { font-size: clamp(38px, 4.8vw, 62px); font-weight: 700; color: #fff; line-height: 1.09; letter-spacing: -0.025em; margin-bottom: 18px; }
    .hero-h1 .h1-line1 { font-weight: 400; font-size: 0.80em; color: rgba(255,255,255,0.80); display: block; }
    .hero-h1 .h1-line2 { font-weight: 700; display: block; }
    .hero-rotate-wrap {
      display: block;
      overflow: hidden;
      position: relative;
      padding-bottom: 0.15em;
      margin-bottom: -0.15em;
    }
    .hero-rotate {
      display: block;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      transform: translateY(0);
    }
    .hero-rotate.out {
      transform: translateY(-102%);
    }
    .hero-rotate.in-start {
      transition: none;
      transform: translateY(102%);
    }
    .hero-tagline { margin-bottom: 20px; }
    .tagline-la { display: block; font-family: Georgia, serif; font-style: italic; font-size: 17px; color: rgba(255,255,255,0.40); letter-spacing: 0.01em; margin-bottom: 4px; }
    .tagline-en { display: block; font-size: 11px; color: rgba(255,255,255,0.22); letter-spacing: 0.13em; text-transform: uppercase; }
    .hero-h1 em { color: var(--or); font-style: normal; }

    .hero-sub { font-size: 17px; color: rgba(255,255,255,0.58); line-height: 1.72; margin-bottom: 40px; max-width: 460px; }
    .hero-acts { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

    .hero-creds { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.10); }
    .hc strong { display: block; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.90); margin-bottom: 3px; }
    .hc span { font-size: 10px; color: rgba(255,255,255,0.30); text-transform: uppercase; letter-spacing: 0.08em; }

    /* HERO FULL-SCREEN SLIDER */
    .hero-slider {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
    }
    .hs-slide {
      position: absolute; inset: 0;
      opacity: 0; transition: opacity 1.1s ease;
    }
    .hs-slide.active { opacity: 1; }
    .hs-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      image-rendering: -webkit-optimize-contrast;
    }
    .hs-dots {
      position: absolute; bottom: 44px; left: 48px;
      display: flex; gap: 8px; z-index: 4;
    }
    .hs-dot {
      width: 28px; height: 4px; border-radius: 2px;
      background: rgba(255,255,255,0.28); border: none; padding: 0; cursor: pointer;
      transition: background 0.28s, width 0.28s;
    }
    .hs-dot.active { background: var(--or); width: 44px; }


    /* ── ABOUT ────────────────────────────────────── */
    #about { background: var(--bg); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }

    .about-img-wrap { position: relative; border-radius: 12px; overflow: hidden; height: 520px; }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .about-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(6,13,31,0.80) 100%); }
    .about-cap {
      position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 1;
      background: rgba(6,13,31,0.88); backdrop-filter: blur(12px);
      border: 1px solid var(--bd); border-radius: var(--r);
      padding: 16px 20px; display: flex; align-items: center; gap: 14px;
    }
    .about-cap-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--or); flex-shrink: 0; }
    .about-cap-txt strong { display: block; font-size: 13px; font-weight: 700; color: var(--w); }
    .about-cap-txt span { font-size: 11px; color: var(--t3); margin-top: 1px; display: block; }

    .about-copy .lbl { margin-bottom: 20px; }
    .about-h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--t1); line-height: 1.16; letter-spacing: -0.022em; margin-bottom: 22px; }
    .about-h2 em { color: var(--or); font-style: normal; }
    .about-p { font-size: 16px; color: var(--t2); line-height: 1.80; margin-bottom: 18px; }
    .pillars { border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; margin-top: 36px; }
    .pillar {
      display: grid; grid-template-columns: 40px 1fr; gap: 16px;
      padding: 20px 22px; border-bottom: 1px solid var(--bd2);
      background: var(--card); align-items: start; transition: background 0.2s;
    }
    .pillar:last-child { border-bottom: none; }
    .pillar:hover { background: var(--bg3); }
    .pn { width: 32px; height: 32px; border-radius: 50%; background: var(--ord); display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--or); flex-shrink: 0; }
    .pillar h4 { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
    .pillar p { font-size: 13px; color: var(--t2); line-height: 1.55; }

    /* ── SERVICES ─────────────────────────────────── */
    #services { background: var(--bg2); }
    .sec-head { text-align: center; margin-bottom: 64px; }
    .sec-head .lbl { justify-content: center; margin-bottom: 18px; }
    .sec-head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; color: var(--t1); line-height: 1.16; letter-spacing: -0.022em; margin-bottom: 14px; }
    .sec-head h2 em { color: var(--or); font-style: normal; }
    .sec-head p { font-size: 17px; color: var(--t2); max-width: 500px; margin: 0 auto; line-height: 1.65; }

    .srv-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .svc {
      background: var(--card); padding: 40px 36px 36px;
      position: relative; transition: all 0.25s;
      border: 1px solid var(--bd); border-radius: 16px;
      display: flex; flex-direction: column;
      box-shadow: 0 2px 12px rgba(6,13,31,0.04);
    }
    .svc:hover { border-color: var(--or); box-shadow: 0 8px 32px rgba(249,115,22,0.10); transform: translateY(-3px); }
    .svc-icon { width: 56px; height: 56px; background: var(--ord); border-radius: 14px; display: grid; place-items: center; margin-bottom: 28px; }
    .svc-icon svg { width: 26px; height: 26px; stroke: var(--or); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .svc h3 { font-size: 20px; font-weight: 700; color: var(--t1); margin-bottom: 12px; letter-spacing: -0.01em; }
    .svc p { font-size: 14px; color: var(--t2); line-height: 1.78; margin-bottom: 0; flex: 1; }
    .svc-lnk { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--or); text-decoration: none; transition: gap 0.18s; margin-top: 28px; }
    .svc-lnk:hover { gap: 10px; }
    .svc-lnk svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }

    /* ── NUMBERS ──────────────────────────────────── */
    #numbers {
      position: relative; overflow: hidden;
      background: var(--bg);
      border-top: 1px solid var(--bd);
      border-bottom: 1px solid var(--bd);
      padding: 100px 0;
    }
    .num-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(249,115,22,0.06) 0%, transparent 65%); pointer-events: none; }
    .nums-row { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
    .num {
      text-align: center; padding: 0 24px;
      border-right: 1px solid var(--bd);
    }
    .num:last-child { border-right: none; }
    .num-val { font-size: clamp(48px, 5.5vw, 72px); font-weight: 700; color: var(--or); line-height: 1; margin-bottom: 10px; letter-spacing: -0.04em; }
    .num-val em { color: var(--or); font-style: normal; }
    .num-lbl { font-size: 13px; color: var(--t2); font-weight: 500; }

    /* ── EAST AFRICA ──────────────────────────────── */
    #eastafrica { position: relative; overflow: hidden; padding: 120px 0; }
    .ea-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1675756261486-09bd1e0f6c8a?w=1600&q=80&auto=format&fit=crop'); background-size: cover; background-position: center; }
    .ea-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,13,31,0.96) 0%, rgba(6,13,31,0.82) 60%, rgba(4,8,20,0.93) 100%); }
    .ea-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .ea-copy .lbl { margin-bottom: 20px; }
    .ea-copy h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--w); line-height: 1.16; letter-spacing: -0.022em; margin-bottom: 20px; }
    .ea-copy h2 em { color: var(--or); font-style: normal; }
    .ea-copy p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.78; margin-bottom: 28px; }
    .ea-pills { display: flex; flex-wrap: wrap; gap: 8px; }
    .ea-pill { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.12); padding: 5px 14px; border-radius: 4px; }
    .ea-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .ea-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 26px 24px; }
    .ea-card-ico { width: 38px; height: 38px; border-radius: 8px; background: rgba(249,115,22,0.14); display: grid; place-items: center; margin-bottom: 14px; }
    .ea-card-ico svg { width: 19px; height: 19px; stroke: var(--or); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .ea-card h4 { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.90); margin-bottom: 7px; }
    .ea-card p { font-size: 12px; color: rgba(255,255,255,0.40); line-height: 1.65; }

    /* ── INDUSTRIES ───────────────────────────────── */
    #industries { background: var(--bg2); }
    .sec-head-l { margin-bottom: 56px; }
    .sec-head-l .lbl { margin-bottom: 18px; }
    .sec-head-l h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; color: var(--t1); line-height: 1.16; letter-spacing: -0.022em; }
    .sec-head-l h2 em { color: var(--or); font-style: normal; }

    .ind-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
    .ind-nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: 88px; }
    .ind-btn {
      display: flex; align-items: center; gap: 14px;
      padding: 15px 18px; border-radius: var(--r);
      background: none; border: 1px solid transparent;
      font-family: Arial, sans-serif; font-size: 14px; font-weight: 600;
      color: var(--t3); text-align: left; cursor: pointer; transition: all 0.2s;
    }
    .ind-btn:hover { color: var(--t1); background: var(--bg3); }
    .ind-btn.active { color: var(--w); background: var(--or); border-color: var(--or); }
    .ib-ico { width: 32px; height: 32px; display: grid; place-items: center; flex-shrink: 0; }
    .ib-ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }

    .ind-panel { display: none; }
    .ind-panel.active { display: block; animation: tabFadeIn 0.35s ease-out forwards; }
    @keyframes tabFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .ipanel { background: var(--card); border: 1px solid var(--bd); border-radius: 12px; overflow: hidden; }
    .ipanel-img { height: 260px; position: relative; overflow: hidden; }
    .ipanel-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ipanel-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 25%, rgba(6,13,31,0.85) 100%); }
    .ipanel-body { padding: 36px 40px; }
    .ipanel-body h3 { font-size: 22px; font-weight: 700; color: var(--t1); margin-bottom: 12px; letter-spacing: -0.012em; }
    .ipanel-body > p { font-size: 15px; color: var(--t2); line-height: 1.72; margin-bottom: 28px; }
    .ifeats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; margin-bottom: 0; }
    .ifeat { font-size: 13px; color: var(--t2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
    .ifeat::before {
      content: ''; flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
      background-color: var(--ord); border: 1px solid var(--or); border-radius: 3px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23F97316' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
      background-size: 10px; background-repeat: no-repeat; background-position: center;
    }
    .imetrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--bd); }
    .imet { padding: 20px 24px; text-align: center; border-right: 1px solid var(--bd); }
    .imet:last-child { border-right: none; }
    .imet strong { display: block; font-size: 18px; font-weight: 700; color: var(--or); line-height: 1; margin-bottom: 4px; }
    .imet span { font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: 0.08em; }

    /* ── SCOPING CALCULATOR ──────────────────────── */
    #scoping { background: var(--bg2); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); }
    .calculator-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-top: 48px; }
    .calc-config { background: var(--card); border: 1px solid var(--bd); border-radius: 12px; padding: 36px; }
    .calc-group { margin-bottom: 32px; }
    .calc-group:last-child { margin-bottom: 0; }
    .calc-label { display: block; font-size: 11px; font-weight: 700; color: var(--t1); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
    .segmented-control { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg2); padding: 4px; border-radius: var(--r); border: 1px solid var(--bd); }
    .seg-btn { background: transparent; border: none; padding: 12px; font-family: Arial, sans-serif; font-size: 13px; font-weight: 600; color: var(--t3); cursor: pointer; border-radius: calc(var(--r) - 2px); transition: all 0.2s; }
    .seg-btn.active { background: var(--card); color: var(--or); box-shadow: 0 4px 12px rgba(6,13,31,0.06); }
    .counters-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .counter-box { background: var(--bg2); border: 1px solid var(--bd2); border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
    .counter-name { font-size: 13px; font-weight: 700; color: var(--t1); }
    .counter-name small { display: block; font-size: 10px; font-weight: 400; color: var(--t3); margin-top: 2px; text-transform: none; }
    .counter-ctrl { display: flex; align-items: center; gap: 12px; }
    .c-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--bd); background: var(--card); color: var(--t1); font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.18s; padding: 0; outline: none; }
    .c-btn:hover { background: var(--or); color: var(--w); border-color: var(--or); }
    .c-val { font-size: 16px; font-weight: 700; color: var(--t1); width: 20px; text-align: center; }
    .checklist-grid { display: flex; flex-direction: column; gap: 12px; }
    .check-item { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; position: relative; }
    .check-item input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
    .check-box { flex-shrink: 0; width: 20px; height: 20px; background-color: var(--card); border: 1px solid var(--bd); border-radius: 4px; transition: all 0.2s; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
    .check-item:hover input:not(:disabled) ~ .check-box { border-color: var(--or); background-color: var(--bg2); }
    .check-item input:checked ~ .check-box { background-color: var(--or); border-color: var(--or); }
    .check-item input:disabled ~ .check-box { background-color: var(--bg3); border-color: var(--bd2); cursor: not-allowed; }
    .check-box::after { content: ""; display: none; width: 6px; height: 10px; border: solid var(--w); border-width: 0 2px 2px 0; transform: rotate(45deg); margin-bottom: 2px; }
    .check-item input:checked ~ .check-box::after { display: block; }
    .check-lbl { font-size: 13px; font-weight: 700; color: var(--t1); }
    .check-lbl small { display: block; font-size: 11px; font-weight: 400; color: var(--t3); margin-top: 1px; }
    .calc-dashboard { background: var(--t1); border-radius: 12px; padding: 36px; color: var(--w); height: fit-content; position: sticky; top: 88px; box-shadow: 0 12px 48px rgba(6,13,31,0.18); }
    .dash-inner h4 { font-size: 18px; font-weight: 700; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
    .dash-stat { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
    .dash-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--t3); }
    .dash-val { font-size: 12px; font-weight: 700; background: var(--or); padding: 4px 12px; border-radius: 20px; }
    .dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
    .dm-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r); padding: 12px 16px; }
    .dm-lbl { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--t3); margin-bottom: 4px; }
    .dm-val { font-size: 14px; font-weight: 700; color: var(--w); }
    .dash-breakdown { margin-bottom: 32px; background: rgba(255,255,255,0.02); border-radius: var(--r); padding: 16px 20px; border: 1px solid rgba(255,255,255,0.05); }
    .dash-breakdown h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--t3); margin-bottom: 12px; }
    .dash-breakdown ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
    .dash-breakdown li { font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
    .dash-breakdown li::before { content: ""; width: 4px; height: 4px; background: var(--or); border-radius: 50%; }
    .btn-calc { width: 100%; justify-content: center; }

    /* ── PROCESS ──────────────────────────────────── */
    #process { background: var(--bg); }
    .proc-steps {
      display: grid; grid-template-columns: repeat(5, 1fr);
      position: relative; gap: 0;
    }
    .proc-steps::before {
      content: ''; position: absolute; top: 27px; left: 9%; right: 9%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--bd), rgba(249,115,22,0.30), var(--bd), transparent);
    }
    .pstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 14px; position: relative; z-index: 1; }
    .pstep-n {
      width: 54px; height: 54px; border-radius: 50%;
      border: 1px solid var(--or); background: var(--bg);
      display: grid; place-items: center; margin-bottom: 22px; position: relative;
    }
    .pstep-n::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; background: var(--ord); }
    .pstep-n span { font-size: 14px; font-weight: 700; color: var(--or); position: relative; z-index: 1; }
    .pstep h4 { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
    .pstep p { font-size: 12px; color: var(--t2); line-height: 1.60; margin-bottom: 10px; }
    .pstep-wk { font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--or); background: var(--ord); padding: 4px 12px; border-radius: 4px; }

    /* ── TESTIMONIALS ─────────────────────────────── */
    #testimonials { background: var(--bg2); }
    .tst-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .tst {
      background: var(--card); border: 1px solid var(--bd); border-radius: 12px;
      padding: 32px; position: relative;
    }
    .tst-q { font-size: 64px; line-height: 1; color: var(--or); opacity: 0.25; position: absolute; top: 16px; left: 22px; font-family: Georgia, serif; }
    .tst p { font-size: 15px; color: var(--t2); line-height: 1.74; font-style: italic; margin-bottom: 24px; padding-top: 24px; }
    .tst-meta { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--bd); padding-top: 18px; }
    .tst-av { width: 36px; height: 36px; border-radius: 50%; background: var(--pud); border: 1px solid var(--pum); display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--pu); flex-shrink: 0; }
    .tst-who strong { display: block; font-size: 13px; font-weight: 700; color: var(--t1); }
    .tst-who span { font-size: 11px; color: var(--t3); }

    /* ── CTA LAYOUT ───────────────────────────────── */
    #cta { background: var(--bg); border-top: 1px solid var(--bd); position: relative; overflow: hidden; }
    .cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(124,58,237,0.09) 0%, transparent 65%); pointer-events: none; }
    .cta-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
    .cta-info { padding-top: 12px; }
    .cta-desc { font-size: 16px; color: var(--t2); line-height: 1.7; margin-bottom: 40px; }
    .cta-form-box { background: var(--card); border: 1px solid var(--bd); border-radius: 12px; padding: 36px; position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(6,13,31,0.04); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; position: relative; }
    .form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--t1); margin-bottom: 8px; }
    .form-input { width: 100%; background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r); padding: 12px 16px; font-family: Arial, sans-serif; font-size: 13px; color: var(--t1); transition: all 0.2s; outline: none; }
    .form-input:focus { border-color: var(--or); background: var(--card); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }
    textarea.form-input { resize: vertical; }
    .btn-submit { width: 100%; justify-content: center; margin-top: 8px; }
    .error-msg { display: none; font-size: 11px; color: #ef4444; margin-top: 4px; }
    .form-group.has-error .form-input { border-color: #ef4444; background: rgba(239,68,68,0.03); }
    .form-group.has-error .error-msg { display: block; }
    
    .form-success-overlay { position: absolute; inset: 0; background: var(--card); z-index: 50; display: flex; align-items: center; justify-content: center; text-align: center; padding: 36px; opacity: 0; pointer-events: none; transform: scale(0.96); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
    .form-success-overlay.active { opacity: 1; pointer-events: auto; transform: scale(1); }
    .success-content { max-width: 380px; }
    .success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(16, 185, 129, 0.1); border: 2px solid #10b981; display: grid; place-items: center; margin: 0 auto 20px; }
    .success-icon svg { width: 32px; height: 32px; stroke: #10b981; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .success-content h3 { font-size: 22px; font-weight: 700; color: var(--t1); margin-bottom: 12px; }
    .success-content p { font-size: 14px; color: var(--t2); line-height: 1.6; margin-bottom: 24px; }

    .cta-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
    .cc { background: var(--card); padding: 22px 20px; border: 1px solid var(--bd2); }
    .cc label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t3); margin-bottom: 6px; }
    .cc a, .cc span { font-size: 13px; color: var(--t2); text-decoration: none; transition: color 0.18s; }
    .cc a:hover { color: var(--or); }

    /* ── FOOTER ───────────────────────────────────── */
    footer { background: #060D1F; border-top: 1px solid rgba(255,255,255,0.04); padding: 64px 0 36px; }
    footer .logo { color: var(--w); }
    .foot-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .foot-brand .logo { display: block; margin-bottom: 14px; }
    .foot-brand p { font-size: 13px; color: var(--t3); line-height: 1.65; max-width: 220px; }
    .fcol h5 { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t3); margin-bottom: 16px; }
    .fcol ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .fcol a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.18s; }
    .fcol a:hover { color: rgba(255,255,255,0.70); }
    .foot-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .foot-bar p { font-size: 12px; color: var(--t3); }
    .foot-links { display: flex; gap: 20px; align-items: center; }
    .foot-links a { font-size: 12px; color: rgba(255,255,255,0.20); text-decoration: none; transition: color 0.18s; }
    .foot-links a:hover { color: rgba(255,255,255,0.55); }
    .foot-motto { font-size: 11px; color: rgba(255,255,255,0.07); font-style: italic; }

    /* ── REVEAL ───────────────────────────────────── */
    .r { opacity: 0; transform: translateY(24px); transition: opacity 0.60s ease, transform 0.60s ease; }
    .r.v { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.08s; }
    .d2 { transition-delay: 0.16s; }
    .d3 { transition-delay: 0.24s; }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero-panel { display: none; }
      .about-grid, .ea-inner { grid-template-columns: 1fr; gap: 48px; }
      .srv-row { grid-template-columns: 1fr 1fr; }
      .srv-row .svc:last-child { grid-column: span 2; max-width: 60%; margin: 0 auto; }
      .ind-wrap { grid-template-columns: 1fr; }
      .ind-nav { flex-direction: row; flex-wrap: wrap; position: static; gap: 8px; }
      .proc-steps { grid-template-columns: repeat(3, 1fr); }
      .proc-steps::before { display: none; }
      .tst-row { grid-template-columns: 1fr 1fr; }
      .cta-layout { grid-template-columns: 1fr; gap: 48px; }
      .foot-row { grid-template-columns: 1fr 1fr; }
      .nums-row { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
      .ifeats { grid-template-columns: 1fr; }
      .imetrics { grid-template-columns: repeat(2, 1fr); }
      .calculator-grid { grid-template-columns: 1fr; }
      .calc-dashboard { position: static; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      .nav-links { display: none; }
      .burger-btn { display: flex; }
      .hero-inner { padding: 100px 24px 72px; }
      .sp { padding: 80px 0; }
      .tst-row { grid-template-columns: 1fr; }
      .srv-row { grid-template-columns: 1fr; }
      .srv-row .svc:last-child { grid-column: span 1; max-width: 100%; }
      .proc-steps { grid-template-columns: repeat(2, 1fr); }
      .ea-cards { grid-template-columns: 1fr 1fr; }
      .counters-row { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
    }
    @media (max-width: 480px) {
      .foot-row, .ea-cards { grid-template-columns: 1fr; }
      .nums-row { grid-template-columns: 1fr 1fr; }
      .proc-steps { grid-template-columns: 1fr; }
      .hero-creds { gap: 20px; }
      .cta-contacts { grid-template-columns: 1fr; }
    }