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

    :root {
      --white:        #ffffff;
      --bg:           #f7f8f9;
      --border:       #e8eaed;
      --ink:          #111214;
      --body:         #4a4f58;
      --muted:        #8c919b;
      --accent:       #2e40d0;
      --accent-lt:    #eff4ff;
      --accent-hover: #1447c0;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* NAV */
    nav {
       top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 64px;
    }
    .nav-logo {
      font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
      color: var(--accent); text-decoration: none;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { font-size: 0.875rem; color: var(--body); text-decoration: none; transition: color 0.15s; }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      font-size: 0.875rem; font-weight: 500;
      background: var(--accent); color: #fff;
      padding: 0.5rem 1.25rem; border-radius: 6px;
      text-decoration: none; transition: background 0.15s;
    }
    .nav-cta:hover { background: var(--accent-hover); }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem 5vw 5rem; gap: 5rem;
      background: var(--white);
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--accent-lt); color: var(--accent);
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
      padding: 0.35rem 0.85rem; border-radius: 100px;
      margin-bottom: 1.5rem;
    }
    h1 {
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 600; line-height: 1.1;
      letter-spacing: -0.03em; color: var(--ink);
      margin-bottom: 1.25rem;
    }
    .accent-word { color: var(--accent); }
    .hero-sub {
      font-size: 1.05rem; font-weight: 300; color: var(--body);
      max-width: 500px; margin-bottom: 2.5rem; line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      display: inline-block; background: var(--accent); color: #fff;
      font-size: 0.9rem; font-weight: 500;
      padding: 0.8rem 1.75rem; border-radius: 6px;
      text-decoration: none; transition: background 0.15s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
    .btn-outline {
      display: inline-block;
      border: 1.5px solid var(--border); color: var(--ink);
      font-size: 0.9rem; font-weight: 500;
      padding: 0.8rem 1.75rem; border-radius: 6px;
      text-decoration: none; transition: border-color 0.15s;
    }
    .btn-outline:hover { border-color: #adb2bb; }
    .hero-stats {
      display: flex; gap: 2.5rem;
      margin-top: 3rem; padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .stat-num {
      font-size: 1.75rem; font-weight: 600;
      letter-spacing: -0.03em; line-height: 1;
    }
    .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
    .hero-img-wrap { position: relative; animation: fadeUp 0.9s ease both 0.3s; }
    .hero-img-wrap img {
      width: 100%; display: block; border-radius: 12px;
      max-height: 580px; object-fit: cover; object-position: center top;
      filter: grayscale(10%);
    }
    .hero-badge {
      position: absolute; bottom: 1.5rem; left: -1.5rem;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 1rem 1.25rem;
      display: flex; align-items: center; gap: 0.75rem;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    }
    .badge-icon {
      width: 2.5rem; height: 2.5rem;
      background: var(--accent-lt); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
    }
    .badge-txt { font-size: 0.8rem; font-weight: 500; }
    .badge-sub { font-size: 0.72rem; color: var(--muted); }

    /* TICKER */
    .ticker-wrap {
      background: var(--white); border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.1rem 5vw; display: flex; align-items: center; gap: 2rem; overflow: hidden;
    }
    .ticker-label { font-size: 0.75rem; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
    .ticker-scroll { overflow: hidden; flex: 1; }
    .ticker-track {
      display: flex; width: max-content;
      animation: ticker 30s linear infinite;
    }
    .ticker-track span {
      font-size: 0.78rem; font-weight: 500; color: var(--muted);
      padding: 0 1.75rem; white-space: nowrap;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* SHARED */
    section { padding: 6rem 5vw; }
    .section-label {
      font-size: 0.73rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.75rem;
    }
    h2 {
      font-size: clamp(1.75rem, 2.8vw, 2.5rem);
      font-weight: 600; letter-spacing: -0.025em;
      color: var(--ink); line-height: 1.15; margin-bottom: 1rem;
    }
    .section-intro { font-size: 1rem; color: var(--body); font-weight: 300; line-height: 1.7; }

    /* SERVICES */
    #services { background: var(--bg); }
    .section-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
    }
    .svc-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 2rem 1.75rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .svc-icon {
      width: 2.75rem; height: 2.75rem;
      background: var(--accent-lt); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); margin-bottom: 1.25rem;
    }
    .svc-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .svc-card p { font-size: 0.875rem; color: var(--body); line-height: 1.65; }

    /* ABOUT */
    #about {
      background: var(--white);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-img { position: relative; }
    .about-img img {
      width: 100%; display: block; border-radius: 12px;
      filter: grayscale(10%);
    }
    .about-stat {
      position: absolute; bottom: -1.25rem; right: -1.25rem;
      background: var(--accent); border-radius: 10px;
      padding: 1.25rem 1.5rem; text-align: center;
    }
    .about-stat .big {
      font-size: 2rem; font-weight: 600; color: #fff;
      letter-spacing: -0.03em; line-height: 1; display: block;
    }
    .about-stat .sm { font-size: 0.7rem; color: rgba(255,255,255,0.7); display: block; margin-top: 0.25rem; }
    .about-txt p { font-size: 0.95rem; color: var(--body); line-height: 1.75; margin-bottom: 1rem; }
    .feat-list { list-style: none; margin: 1.75rem 0 2rem; }
    .feat-list li {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.9rem; color: var(--body);
      padding: 0.6rem 0; border-bottom: 1px solid var(--border);
    }
    .chk {
      flex-shrink: 0; width: 1.25rem; height: 1.25rem;
      background: var(--accent-lt); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
    }

    /* PROCESS */
    #process { background: var(--bg); }
    .process-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
    }
    .proc-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 10px; padding: 1.75rem 1.5rem; position: relative;
    }
    .proc-card::after {
      content: '→';
      position: absolute; top: 50%; right: -1rem;
      transform: translateY(-50%);
      color: var(--muted); font-size: 0.9rem;
    }
    .proc-card:last-child::after { display: none; }
    .step-n {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.875rem;
    }
    .proc-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
    .proc-card p { font-size: 0.82rem; color: var(--body); line-height: 1.6; }

    /* FAQ */
    #faq { background: var(--white); }
    .faq-layout {
      display: grid; grid-template-columns: 1fr 2fr;
      gap: 5rem; align-items: start;
    }
    .faq-side p { font-size: 0.95rem; color: var(--body); margin-top: 0.875rem; line-height: 1.7; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; padding: 1.25rem 0;
      cursor: pointer; user-select: none;
      font-size: 0.975rem; font-weight: 500; color: var(--ink);
    }
    .faq-ico {
      flex-shrink: 0; width: 1.5rem; height: 1.5rem;
      border: 1.5px solid var(--border); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--accent);
      transition: transform 0.3s, background 0.2s, border-color 0.2s;
    }
    .faq-item.open .faq-ico {
      transform: rotate(45deg);
      background: var(--accent-lt); border-color: var(--accent-lt);
    }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      font-size: 0.9rem; color: var(--body); line-height: 1.75;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

    /* CTA */
    #contact {
      background: var(--ink); padding: 6rem 5vw;
      display: flex; align-items: center;
      justify-content: space-between; gap: 3rem; flex-wrap: wrap;
    }
    #contact h2 { color: #fff; margin-bottom: 0; }
    #contact .section-label { color: rgba(255,255,255,0.4); }
    .cta-right { display: flex; flex-direction: column; gap: 0.875rem; align-items: flex-start; }
    .cta-right p { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 360px; line-height: 1.7; }
    .btn-white {
      display: inline-block; background: #fff; color: var(--ink);
      font-size: 0.9rem; font-weight: 500;
      padding: 0.8rem 1.75rem; border-radius: 6px;
      text-decoration: none; transition: background 0.15s;
    }
    .btn-white:hover { background: var(--bg); }

    /* FOOTER */
    footer {
      padding: 1.75rem 5vw; border-top: 1px solid var(--border);
      background: var(--white);
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    footer p { font-size: 0.8rem; color: var(--muted); }
    footer a { color: var(--muted); text-decoration: none; }
    footer a:hover { color: var(--ink); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fu { animation: fadeUp 0.8s ease both; }
    .d1 { animation-delay: 0.05s; }
    .d2 { animation-delay: 0.15s; }
    .d3 { animation-delay: 0.28s; }
    .d4 { animation-delay: 0.4s;  }
    .d5 { animation-delay: 0.55s; }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      #hero { grid-template-columns: 1fr; padding-top: 7rem; gap: 3rem; }
      .hero-img-wrap { max-width: 480px; }
      .hero-badge { display: none; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      #about { grid-template-columns: 1fr; gap: 3rem; }
      .about-img { max-width: 460px; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .process-grid { grid-template-columns: 1fr; }
      .proc-card::after { display: none; }
      .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
      #contact { flex-direction: column; }
      .nav-links { display: none; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    }

 /* BREADCRUMB */
    .breadcrumb {
      padding: ;
      background: var(--white);
    }
    .breadcrumb-inner {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.8rem; color: var(--muted);
    }
    .breadcrumb-inner a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .breadcrumb-inner a:hover { color: var(--ink); }
    .breadcrumb-inner span { color: var(--border); }

    /* HERO */
    #hero {
      background: var(--white);
      padding: 3rem 5vw 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--accent-lt); color: var(--accent);
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
      padding: 0.35rem 0.85rem; border-radius: 100px;
      margin-bottom: 1.5rem;
    }
    h1 {
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 600; line-height: 1.1;
      letter-spacing: -0.03em; color: var(--ink);
      margin-bottom: 1.25rem;
    }
    .accent-word { color: var(--accent); }
    .hero-sub {
      font-size: 1.05rem; font-weight: 300; color: var(--body);
      max-width: 500px; margin-bottom: 2.5rem; line-height: 1.7;
    }
    .hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      display: inline-block; background: var(--accent); color: #fff;
      font-size: 0.9rem; font-weight: 500;
      padding: 0.8rem 1.75rem; border-radius: 6px;
      text-decoration: none; transition: background 0.15s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
    .btn-outline {
      display: inline-block;
      border: 1.5px solid var(--border); color: var(--ink);
      font-size: 0.9rem; font-weight: 500;
      padding: 0.8rem 1.75rem; border-radius: 6px;
      text-decoration: none; transition: border-color 0.15s;
    }
    .btn-outline:hover { border-color: #adb2bb; }

    /* Hero visual */
    .hero-visual {
      position: relative;
      animation: fadeUp 0.9s ease both 0.3s;
    }
    .hero-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }
    .hc-header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1rem 1.5rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .hc-dot { width: 10px; height: 10px; border-radius: 50%; }
    .hc-title { font-size: 0.8rem; font-weight: 500; color: var(--muted); margin-left: auto; }
    .hc-body { padding: 1.5rem; }
    .hc-metric-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .hc-metric {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem;
    }
    .hc-metric .m-val {
      font-size: 1.5rem; font-weight: 600;
      letter-spacing: -0.03em; color: var(--ink);
      line-height: 1;
    }
    .hc-metric .m-val.up { color: #16a34a; }
    .hc-metric .m-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }
    .hc-bar-section { }
    .hc-bar-label {
      display: flex; justify-content: space-between;
      font-size: 0.75rem; color: var(--muted);
      margin-bottom: 0.4rem; margin-top: 0.875rem;
    }
    .hc-bar-track {
      height: 6px; background: var(--border);
      border-radius: 99px; overflow: hidden;
    }
    .hc-bar-fill {
      height: 100%; border-radius: 99px;
      background: var(--accent);
      animation: barGrow 1.4s cubic-bezier(.4,0,.2,1) both;
    }
    .hc-bar-fill.green { background: #16a34a; }
    .hc-bar-fill.amber { background: #d97706; }
    @keyframes barGrow { from { width: 0; } }

    .hc-lead-row {
      display: flex; align-items: center; gap: 0.75rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      margin-top: 1rem;
    }
    .hc-lead-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #16a34a; flex-shrink: 0;
    }
    .hc-lead-name { font-size: 0.82rem; font-weight: 500; flex: 1; }
    .hc-lead-tag {
      font-size: 0.7rem; font-weight: 500; padding: 0.2rem 0.6rem;
      border-radius: 100px;
    }
    .hc-lead-tag.energy { background: #fef9c3; color: #713f12; }
    .hc-lead-tag.solar  { background: #dcfce7; color: #14532d; }
    .hc-lead-tag.fin    { background: var(--accent-lt); color: var(--accent); }
    .hc-lead-tag.tel    { background: #fce7f3; color: #831843; }
    .hc-lead-time { font-size: 0.72rem; color: var(--muted); }

    /* SECTORS */
    #sectors { padding: 6rem 5vw; background: var(--bg); }
    .section-label {
      font-size: 0.73rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 0.75rem;
    }
    h2 {
      font-size: clamp(1.75rem, 2.8vw, 2.5rem);
      font-weight: 600; letter-spacing: -0.025em;
      color: var(--ink); line-height: 1.15; margin-bottom: 1rem;
    }
    .section-intro { font-size: 1rem; color: var(--body); font-weight: 300; line-height: 1.7; }
    .section-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem;
    }
    .sectors-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    }
    .sector-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.75rem 1.5rem;
      transition: box-shadow 0.2s, transform 0.2s;
      position: relative; overflow: hidden;
    }
    .sector-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
    }
    .sector-card.energy::before  { background: #f59e0b; }
    .sector-card.broadband::before { background: #3b82f6; }
    .sector-card.telecoms::before  { background: #8b5cf6; }
    .sector-card.solar::before     { background: #10b981; }
    .sector-card.finance::before   { background: #ef4444; }.sector-card.homeservices::before   { background: #4a726d; }
    .sector-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .sector-icon {
      font-size: 1.75rem; margin-bottom: 1rem; display: block;
    }
    .sector-card h3 { font-size: 0.975rem; font-weight: 600; margin-bottom: 0.5rem; }
    .sector-card p { font-size: 0.82rem; color: var(--body); line-height: 1.6; }

    /* HOW IT WORKS */
    #how { padding: 6rem 5vw; background: var(--white); }
    .how-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    }
    .how-steps { }
    .how-step {
      display: flex; gap: 1.5rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
    }
    .how-step:last-child { border-bottom: none; }
    .step-num-box {
      flex-shrink: 0;
      width: 2.25rem; height: 2.25rem;
      background: var(--accent-lt);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 600;
      color: var(--accent);
    }
    .how-step h4 { font-size: 0.975rem; font-weight: 600; margin-bottom: 0.35rem; }
    .how-step p { font-size: 0.875rem; color: var(--body); line-height: 1.65; }
    .how-content { }
    .how-content h2 { margin-bottom: 1rem; }
    .how-content p { font-size: 0.95rem; color: var(--body); line-height: 1.75; margin-bottom: 1rem; }
    .quality-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
    }
    .q-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.25rem;
    }
    .q-card h5 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.35rem; }
    .q-card p { font-size: 0.8rem; color: var(--body); line-height: 1.6; }

    /* DELIVERY */
    #delivery { padding: 6rem 5vw; background: var(--bg); }
    .delivery-intro {
      max-width: 640px; margin-bottom: 3.5rem;
    }
    .delivery-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    }
    .del-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 2rem 1.75rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .del-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .del-icon {
      width: 2.75rem; height: 2.75rem;
      background: var(--accent-lt); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); margin-bottom: 1.25rem;
    }
    .del-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
    .del-card p { font-size: 0.875rem; color: var(--body); line-height: 1.65; }

    /* STATS BAND */
    .stats-band {
      background: var(--ink);
      padding: 4rem 5vw;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .s-stat { text-align: center; }
    .s-num {
      font-size: 2.4rem; font-weight: 600;
      color: #fff; letter-spacing: -0.03em;
      line-height: 1; display: block; margin-bottom: 0.4rem;
    }
    
    .s-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

    /* FAQ */
    #faq { padding: 6rem 5vw; background: var(--white); }
    .faq-layout {
      display: grid; grid-template-columns: 1fr 2fr;
      gap: 5rem; align-items: start;
    }
    .faq-side p { font-size: 0.95rem; color: var(--body); margin-top: 0.875rem; line-height: 1.7; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      gap: 1rem; padding: 1.25rem 0;
      cursor: pointer; user-select: none;
      font-size: 0.975rem; font-weight: 500; color: var(--ink);
    }
    .faq-ico {
      flex-shrink: 0; width: 1.5rem; height: 1.5rem;
      border: 1.5px solid var(--border); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--accent);
      transition: transform 0.3s, background 0.2s, border-color 0.2s;
    }
    .faq-item.open .faq-ico {
      transform: rotate(45deg);
      background: var(--accent-lt); border-color: var(--accent-lt);
    }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      font-size: 0.9rem; color: var(--body); line-height: 1.75;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

    /* CTA */
    #contact {
      background: var(--ink); padding: 6rem 5vw;
      display: flex; align-items: center;
      justify-content: space-between; gap: 3rem; flex-wrap: wrap;
    }
    #contact h2 { color: #fff; margin-bottom: 0; }
    #contact .section-label { color: rgba(255,255,255,0.4); }
    .cta-right { display: flex; flex-direction: column; gap: 0.875rem; align-items: flex-start; }
    .cta-right p { font-size: 0.95rem; color: rgba(255,255,255,0.55); max-width: 360px; line-height: 1.7; }
    .btn-white {
      display: inline-block; background: #fff; color: var(--ink);
      font-size: 0.9rem; font-weight: 500;
      padding: 0.8rem 1.75rem; border-radius: 6px;
      text-decoration: none; transition: background 0.15s;
    }
    .btn-white:hover { background: var(--bg); }

    /* FOOTER */
    footer {
      padding: 1.75rem 5vw; border-top: 1px solid var(--border);
      background: var(--white);
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    footer p { font-size: 0.8rem; color: var(--muted); }
    footer a { color: var(--muted); text-decoration: none; }
    footer a:hover { color: var(--ink); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fu  { animation: fadeUp 0.8s ease both; }
    .d1  { animation-delay: 0.05s; }
    .d2  { animation-delay: 0.15s; }
    .d3  { animation-delay: 0.28s; }
    .d4  { animation-delay: 0.4s;  }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .sectors-grid { grid-template-columns: repeat(3, 1fr); }
      .stats-band { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 960px) {
      #hero { grid-template-columns: 1fr; gap: 3rem; }
      .how-grid { grid-template-columns: 1fr; gap: 3rem; }
      .delivery-grid { grid-template-columns: 1fr 1fr; }
      .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
      #contact { flex-direction: column; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .nav-links { display: none; }
    }
    @media (max-width: 640px) {
      .sectors-grid { grid-template-columns: 1fr 1fr; }
      .delivery-grid { grid-template-columns: 1fr; }
      .quality-grid { grid-template-columns: 1fr; }
      .stats-band { grid-template-columns: 1fr 1fr; }
    }

@media (max-width: 960px) {
  nav {
    height: auto;
    flex-wrap: wrap;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    gap: 0.75rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    width: 100%;
    padding-bottom: 0.25rem;
    order: 3;
  }

  .nav-links a {
    font-size: 0.8rem;
  }
}