﻿    /* â”€â”€â”€ CSS Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    :root {
      --cyan:        #00D4FF;
      --cyan-dim:    #00A8CC;
      --cyan-glow:   rgba(0,212,255,0.18);
      --cyan-glow-s: rgba(0,212,255,0.07);
      --orange:      #FF6B35;
      --orange-dim:  #CC5528;
      --charcoal:    #1A2332;
      --base:        #0E1724;
      --surface:     #162436;
      --float:       #172030;
      --white:       #FFFFFF;
      --muted:       rgba(255,255,255,0.55);
      --muted-dim:   rgba(255,255,255,0.35);

      --shadow-card:
        0 1px 2px rgba(0,0,0,0.65),
        0 4px 20px rgba(0,0,0,0.45),
        0 0 40px rgba(0,212,255,0.04);
      --shadow-glow:
        0 0 14px rgba(0,212,255,0.5),
        0 0 40px rgba(0,212,255,0.2),
        0 0 90px rgba(0,212,255,0.07);
      --shadow-btn-cyan:
        0 2px 10px rgba(0,0,0,0.5),
        0 0 22px rgba(0,212,255,0.3);
      --shadow-btn-orange:
        0 2px 10px rgba(0,0,0,0.5),
        0 0 22px rgba(255,107,53,0.28);

      --radius-card: 0.625rem;
      --radius-btn:  0.3rem;

      --nav-h: 68px;
    }

    /* â”€â”€â”€ Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background-color: var(--base);
      background-image:
        radial-gradient(ellipse 90% 55% at 5% 0%,   rgba(0,212,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 45% at 95% 15%,  rgba(0,212,255,0.05) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255,107,53,0.04) 0%, transparent 55%);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* Skip to content */
    .skip-link {
      position: absolute; top: -100%; left: 1rem;
      background: var(--cyan); color: var(--base);
      padding: 0.5rem 1rem; border-radius: var(--radius-btn);
      font-family: 'Exo 2', sans-serif; font-weight: 700;
      font-size: 0.875rem; z-index: 9999;
    }
    .skip-link:focus { top: 1rem; }

    /* â”€â”€â”€ Grain Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #grain {
      position: fixed; inset: 0; z-index: 1;
      pointer-events: none; opacity: 0.032;
    }

    /* â”€â”€â”€ Typography Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .font-head    { font-family: 'Rajdhani', sans-serif; }
    .font-display { font-family: 'Exo 2', sans-serif; }

    .eyebrow {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--white);
    }

    /* â”€â”€â”€ Divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .cyan-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
      opacity: 0.2;
      max-width: 480px;
      margin: 0 auto;
    }

    /* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .btn-cyan {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.875rem;
      background: transparent;
      color: var(--cyan);
      border: 1.5px solid var(--cyan);
      border-radius: var(--radius-btn);
      font-family: 'Exo 2', sans-serif;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.09em; text-transform: uppercase;
      text-decoration: none;
      box-shadow: var(--shadow-btn-cyan);
      cursor: pointer;
      transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
    }
    .btn-cyan:hover {
      background: var(--cyan); color: var(--base);
      box-shadow: var(--shadow-glow); transform: translateY(-2px);
    }
    .btn-cyan:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
    .btn-cyan:active { transform: translateY(0) scale(0.98); }

    .btn-orange {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.875rem;
      background: var(--orange);
      color: var(--white);
      border: 1.5px solid var(--orange);
      border-radius: var(--radius-btn);
      font-family: 'Exo 2', sans-serif;
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.09em; text-transform: uppercase;
      text-decoration: none;
      box-shadow: var(--shadow-btn-orange);
      cursor: pointer;
      transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
    }
    .btn-orange:hover {
      background: var(--orange-dim);
      box-shadow: 0 0 30px rgba(255,107,53,0.5); transform: translateY(-2px);
    }
    .btn-orange:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
    .btn-orange:active { transform: translateY(0) scale(0.98); }

    /* â”€â”€â”€ Glow borders â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .glow-border {
      border: 1px solid var(--cyan);
      box-shadow: var(--shadow-glow);
    }
    .glow-border-subtle {
      border: 1px solid rgba(0,212,255,0.2);
      box-shadow: 0 0 24px rgba(0,212,255,0.07);
    }

    /* â”€â”€â”€ Scroll Reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    /* Default: visible. JS progressively enhances with animation. */
    .reveal { opacity: 1; transform: none; }
    .reveal-armed {
      opacity: 0 !important;
      transform: translateY(28px) !important;
      transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1) !important;
    }
    .reveal-armed[style*="--delay"] { transition-delay: var(--delay, 0s) !important; }
    .reveal-armed.reveal-visible { opacity: 1 !important; transform: translateY(0) !important; }

    /* â”€â”€â”€ Keyframes â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulseGlow {
      0%, 100% { filter: drop-shadow(0 0 8px rgba(0,212,255,0.55)) drop-shadow(0 0 30px rgba(0,212,255,0.2)); }
      50%       { filter: drop-shadow(0 0 22px rgba(0,212,255,0.95)) drop-shadow(0 0 60px rgba(0,212,255,0.4)); }
    }
    @keyframes hexSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes hexSpinReverse {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }
    @keyframes scanLine {
      from { transform: translateY(-120%); }
      to   { transform: translateY(500%); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .anim-fade-up-1 { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
    .anim-fade-up-2 { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
    .anim-fade-up-3 { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
    .anim-fade-up-4 { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
    .anim-fade-up-5 { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.65s both; }
    .anim-fade-up-6 { animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) 0.3s both; }

    .pulse-glow { animation: pulseGlow 3.5s ease-in-out infinite; }
    .hex-spin   { animation: hexSpin 18s linear infinite; }
    .hex-spin-r { animation: hexSpinReverse 24s linear infinite; }

    /* â”€â”€â”€ Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      background: rgba(13,21,32,0.75);
      backdrop-filter: blur(14px) saturate(1.5);
      -webkit-backdrop-filter: blur(14px) saturate(1.5);
      border-bottom: 1px solid rgba(0,212,255,0.08);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    #navbar.scrolled {
      background: rgba(13,21,32,0.96);
      box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 rgba(0,212,255,0.12);
    }
    .nav-inner {
      max-width: 1240px; margin: 0 auto;
      height: 100%;
      padding: 0 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem;
    }
    .nav-logo img { height: 44px; width: auto; display: block; }
    .nav-logo { text-decoration: none; flex-shrink: 0; }

    .nav-links {
      display: flex; align-items: center; gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s ease;
      position: relative;
      padding-bottom: 2px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
      height: 1.5px; background: var(--cyan);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.25s ease;
    }
    .nav-links a:hover { color: var(--cyan); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--cyan); }
    .nav-links a:focus-visible { outline: 2px solid var(--cyan); border-radius: 2px; }

    .nav-phone {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--cyan);
      text-decoration: none;
      display: flex; align-items: center; gap: 0.4rem;
      transition: color 0.2s ease, opacity 0.2s ease;
      white-space: nowrap;
    }
    .nav-phone:hover { opacity: 0.8; }
    .nav-phone:focus-visible { outline: 2px solid var(--cyan); border-radius: 2px; }

    .nav-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }

    /* Hamburger */
    #menu-toggle {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 36px; height: 36px;
      background: none; border: none; cursor: pointer; padding: 4px;
      border-radius: 4px;
    }
    #menu-toggle:focus-visible { outline: 2px solid var(--cyan); }
    #menu-toggle span {
      display: block; height: 2px; background: var(--white); border-radius: 2px;
      transition: transform 0.28s ease, opacity 0.28s ease;
    }
    #menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    #menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    #mobile-menu {
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: rgba(13,21,32,0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,212,255,0.1);
      padding: 1.5rem;
      z-index: 99;
    }
    #mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
    #mobile-menu ul a {
      font-family: 'Exo 2', sans-serif; font-weight: 600;
      font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.8); text-decoration: none;
      display: block; padding: 0.625rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s ease;
    }
    #mobile-menu ul a:hover { color: var(--cyan); }

    /* â”€â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #home {
      position: relative; z-index: 2;
      min-height: 100vh;
      display: flex; align-items: center;
      padding-top: var(--nav-h);
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 15% 40%, rgba(0,212,255,0.06) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 20%, rgba(0,212,255,0.04) 0%, transparent 60%);
    }

    /* Circuit dot grid */
    .hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image: radial-gradient(circle, rgba(0,212,255,0.12) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
      opacity: 0.25;
    }

    /* Scan line */
    .hero-scan {
      position: absolute; left: 0; right: 0; height: 2px; z-index: 0;
      background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
      opacity: 0.04;
      animation: scanLine 8s ease-in-out infinite;
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 1240px; margin: 0 auto;
      padding: 5rem 1.5rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .hero-left { display: flex; flex-direction: column; gap: 1.75rem; }

    .hero-label {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--cyan);
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-label::before {
      content: '';
      display: inline-block; width: 32px; height: 1px;
      background: var(--cyan); opacity: 0.7;
    }

    .hero-h1 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: clamp(2.8rem, 5.5vw, 4.8rem);
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--white);
    }
    .hero-h1 .accent { color: var(--cyan); }

    .hero-sub {
      font-size: 1.05rem; line-height: 1.75;
      color: rgba(255,255,255,0.6);
      max-width: 460px;
    }

    .hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

    .hero-phone {
      display: flex; align-items: center; gap: 0.6rem;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.3rem; font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--cyan);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }
    .hero-phone:hover { opacity: 0.75; }
    .hero-phone:focus-visible { outline: 2px solid var(--cyan); border-radius: 2px; }
    .hero-phone svg { flex-shrink: 0; }

    /* Hero right â€” logo display */
    .hero-right {
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }

    .logo-stage {
      position: relative;
      width: 440px; height: 440px;
      display: flex; align-items: center; justify-content: center;
    }

    .logo-stage img {
      width: 320px; height: 320px;
      object-fit: contain;
      position: relative; z-index: 2;
    }
    .logo-stage img.pulse-glow { /* applied on img itself */ }

    /* Rotating hex rings */
    .hex-ring {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hex-ring svg { position: absolute; }

    /* Decorative large hex shapes â€” background deco */
    .deco-hex {
      position: absolute; pointer-events: none; z-index: 0;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      border: 1px solid rgba(0,212,255,0.07);
      background: rgba(0,212,255,0.02);
    }

    /* â”€â”€â”€ Section Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .section-wrap {
      position: relative; z-index: 2;
      max-width: 1240px; margin: 0 auto;
      padding: 0 1.5rem;
    }

    section { position: relative; overflow: hidden; }

    .section-pad { padding: 6rem 0; }
    .section-pad-sm { padding: 4.5rem 0; }

    /* Section header */
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .section-header .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-top: 0.5rem; }
    .section-header p { color: var(--muted); margin-top: 0.875rem; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1rem; }

    /* â”€â”€â”€ O Firmie â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #o-firmie { background: var(--surface); }
    #o-firmie::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 55% 50% at 90% 30%, rgba(0,212,255,0.04) 0%, transparent 65%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text { display: flex; flex-direction: column; gap: 1.25rem; }
    .about-text .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); text-align: left; }

    .about-text p { color: rgba(255,255,255,0.62); font-size: 0.975rem; line-height: 1.78; }

    .stats-row {
      display: flex; gap: 0; margin-top: 0.5rem;
      border: 1px solid rgba(0,212,255,0.15);
      border-radius: var(--radius-card);
      overflow: hidden;
      background: var(--base);
    }
    .stat-item {
      flex: 1; padding: 1.1rem 1rem; text-align: center;
      border-right: 1px solid rgba(0,212,255,0.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.85rem; font-weight: 700;
      color: var(--cyan); display: block; line-height: 1;
    }
    .stat-label {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted); margin-top: 0.25rem; display: block;
    }

    /* SEP badge */
    .sep-badge {
      display: flex; align-items: flex-start; gap: 0.875rem;
      background: linear-gradient(135deg, rgba(0,212,255,0.07) 0%, rgba(0,212,255,0.03) 100%);
      border: 1px solid rgba(0,212,255,0.22);
      border-left: 3px solid var(--cyan);
      border-radius: var(--radius-card);
      padding: 1rem 1.125rem;
      margin-bottom: 0.25rem;
    }
    .sep-badge-icon {
      flex-shrink: 0; color: var(--cyan); margin-top: 0.1rem;
      filter: drop-shadow(0 0 6px rgba(0,212,255,0.5));
    }
    .sep-badge-text { display: flex; flex-direction: column; gap: 0.3rem; }
    .sep-badge-title {
      font-family: 'Exo 2', sans-serif; font-weight: 700;
      font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
      color: var(--cyan);
    }
    .sep-badge-desc {
      font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6;
    }

    /* About image â€” hex-clipped */
    .about-image-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .about-hex-frame {
      position: relative;
      width: 100%;
      max-width: 460px;
      aspect-ratio: 1 / 1;
    }
    .about-hex-frame img {
      width: 100%; height: 100%;
      object-fit: cover;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    }
    .about-hex-overlay {
      position: absolute; inset: 0;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      background: linear-gradient(to bottom, transparent 35%, rgba(13,21,32,0.75) 100%);
    }
    .about-hex-color {
      position: absolute; inset: 0;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      background: var(--cyan);
      mix-blend-mode: multiply;
      opacity: 0.12;
    }
    .about-hex-border {
      position: absolute; inset: -3px;
      background: transparent;
    }

    /* â”€â”€â”€ KorzyĹ›ci â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #korzysci {
      background: var(--base);
    }
    #korzysci::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0,212,255,0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .benefit-card {
      background: var(--surface);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius-card);
      padding: 1.875rem 1.5rem;
      display: flex; flex-direction: column; gap: 1rem;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .benefit-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0,212,255,0.35);
      box-shadow: var(--shadow-card), 0 0 32px rgba(0,212,255,0.1);
    }

    .benefit-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      background: rgba(0,212,255,0.12);
      display: flex; align-items: center; justify-content: center;
    }
    .benefit-icon svg { width: 22px; height: 22px; color: var(--cyan); }

    .benefit-title {
      font-family: 'Exo 2', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--white); line-height: 1.25;
    }
    .benefit-desc {
      font-size: 0.9rem; color: var(--muted); line-height: 1.65;
    }

    /* â”€â”€â”€ UsĹ‚ugi â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #uslugi { background: var(--surface); }
    #uslugi::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, var(--base) 0%, transparent 10%),
        linear-gradient(to top, var(--base) 0%, transparent 10%);
      pointer-events: none; z-index: 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 0.75rem;
    }
    .featured-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 2.25rem;
    }
    .featured-service-card {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      background: var(--base);
      border: 1px solid rgba(0,212,255,0.11);
      border-radius: var(--radius-card);
      overflow: hidden;
      color: inherit;
      text-decoration: none;
      box-shadow: var(--shadow-card);
      transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }
    .featured-service-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0,212,255,0.34);
      background: rgba(0,212,255,0.035);
    }
    .featured-service-card picture,
    .featured-service-card img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
    }
    .featured-service-card img {
      height: 100%;
      object-fit: cover;
    }
    .featured-service-kicker {
      margin: 1rem 1.1rem 0.45rem;
      font-family: 'Exo 2', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cyan);
    }
    .featured-service-card h3 {
      margin: 0 1.1rem 0.55rem;
      font-family: 'Exo 2', sans-serif;
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--white);
    }
    .featured-service-card p {
      margin: 0 1.1rem 1.15rem;
      color: rgba(255,255,255,0.62);
      font-size: 0.9rem;
      line-height: 1.65;
    }
    .service-list-heading {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1rem;
      margin: 0 0 1rem;
      padding-top: 0.25rem;
    }
    .service-list-heading h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
    }
    .service-list-heading p {
      max-width: 420px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.55;
      text-align: right;
    }

    .service-tile {
      background: var(--base);
      border: 1px solid rgba(0,212,255,0.09);
      border-radius: 0.5rem;
      padding: 1rem 1rem;
      display: flex; align-items: center; gap: 0.75rem;
      position: relative; overflow: hidden;
      transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
      color: var(--white);
      text-decoration: none;
      cursor: default;
    }
    a.service-tile { cursor: pointer; }
    .service-tile::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
      background: var(--cyan);
      transform: scaleY(0); transform-origin: top;
      transition: transform 0.22s ease;
    }
    .service-tile:hover {
      border-color: rgba(0,212,255,0.3);
      background: rgba(0,212,255,0.04);
      transform: translateX(4px);
    }
    .service-tile:hover::before { transform: scaleY(1); }

    .service-tile svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; }
    .service-tile span {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.88rem; font-weight: 600;
      color: rgba(255,255,255,0.88); line-height: 1.3;
    }

    /* Najczęstsze problemy */
    #problemy {
      background: var(--base);
    }
    #problemy::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 52% 48% at 82% 28%, rgba(255,107,53,0.035) 0%, transparent 65%),
        radial-gradient(ellipse 60% 55% at 12% 82%, rgba(0,212,255,0.035) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .problems-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .problem-card {
      min-height: 218px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 0.7rem;
      padding: 1.25rem;
      background: rgba(22,36,54,0.68);
      border: 1px solid rgba(0,212,255,0.11);
      border-radius: var(--radius-card);
      color: inherit;
      text-decoration: none;
      box-shadow: var(--shadow-card);
      transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }
    .problem-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0,212,255,0.33);
      background: rgba(0,212,255,0.055);
    }
    .problem-card-urgent {
      border-color: rgba(255,107,53,0.22);
      background: linear-gradient(135deg, rgba(255,107,53,0.085), rgba(22,36,54,0.68));
    }
    .problem-label {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange);
    }
    .problem-card h3 {
      font-family: 'Exo 2', sans-serif;
      font-size: 1.04rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--white);
    }
    .problem-card p {
      color: rgba(255,255,255,0.62);
      font-size: 0.9rem;
      line-height: 1.65;
    }

    /* Obsługiwane lokalizacje */
    #lokalizacje {
      background: var(--base);
    }
    #lokalizacje::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 55% at 15% 35%, rgba(0,212,255,0.045) 0%, transparent 65%),
        radial-gradient(ellipse 40% 45% at 88% 60%, rgba(255,107,53,0.035) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    /* Blog / poradnik */
    #poradnik {
      background: var(--surface);
    }
    #poradnik::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, var(--base) 0%, transparent 12%),
        linear-gradient(to top, var(--base) 0%, transparent 12%);
      pointer-events: none;
      z-index: 0;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .blog-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 0.85rem;
      padding: 1.4rem;
      background: rgba(14,23,36,0.82);
      border: 1px solid rgba(0,212,255,0.12);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      color: inherit;
      text-decoration: none;
      transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }
    .blog-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0,212,255,0.34);
      background: rgba(0,212,255,0.055);
    }
    .blog-card-meta {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cyan);
    }
    .blog-card h3 {
      font-family: 'Exo 2', sans-serif;
      font-size: 1.08rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--white);
    }
    .blog-card p {
      color: rgba(255,255,255,0.58);
      font-size: 0.9rem;
      line-height: 1.65;
    }
    .blog-article h2 {
      margin-top: 2rem;
    }
    .blog-article h2:first-of-type {
      margin-top: 1.2rem;
    }
    .article-intro {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.72) !important;
    }

    /* â”€â”€â”€ Jak Pracujemy â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #jak-pracujemy { background: var(--base); }
    #jak-pracujemy::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,212,255,0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .steps-wrapper {
      position: relative;
    }

    /* Connecting line */
    .steps-line {
      position: absolute; top: 38px; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--cyan) 25%, var(--cyan) 75%, transparent 100%);
      opacity: 0.2;
      z-index: 0;
    }

    .steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem; position: relative; z-index: 1;
    }

    .step-card {
      background: var(--surface);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius-card);
      padding: 1.75rem 1.25rem 1.5rem;
      position: relative;
      box-shadow: var(--shadow-card);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-card), 0 0 28px rgba(0,212,255,0.1);
      border-color: rgba(0,212,255,0.3);
    }

    .step-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 4rem; font-weight: 700;
      color: rgba(0,212,255,0.1);
      line-height: 1;
      position: absolute; top: 0.75rem; right: 1rem;
      pointer-events: none;
      user-select: none;
    }

    .step-icon {
      width: 52px; height: 52px;
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      background: rgba(0,212,255,0.12);
      border: 1px solid rgba(0,212,255,0.25);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .step-icon svg { width: 24px; height: 24px; color: var(--cyan); }

    .step-title {
      font-family: 'Exo 2', sans-serif;
      font-size: 1rem; font-weight: 700;
      color: var(--white); margin-bottom: 0.5rem; line-height: 1.25;
    }
    .step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

    /* Step node circle on connecting line */
    .step-node {
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 10px rgba(0,212,255,0.7);
      position: absolute; top: -5px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    /* â”€â”€â”€ Galeria â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #galeria { background: var(--surface); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 0.875rem;
    }

    .gallery-item {
      position: relative; overflow: hidden;
      border-radius: 0.5rem;
      border: 1px solid rgba(0,212,255,0.08);
      background: var(--charcoal);
    }
    .gallery-item.large { grid-row: span 2; }
    .gallery-item img, .gallery-item-bg {
      width: 100%; height: 100%; min-height: 200px;
      object-fit: cover; display: block;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
    }
    .gallery-item-bg {
      background: var(--charcoal);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Exo 2', sans-serif; font-size: 0.75rem;
      font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(0,212,255,0.4);
    }
    .gallery-placeholder {
      width: 100%; height: 100%; min-height: 200px;
      display: block;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .gallery-item.large .gallery-placeholder { min-height: 414px; }
    .gallery-label {
      position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
      font-family: 'Exo 2', sans-serif; font-size: 0.68rem;
      font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(0,212,255,0.55); white-space: nowrap;
      z-index: 2; pointer-events: none;
    }
    .gallery-label.orange { color: rgba(255,107,53,0.65); }
    .gallery-item:hover img, .gallery-item:hover .gallery-item-bg,
    .gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
    .gallery-item::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,21,32,0.75) 0%, transparent 55%);
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .gallery-item:hover::after { opacity: 0.5; }
    .gallery-color {
      position: absolute; inset: 0;
      background: var(--cyan);
      mix-blend-mode: multiply;
      opacity: 0.08;
      pointer-events: none;
    }

    /* â”€â”€â”€ Realizacje â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #realizacje { background: var(--base); }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .project-card {
      background: var(--surface);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none; color: inherit;
      display: block;
    }
    .project-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-card), 0 14px 40px rgba(0,0,0,0.45), 0 0 32px rgba(0,212,255,0.08);
    }

    .card-img-wrap { position: relative; height: 200px; overflow: hidden; }
    .card-img-wrap img, .card-img-bg { width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.45s ease; }
    .card-img-bg {
      display: flex; align-items: center; justify-content: center;
      font-family: 'Exo 2', sans-serif; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,212,255,0.3);
    }
    .project-card:hover .card-img-wrap img,
    .project-card:hover .card-img-bg { transform: scale(1.06); }
    .card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,21,32,0.9) 0%, rgba(13,21,32,0.15) 60%, transparent 100%);
    }
    .card-tag {
      position: absolute; top: 0.875rem; right: 0.875rem;
      background: rgba(0,212,255,0.12);
      border: 1px solid rgba(0,212,255,0.35);
      color: var(--cyan);
      font-family: 'Exo 2', sans-serif; font-size: 0.68rem;
      font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.2rem 0.6rem; border-radius: 0.25rem;
    }
    .card-body { padding: 1.25rem; }
    .card-body h3 {
      font-family: 'Exo 2', sans-serif; font-weight: 700;
      font-size: 0.975rem; color: var(--white); margin-bottom: 0.375rem;
      line-height: 1.3;
    }
    .card-body p { font-size: 0.825rem; color: var(--muted); }

    /* â”€â”€â”€ Opinie â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #opinie { background: var(--surface); }
    #opinie::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 40% 50% at 80% 50%, rgba(255,107,53,0.03) 0%, transparent 65%);
      pointer-events: none;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .testimonial-card {
      background: var(--base);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius-card);
      padding: 1.75rem;
      position: relative;
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: border-color 0.28s ease, box-shadow 0.28s ease;
    }
    .testimonial-card:hover {
      border-color: rgba(0,212,255,0.25);
      box-shadow: var(--shadow-card), 0 0 24px rgba(0,212,255,0.07);
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: Georgia, serif;
      font-size: 7rem; line-height: 1;
      color: var(--cyan); opacity: 0.1;
      position: absolute; top: -0.5rem; left: 1rem;
      pointer-events: none; user-select: none;
    }

    .testimonial-stars {
      font-size: 0.875rem; letter-spacing: 0.05em;
      color: var(--orange); margin-bottom: 0.875rem;
    }
    .testimonial-text {
      font-size: 0.925rem; line-height: 1.7;
      color: rgba(255,255,255,0.72);
      margin-bottom: 1.25rem;
      position: relative; z-index: 1;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 0.75rem;
    }
    .author-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      border: 1.5px solid rgba(0,212,255,0.35);
      overflow: hidden; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(0,212,255,0.13), rgba(0,212,255,0.03));
      color: var(--cyan);
      font-family: 'Exo 2', sans-serif;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      box-shadow: 0 0 20px rgba(0,212,255,0.08);
    }
    .author-avatar-warm {
      border-color: rgba(255,107,53,0.38);
      background: linear-gradient(135deg, rgba(255,107,53,0.16), rgba(255,107,53,0.04));
      color: var(--orange);
      box-shadow: 0 0 20px rgba(255,107,53,0.08);
    }
    .author-name {
      font-family: 'Exo 2', sans-serif; font-weight: 700;
      font-size: 0.875rem; color: var(--white);
    }
    .author-sub { font-size: 0.75rem; color: var(--muted); }

    /* â”€â”€â”€ Kontakt â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #kontakt { background: var(--base); }
    #kontakt::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 0% 100%, rgba(0,212,255,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info { display: flex; flex-direction: column; gap: 2rem; }

    .contact-info .section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); text-align: left; }

    .contact-logo { max-width: 120px; height: auto; object-fit: contain; }

    .contact-big-phone {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
      color: var(--cyan); text-decoration: none;
      letter-spacing: 0.04em;
      display: flex; align-items: center; gap: 0.5rem;
      transition: opacity 0.2s ease;
    }
    .contact-big-phone:hover { opacity: 0.75; }
    .contact-big-phone:focus-visible { outline: 2px solid var(--cyan); border-radius: 2px; }

    .contact-items { display: flex; flex-direction: column; gap: 0.875rem; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 0.875rem;
      color: rgba(255,255,255,0.65); font-size: 0.95rem;
    }
    .contact-item svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
    .contact-item strong { color: var(--white); display: block; margin-bottom: 0.1rem;
      font-family: 'Exo 2', sans-serif; font-size: 0.8rem;
      letter-spacing: 0.08em; text-transform: uppercase; }

    /* Form */
    .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--muted);
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      background: var(--surface);
      border: 1px solid rgba(0,212,255,0.18);
      border-radius: var(--radius-btn);
      color: var(--white);
      padding: 0.8rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      transition: border-color 0.22s ease, box-shadow 0.22s ease;
      outline: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 130px; }

    #form-status {
      font-family: 'Exo 2', sans-serif; font-size: 0.875rem;
      font-weight: 600; padding: 0.75rem 1rem;
      border-radius: var(--radius-btn); text-align: center;
    }
    #form-status.success {
      background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
      color: var(--cyan);
    }
    #form-status.error {
      background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.3);
      color: var(--orange);
    }

    /* â”€â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      position: relative; z-index: 2;
      background: var(--surface);
      border-top: 1px solid rgba(0,212,255,0.1);
    }

    .footer-inner {
      max-width: 1240px; margin: 0 auto;
      padding: 3rem 1.5rem 2rem;
      display: grid; grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(140px, 1fr));
      gap: 3rem;
    }

    .footer-brand { display: flex; flex-direction: column; gap: 1rem; }
    .footer-brand img { max-height: 52px; width: auto; object-fit: contain; }
    .footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; max-width: 300px; }

    .footer-col h4 {
      font-family: 'Exo 2', sans-serif; font-weight: 700;
      font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--cyan); margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
    .footer-col ul a {
      font-size: 0.875rem; color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-col ul a:hover { color: var(--white); }
    .footer-col ul li { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

    .footer-bottom {
      max-width: 1240px; margin: 0 auto;
      padding: 1.25rem 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 0.5rem;
    }
    .footer-bottom p {
      font-size: 0.8rem; color: rgba(255,255,255,0.3);
      font-family: 'Exo 2', sans-serif; letter-spacing: 0.04em;
    }

    /* Service landing pages */
    .subpage-main {
      position: relative;
      z-index: 2;
      padding-top: var(--nav-h);
      overflow: hidden;
    }
    .subpage-hero {
      position: relative;
      min-height: 72vh;
      display: flex;
      align-items: center;
      padding: 6rem 0 4rem;
      background:
        radial-gradient(ellipse 70% 60% at 12% 30%, rgba(0,212,255,0.08) 0%, transparent 65%),
        radial-gradient(ellipse 45% 40% at 90% 20%, rgba(255,107,53,0.05) 0%, transparent 60%);
    }
    .subpage-hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 4rem;
      align-items: center;
      z-index: 1;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.4rem;
      font-family: 'Exo 2', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
    }
    .breadcrumb a {
      color: var(--cyan);
      text-decoration: none;
    }
    .subpage-kicker {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 1rem;
    }
    .subpage-h1 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: clamp(2.6rem, 5.2vw, 4.6rem);
      line-height: 1.02;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 820px;
    }
    .subpage-lead {
      margin-top: 1.4rem;
      max-width: 650px;
      color: rgba(255,255,255,0.64);
      font-size: 1.03rem;
      line-height: 1.75;
    }
    .subpage-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .service-summary {
      background: rgba(22,36,54,0.76);
      border: 1px solid rgba(0,212,255,0.16);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      padding: 1.4rem;
    }
    .service-summary-with-image {
      overflow: hidden;
      padding: 0;
    }
    .service-summary-with-image h2,
    .service-summary-with-image .summary-list {
      margin-left: 1.4rem;
      margin-right: 1.4rem;
    }
    .service-summary-with-image .summary-list {
      margin-bottom: 1.4rem;
    }
    .service-hero-image {
      width: 100%;
      aspect-ratio: 16 / 10;
      margin: 0 0 1.2rem;
      overflow: hidden;
      background: rgba(0,0,0,0.22);
    }
    .service-hero-image picture,
    .service-hero-image img {
      width: 100%;
      height: 100%;
      display: block;
    }
    .service-hero-image img {
      object-fit: cover;
    }
    .service-summary h2 {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .summary-list {
      display: grid;
      gap: 0.85rem;
      list-style: none;
    }
    .summary-list li {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      color: rgba(255,255,255,0.68);
      font-size: 0.92rem;
      line-height: 1.55;
    }
    .summary-list li::before {
      content: '';
      width: 0.45rem;
      height: 0.45rem;
      margin-top: 0.55rem;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(0,212,255,0.55);
    }
    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
      gap: 2rem;
      align-items: start;
    }
    .content-panel {
      background: rgba(22,36,54,0.55);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius-card);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
    }
    .content-panel h2,
    .content-panel h3 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      line-height: 1.12;
      color: var(--white);
    }
    .content-panel h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
    .content-panel h3 { font-size: 1.35rem; margin: 1.6rem 0 0.7rem; }
    .content-panel p {
      color: rgba(255,255,255,0.64);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .check-list {
      display: grid;
      gap: 0.75rem;
      list-style: none;
      margin: 1rem 0;
    }
    .check-list li {
      position: relative;
      padding-left: 1.5rem;
      color: rgba(255,255,255,0.68);
      line-height: 1.65;
    }
    .check-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--cyan);
      font-weight: 700;
    }
    .service-aside {
      position: sticky;
      top: calc(var(--nav-h) + 1.25rem);
      display: grid;
      gap: 1rem;
    }
    .aside-card {
      background: rgba(14,23,36,0.86);
      border: 1px solid rgba(0,212,255,0.13);
      border-radius: var(--radius-card);
      padding: 1.25rem;
      box-shadow: var(--shadow-card);
    }
    .aside-card h3 {
      font-family: 'Exo 2', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .aside-card p,
    .aside-card li {
      color: rgba(255,255,255,0.62);
      font-size: 0.9rem;
      line-height: 1.65;
    }
    .aside-card ul {
      list-style: none;
      display: grid;
      gap: 0.45rem;
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .related-link {
      display: flex;
      min-height: 112px;
      align-items: flex-end;
      padding: 1rem;
      background: rgba(22,36,54,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius-card);
      color: var(--white);
      font-family: 'Exo 2', sans-serif;
      font-weight: 700;
      line-height: 1.25;
      text-decoration: none;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }
    .related-link:hover {
      transform: translateY(-4px);
      border-color: rgba(0,212,255,0.35);
      background: rgba(0,212,255,0.06);
    }
    .local-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .local-service-card {
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.1rem;
      background: rgba(14,23,36,0.82);
      border: 1px solid rgba(0,212,255,0.12);
      border-radius: var(--radius-card);
      color: inherit;
      text-decoration: none;
      box-shadow: var(--shadow-card);
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }
    .local-service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,212,255,0.34);
      background: rgba(0,212,255,0.055);
    }
    .local-service-card span {
      font-family: 'Exo 2', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.25;
      color: var(--white);
    }
    .local-service-card small {
      color: rgba(255,255,255,0.62);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    /* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1024px) {
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-line { display: none; }
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .featured-services-grid,
      .problems-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: span 2; }
      .subpage-hero-grid,
      .content-grid { grid-template-columns: 1fr; }
      .service-aside { position: static; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }
      .local-services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-phone { display: none; }
      #menu-toggle { display: flex; }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem 3rem;
        gap: 2.5rem;
      }
      .hero-right { order: -1; }
      .logo-stage { width: 220px; height: 220px; }
      .logo-stage img { width: 150px; height: 150px; }
      .hero-ctas { justify-content: center; }
      .hero-label { justify-content: center; }
      .hero-phone { justify-content: center; }
      .hero-sub { margin: 0 auto; }

      .about-grid { grid-template-columns: 1fr; }
      .about-image-wrap { display: none; }
      .about-text .section-title { text-align: center; }
      .about-text { text-align: center; }
      .stats-row { margin-top: 0; }

      .benefits-grid { grid-template-columns: 1fr; }
      .featured-services-grid,
      .problems-grid { grid-template-columns: 1fr; }
      .service-list-heading {
        display: grid;
        justify-items: center;
        text-align: center;
      }
      .service-list-heading p { text-align: center; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item.large { grid-row: span 1; }
      .projects-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .contact-info { text-align: center; align-items: center; }
      .contact-items { text-align: left; align-self: stretch; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-brand { grid-column: span 1; }
      .footer-bottom { justify-content: center; text-align: center; }
      .subpage-hero { min-height: auto; padding: 4rem 0 3rem; }
      .subpage-actions { flex-direction: column; }
      .subpage-actions .btn-cyan,
      .subpage-actions .btn-orange { width: 100%; justify-content: center; }
    }

    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; }
      .btn-cyan, .btn-orange { width: 100%; justify-content: center; }
      .related-grid { grid-template-columns: 1fr; }
      .local-services-grid { grid-template-columns: 1fr; }
      .content-panel,
      .service-summary,
      .aside-card { padding: 1rem; }
    }

    /* â”€â”€â”€ Sekcja oĹ›wietlenia â€“ responsywne gridy â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .lighting-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 3rem;
    }
    .lighting-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    @media (max-width: 768px) {
      .lighting-features-grid { grid-template-columns: 1fr; }
      .lighting-gallery-grid  { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .lighting-gallery-grid { grid-template-columns: 1fr; }
    }

    /* â”€â”€â”€ Micro breakpoint 375px (iPhone SE itp.) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 375px) {
      .hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
      .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
      .logo-stage { width: 180px; height: 180px; }
      .logo-stage img { width: 120px; height: 120px; }
      .section-wrap { padding-inline: 1rem; }
      .stats-row { gap: 1rem; }
    }
