    /* ============================================================
       CSS CUSTOM PROPERTIES
    ============================================================ */
    :root {
      /* Light sections */
      --bg:          #ffffff;
      --bg-2:        #f8f8f8;
      --bg-card:     #ffffff;
      --bg-card-h:   #f3f3f3;

      /* Dark sections – pure black */
      --dark:        #0a0a0a;
      --dark-2:      #141414;
      --dark-card:   #1a1a1a;

      /* Accent – twilight blue */
      --blue:        #1e3a5f;
      --blue-lt:     #4a7ba7;
      --blue-dk:     #0f2538;
      --blue-glow:   rgba(30,58,95,.3);
      --blue-subtle: rgba(30,58,95,.12);

      /* Text – light bg */
      --txt:         #1c1c2e;
      --txt-2:       #52526a;
      --txt-3:       #9898b0;

      /* Text – dark bg */
      --txt-d:       #eeeef6;
      --txt-d2:      #8890a8;
      --txt-d3:      #3e4460;

      /* Borders */
      --border:      rgba(0,0,0,.08);
      --border-s:    rgba(0,0,0,.15);
      --border-lt:   rgba(0,0,0,.08);
      --border-lt-s: rgba(0,0,0,.14);

      /* Legacy aliases (keep compatibility) */
      --glass:       rgba(255,255,255,.06);
      --glass-b:     rgba(255,255,255,.1);

      --nav-h:  72px;
      --r:      12px;
      --r-lg:   20px;
      --r-xl:   28px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--txt);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { cursor: pointer; font-family: inherit; }

    /* ============================================================
       TYPOGRAPHY  – Plus Jakarta Sans as primary heading font
    ============================================================ */
    h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
    .eyebrow {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .87rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--blue); display: block; margin-bottom: .9rem;
    }
    .section-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
    }
    .section-body {
      font-size: .95rem; color: var(--txt-2);
      max-width: 520px; line-height: 1.82;
    }
    .section-body.d  { color: var(--txt-d2); }
    .blue    { color: var(--blue); }
    .on-dark { color: var(--txt-d); }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

    .btn {
      display: inline-flex; align-items: center; gap: .5rem;
      padding: .85rem 1.9rem; border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-weight: 600;
      font-size: .88rem; letter-spacing: .04em;
      border: none; transition: all .3s ease;
    }
    .btn-blue {
      background: linear-gradient(135deg, var(--blue), var(--blue-lt));
      color: #ffffff;
    }
    .btn-blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px var(--blue-glow);
    }
    .btn-ghost {
      background: transparent; color: rgba(240,240,248,.88);
      border: 1.5px solid rgba(255,255,255,.45);
    }
    .btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: rgba(255,255,255,.06); transform: translateY(-2px); }

    /* ============================================================
       SCROLL-REVEAL
    ============================================================ */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.on { opacity: 1; transform: none; }
    .d1 { transition-delay: .1s; }
    .d2 { transition-delay: .2s; }
    .d3 { transition-delay: .3s; }
    .d4 { transition-delay: .4s; }

    .section-sep {
      position: relative;
      height: 1.3rem;
      background: transparent;
      pointer-events: none;
      overflow: hidden;
    }
    .section-sep::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(1800px, calc(100% - .8rem));
      height: 1px;
      transform: translate(-50%, -50%);
      background: linear-gradient(to right, transparent 0%, rgba(123,137,161,.34) 10%, rgba(123,137,161,.72) 50%, rgba(123,137,161,.34) 90%, transparent 100%);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--nav-h); display: flex; align-items: center;
      transition: background .4s, border-color .4s, box-shadow .4s;
    }
    .nav.stuck {
      background: rgba(0,0,0,.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 40px rgba(0,0,0,.5);
    }
    .nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }

    .logo-img { height: 64px; width: auto; display: block; }

    .nav-links { display: flex; align-items: center; gap: 2.4rem; }
    .nav-links a {
      font-family: 'Space Grotesk', sans-serif; font-size: .93rem;
      font-weight: 500; color: rgba(240,240,245,.78); letter-spacing: .05em;
      transition: color .3s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--blue); transition: width .3s;
    }
    .nav-links a:hover { color: var(--txt-d); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: linear-gradient(135deg, var(--blue), var(--blue-lt)) !important;
      color: #ffffff !important; padding: .48rem 1.2rem;
      border-radius: 50px; font-weight: 600 !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { box-shadow: 0 4px 20px var(--blue-glow); transform: translateY(-1px); }

    .nav-right { display: flex; align-items: center; gap: .85rem; }
    .nav-social { display: flex; align-items: center; gap: .45rem; }
    .nav-social a {
      width: 34px; height: 34px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(240,240,245,.82);
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.03);
      transition: all .25s ease;
    }
    .nav-social a:hover {
      color: #fff;
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.08);
      transform: translateY(-1px);
    }

    /* Hamburger */
    .ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
    .ham span { display: block; width: 24px; height: 2px; background: var(--txt-d); border-radius: 2px; transition: all .3s; }
    .ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .mob-nav {
      display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: rgba(0,0,0,.98); backdrop-filter: blur(24px);
      padding: 2rem 1.5rem; z-index: 999;
      border-bottom: 1px solid var(--border);
      transform: translateY(-110%); opacity: 0;
      transition: transform .38s ease, opacity .38s ease;
    }
    .mob-nav.open { transform: none; opacity: 1; }
    .mob-nav a {
      display: block; font-family: 'Space Grotesk', sans-serif;
      font-size: 1.05rem; font-weight: 500; color: var(--txt-d2);
      padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
      transition: color .3s;
    }
    .mob-nav a:last-child { border-bottom: none; color: var(--blue); padding-top: 1.4rem; }
    .mob-nav a:hover { color: var(--txt-d); }
    .mob-social {
      display: none;
      margin-top: 1.2rem;
      gap: .7rem;
      align-items: center;
    }
    .mob-social a {
      width: 38px; height: 38px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(240,240,245,.9);
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.05);
    }

    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      position: relative; height: 85vh; min-height: 580px; max-height: 860px;
      display: flex; align-items: center; overflow: hidden;
      background: #000000;
      padding-top: var(--nav-h);
      box-sizing: border-box;
    }

    /* Bg image */
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('../landingPage.jpg');
      background-size: cover;
      background-position: 55% 30%;
    }
    /* Gradient overlay – darker overall, strong left band for text */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(100deg,
          rgba(8,8,14,.94) 0%,
          rgba(8,8,14,.80) 25%,
          rgba(8,8,14,.52) 35%,
          rgba(8,8,14,.30) 45%),
        linear-gradient(to top, rgba(8,8,14,.15) 0%, transparent 25%),
        rgba(8,8,14,.22);
    }

    /* blue vertical accent bar */
    .hero::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 3px; height: 100%;
      background: linear-gradient(to bottom, transparent 5%, var(--blue) 40%, var(--blue) 60%, transparent 95%);
      z-index: 2;
    }

    .hero-content { position: relative; z-index: 2; max-width: 720px; }

    .hero-pill {
      display: inline-flex; align-items: center; gap: .7rem;
      padding: .55rem 1.35rem; background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.15); border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-size: .94rem;
      font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.9); margin-bottom: 1.8rem;
      backdrop-filter: blur(10px);
    }
    .hero-pill .dot {
      width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.9);
      animation: blink 2s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.6)} }

    .hero-h1 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: clamp(2.6rem, 5.5vw, 5.2rem);
      font-weight: 800; letter-spacing: -.02em; line-height: 1;
      margin-bottom: 1.4rem; color: var(--txt-d);
      text-shadow: 0 2px 24px rgba(0,0,0,.55);
    }
    .hero-h1 em { display: block; color: #a5c9e8; font-style: normal; }

    .hero-sub {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(.92rem, 1.8vw, 1.1rem);
      font-weight: 400; color: rgba(255, 255, 255, 0.85); max-width: 600px;
      line-height: 1.95; margin-bottom: 3.4rem;
    }
    .br-desktop { display: inline; }

    .hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

    /* Scroll indicator */
    .scroll-cue {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%); z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(255,255,255,.55); font-family: 'Space Grotesk', sans-serif;
      font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 46px;
      background: linear-gradient(to bottom, rgba(255,255,255,.9), transparent);
      animation: scrlAnim 2.2s ease infinite;
    }
    @keyframes scrlAnim {
      0%   { transform-origin: top;    transform: scaleY(0); }
      49%  { transform-origin: top;    transform: scaleY(1); }
      50%  { transform-origin: bottom; transform: scaleY(1); }
      100% { transform-origin: bottom; transform: scaleY(0); }
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-lt);
      padding: 3rem 0;
    }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

    .stat {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 1rem 0.5rem;
      position: relative;
    }
    .stat + .stat::before {
      content: ''; position: absolute; left: 0; top: 18%; height: 64%;
      width: 1px; background: var(--border-lt);
    }
    .stat-n {
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--txt); line-height: 1.1;
    }
    .stat-l {
      font-family: 'Space Grotesk', sans-serif; font-size: .72rem;
      font-weight: 500; color: var(--txt-3);
      letter-spacing: .1em; text-transform: uppercase; margin-top: .25rem;
    }

    /* ============================================================
       ABOUT
    ============================================================ */
    .about { padding: 7rem 0; overflow: hidden; }

    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    /* Left image block */
    .about-img-wrap { position: relative; }

    .about-corner {
      position: absolute; top: -14px; left: -14px;
      width: 56px; height: 56px;
      border-top: 2px solid var(--blue);
      border-left: 2px solid var(--blue);
      border-radius: 3px; z-index: 2;
    }

    .about-photo-ph {
      width: 100%; aspect-ratio: 4/5;
      border-radius: var(--r-xl);
      background: var(--bg-card); border: 1px solid var(--border);
      position: relative; overflow: hidden; z-index: 1;
    }
    .about-photo-ph img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: .90; transition: opacity .5s;
    }
    /* .about-photo-ph:hover img { opacity: .92; } */

    .owner-badge {
      position: absolute; bottom: -1.25rem; right: -1.25rem;
      background: var(--bg-card); border: 1px solid var(--border-s);
      border-radius: var(--r); padding: 1.1rem 1.25rem;
      display: flex; align-items: center; gap: .9rem;
      backdrop-filter: blur(12px); z-index: 3; min-width: 210px;
    }
    .owner-ava {
      width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue-dk), var(--blue));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem; color: #000;
    }
    .owner-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .93rem; }
    .owner-role { font-size: .72rem; color: var(--blue); font-family: 'Space Grotesk', sans-serif; margin-top: .1rem; }

    /* Right text block */
    .about-quote {
      margin-top: 2rem; padding: 1.4rem 1.5rem;
      border-left: 3px solid var(--blue);
      background: var(--bg-card); border-radius: 0 var(--r) var(--r) 0;
      font-style: italic; color: var(--txt-2); line-height: 1.82; font-size: .93rem;
    }
    .about-quote strong { font-style: normal; color: var(--txt); }

    .about-feats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 2rem;
    }
    .feat {
      display: flex; align-items: flex-start; gap: .7rem;
    }
    .feat-ico {
      width: 32px; height: 32px; flex-shrink: 0;
      border-radius: 8px; background: var(--blue-subtle);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); font-size: .83rem; margin-top: .1rem;
    }
    .feat-txt {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .86rem; font-weight: 500; color: var(--txt-2);
      line-height: 1.5;
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    .services {
      padding: 7rem 0; background: var(--bg-2); position: relative;
    }
    .services::before {
      display: none;
    }

    .srv-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .srv-header .section-body { margin: 0 auto; text-align: center; }

    .srv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .srv-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 1.9rem;
      position: relative; overflow: hidden;
      transition: border-color .35s, transform .35s, box-shadow .35s;
    }
    .srv-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(30,58,95,.1) 0%, transparent 55%);
      opacity: 0; transition: opacity .35s;
    }
    .srv-card:hover { border-color: var(--border-s); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
    .srv-card:hover::before { opacity: 1; }
    .srv-card.hot { background: linear-gradient(135deg, rgba(30,58,95,.15), var(--bg-card) 70%); border-color: rgba(30,58,95,.35); }

    .srv-ico {
      width: 46px; height: 46px; border-radius: 11px;
      background: var(--blue-subtle); border: 1px solid rgba(109,40,217,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--blue); margin-bottom: 1.3rem;
      transition: transform .3s, background .3s;
    }
    .srv-card:hover .srv-ico { transform: scale(1.1); background: rgba(30,58,95,.24); }

    .srv-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .65rem; }
    .srv-desc { font-size: .86rem; color: var(--txt-2); line-height: 1.72; margin-bottom: 1.4rem; }

    .srv-card { display: flex; flex-direction: column; }
    .srv-desc { flex: 1; }

    .srv-bottom {
      display: flex; flex-wrap: wrap; align-items: flex-start; gap: .5rem;
      margin-top: .8rem;
    }

    .srv-tag {
      display: inline-flex; align-items: center; gap: .35rem;
      font-family: 'Space Grotesk', sans-serif; font-size: .66rem;
      font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
      color: var(--blue); padding: .28rem .72rem;
      border-radius: 50px; border: 1px solid rgba(30,58,95,.35);
    }

    .srv-chips { display: flex; flex-wrap: wrap; gap: .35rem; width: 100%; }
    .srv-chip {
      font-size: .72rem; font-weight: 500; color: var(--txt-2);
      background: rgba(30,58,95,.07); border: 1px solid var(--border);
      border-radius: 50px; padding: .18rem .6rem;
      transition: background .2s, color .2s;
    }
    .srv-card:hover .srv-chip { background: rgba(30,58,95,.15); color: var(--txt-1); }


    /* ============================================================
       GALLERY / BEFORE-AFTER – dark section with interactive slider
    ============================================================ */
    .gallery { padding: 7rem 0; background: var(--dark); }

    .gallery-head { text-align: center; margin-bottom: 3.5rem; }
    .gallery .eyebrow { color: #7fb4e3; }
    .gallery .blue { color: #a5c9e8; text-shadow: 0 0 18px rgba(74,123,167,.35); }
    .gallery .section-title.on-dark { text-shadow: 0 2px 22px rgba(0,0,0,.45); }
    .gallery-head .section-body { margin: 0 auto; text-align: center; }

    .ba-swiper { width: 100%; overflow: hidden; padding: 0 2.9rem 3rem; }
    .ba-grid { display: flex; }

    .ba-card {
      border-radius: var(--r-lg); overflow: hidden;
      position: relative; aspect-ratio: 4/5;
      background: var(--dark-card); border: 1px solid var(--border);
    }

    /* Interactive before/after slider */
    .ba-slider { position: relative; width: 100%; height: 100%; overflow: hidden; }
    .ba-before, .ba-after { position: absolute; inset: 0; width: 100%; height: 100%; }
    .ba-before img, .ba-after img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      object-position: center; transform: scale(.96);
    }
    .ba-before img { filter: saturate(.38) brightness(.9) contrast(1.04); }
    .ba-after  img { filter: saturate(1.4) brightness(1.08) contrast(1.05); }
    .ba-after { z-index: 2; clip-path: inset(0 0 0 50%); }

    .ba-handle-wrap {
      position: absolute; top: 0; bottom: 0;
      width: 44px; z-index: 4;
      left: 50%; transform: translateX(-50%);
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
    }
    .ba-handle-line   { width: 2px; height: 100%; background: var(--blue); }
    .ba-handle-circle {
      position: absolute; width: 38px; height: 38px; border-radius: 50%;
      background: #1a2540 !important; border: 3px solid #fff;
      display: flex; align-items: center; justify-content: center;
      color: #fff !important; font-size: .95rem; box-shadow: 0 2px 16px rgba(0,0,0,.4);
    }
    .ba-handle-circle i { color: #fff !important; }
    .ba-range {
      position: absolute; inset: 0; width: 100%; height: 100%;
      opacity: 0; cursor: col-resize; z-index: 5;
      -webkit-appearance: none; appearance: none;
      touch-action: none;
    }

    .ba-labels {
      position: absolute; top: .9rem; left: .7rem; right: .7rem;
      z-index: 3; display: flex; justify-content: space-between; pointer-events: none;
    }
    .ba-lbl {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .64rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      padding: .28rem .7rem; border-radius: 4px;
    }
    .ba-lbl.bef { background: rgba(0,0,0,.72); color: var(--txt-d2); }
    .ba-lbl.aft { background: rgba(30,58,95,.95); color: #ffffff; }

    .ba-overlay {
      position: absolute; inset: 0; z-index: 3;
      background: linear-gradient(to top, rgba(17,17,24,.86) 0%, transparent 50%);
      display: flex; align-items: flex-end; padding: 1.4rem; pointer-events: none;
    }
    .ba-ov-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .88rem; color: var(--txt-d); }

    .ba-swiper .swiper-button-next,
    .ba-swiper .swiper-button-prev {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(255,255,255,.96);
      box-shadow: 0 2px 14px rgba(0,0,0,.25);
      color: var(--txt);
      --swiper-navigation-size: 14px;
    }
    .ba-swiper .swiper-button-prev { left: .35rem; }
    .ba-swiper .swiper-button-next { right: .35rem; }
    .ba-swiper .swiper-button-next:hover,
    .ba-swiper .swiper-button-prev:hover { background: var(--blue); color: #fff; }
    .ba-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.35); }
    .ba-swiper .swiper-pagination-bullet-active { background: #d7e8ff; }

    /* ============================================================
       PROCESS – light section
    ============================================================ */
    .process { padding: 7rem 0; background: var(--bg-2); position: relative; overflow: hidden; }
    .process::before {
      display: none;
    }
    .process-head { text-align: center; margin-bottom: 4rem; }

    .steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
    .steps::after {
      content: ''; position: absolute;
      top: 32px; left: 12.5%; right: 12.5%; height: 1px; z-index: 0;
      background: var(--blue);
    }
    .step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; }
    .step-n {
      width: 60px; height: 60px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-lt));
      border: 2px solid var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800;
      color: #ffffff; margin-bottom: 1.4rem; position: relative; z-index: 1;
      transition: transform .3s, box-shadow .3s;
      box-shadow: 0 4px 20px rgba(30,58,95,.45);
    }
    .step:hover .step-n { box-shadow: 0 6px 28px rgba(30,58,95,.6); transform: scale(1.08); }
    .step h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .96rem; font-weight: 700; margin-bottom: .45rem; color: var(--txt); }
    .step p  { font-size: .84rem; color: var(--txt-2); line-height: 1.65; }

    /* ============================================================
       PHOTO GALLERY – full-width Swiper
    ============================================================ */
    .gallery-swiper-section {
      padding: 7rem 0; background: var(--bg);
    }
    .gallery-swiper-head { text-align: center; margin-bottom: 3rem; }
    .gallery-preview-hint {
      margin: .9rem auto 0;
      max-width: 620px;
      font-size: .76rem;
      color: var(--txt-3);
      letter-spacing: .02em;
      text-align: center;
    }

    .swiper-gallery {
      width: 100%; overflow: hidden;
    }
    .swiper-gallery .swiper-slide {
      width: 360px; border-radius: var(--r-lg); overflow: hidden;
      aspect-ratio: 4/3; position: relative;
    }
    .swiper-gallery .swiper-slide img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s ease;
    }
    .swiper-gallery .swiper-slide:hover img { transform: scale(1.05); }
    .gallery-slide-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1rem 1rem .9rem 1.2rem;
      background: linear-gradient(to top, rgba(24,28,42,.88) 0%, transparent 100%);
      font-family: 'Space Grotesk', sans-serif; font-size: .78rem;
      font-weight: 600; color: rgba(255,255,255,.9);
      transform: translateY(6px); opacity: 0;
      transition: opacity .3s, transform .3s;
      display: flex; align-items: center; justify-content: space-between; gap: .9rem;
    }
    .gallery-caption-text { flex: 1; }
    .gallery-info-btn {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.24);
      background: rgba(10,14,23,.35);
      color: rgba(255,255,255,.95);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .76rem;
      transition: transform .25s, background .25s, border-color .25s;
      pointer-events: auto;
    }
    .gallery-info-btn:hover {
      transform: translateY(-1px);
      background: rgba(30,58,95,.55);
      border-color: rgba(167,196,223,.6);
    }
    .gallery-preview-btn {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.24);
      background: rgba(10,14,23,.35);
      color: rgba(255,255,255,.95);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: .76rem;
      transition: transform .25s, background .25s, border-color .25s;
      pointer-events: auto;
      cursor: pointer;
    }
    .gallery-preview-btn:hover {
      transform: translateY(-1px);
      background: rgba(30,58,95,.55);
      border-color: rgba(167,196,223,.6);
    }
    .swiper-gallery .swiper-slide:hover .gallery-slide-caption {
      opacity: 1; transform: none;
    }
    .gallery-info-overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient(to top, rgba(8,12,20,.88), rgba(8,12,20,.48));
      color: #ffffff;
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: .55rem;
      opacity: 0;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity .25s, transform .25s;
    }
    .gallery-info-overlay.open {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }
    .gallery-info-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
    }
    .gallery-info-desc {
      font-size: .8rem;
      line-height: 1.62;
      color: rgba(255,255,255,.9);
      max-width: 92%;
    }
    .gallery-info-close {
      position: absolute;
      top: .7rem;
      right: .7rem;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.08);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
    }
    .swiper-gallery .swiper-button-next,
    .swiper-gallery .swiper-button-prev {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg-card); box-shadow: 0 2px 16px rgba(0,0,0,.14);
      color: var(--txt); --swiper-navigation-size: 16px;
    }
    .swiper-gallery .swiper-button-next:hover,
    .swiper-gallery .swiper-button-prev:hover { background: var(--blue); color: #fff; }
    .swiper-gallery .swiper-pagination-bullet { background: var(--txt-3); }
    .swiper-gallery .swiper-pagination-bullet-active { background: var(--blue); }
    @media (max-width: 600px) {
      .swiper-gallery .swiper-slide { width: 82vw; }
      .swiper-gallery .swiper-button-next,
      .swiper-gallery .swiper-button-prev { display: none; }
    }

    .gallery-preview-dialog {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
      width: min(960px, 94vw);
      max-height: 90vh;
      overflow-y: auto;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: rgba(255,255,255,0.5);
      color: var(--txt);
      padding: 0;
      box-shadow: 0 24px 64px rgba(0,0,0,.35);
    }
    .gallery-preview-dialog::backdrop {
      background: rgba(8,12,20,.78);
      backdrop-filter: blur(4px);
    }
    .gallery-preview-box { padding: 1rem; }
    .gallery-preview-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      margin-bottom: .9rem;
    }
    .gallery-preview-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: .98rem;
    }
    .gallery-preview-count {
      font-size: .78rem;
      color: #111;
    }
    .gallery-preview-close {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--border-lt);
      background: var(--bg);
      color: var(--txt);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .gallery-preview-main {
      width: auto;
      max-width: 100%;
      max-height: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      border-radius: calc(var(--r-lg) - 4px);
      border: 1px solid var(--border-lt);
      background: #0b1220;
      display: block;
      margin: 0 auto;
      box-shadow: 0 2px 16px 0 rgba(0,0,0,.10);
      transition: width .2s, max-width .2s, max-height .2s;
    }

    /* Portrait photo support: if image is much taller than wide, let it use more height */
    .gallery-preview-img-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 320px;
      min-width: 180px;
      height: 56vh;
      max-height: 70vh;
    }
    .gallery-preview-img-wrap {
      position: relative;
      line-height: 0;
    }
    .gallery-preview-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(8,12,20,.52);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      cursor: pointer;
      transition: background .2s, border-color .2s, transform .2s;
      backdrop-filter: blur(4px);
    }
    .gallery-preview-arrow:hover {
      background: rgba(30,58,95,.75);
      border-color: rgba(167,196,223,.55);
      transform: translateY(-50%) scale(1.08);
    }
    .gallery-preview-prev { left: .6rem; }
    .gallery-preview-next { right: .6rem; }
    .gallery-preview-thumbs {
      margin-top: .85rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
      gap: .55rem;
    }
    .gallery-preview-thumb {
      border: 1px solid var(--border-lt);
      border-radius: 9px;
      padding: 0;
      overflow: hidden;
      background: transparent;
      cursor: pointer;
      line-height: 0;
    }
    .gallery-preview-thumb img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      opacity: .88;
    }
    .gallery-preview-thumb.active {
      border-color: var(--blue);
      box-shadow: 0 0 0 2px rgba(30,58,95,.2);
    }
    .gallery-preview-thumb.active img,
    .gallery-preview-thumb:hover img { opacity: 1; }

    /* ============================================================
       REVIEWS – clean light cards (no carousel, no dark bg)
    ============================================================ */
    .reviews { padding: 7rem 0; background: var(--bg-2); }
    .reviews-head { text-align: center; margin-bottom: 3rem; }
    .rev-grid-new {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .rev-card-new {
      background: var(--bg-card); border: 1px solid var(--border-lt);
      border-radius: var(--r-lg); padding: 1.8rem 2rem;
      transition: box-shadow .3s, transform .3s;
    }
    .rev-card-new:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); transform: translateY(-4px); }
    .stars { display: flex; gap: 3px; color: var(--blue); font-size: .85rem; margin-bottom: .85rem; }
    .rev-txt { font-size: .88rem; color: var(--txt-2); line-height: 1.78; margin-bottom: 1.4rem; font-style: italic; }
    .rev-author { display: flex; align-items: center; gap: .75rem; }
    .rev-ava {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, #dde0f0, #c8cbdc);
      display: flex; align-items: center; justify-content: center;
      color: var(--txt-3); font-size: .9rem;
    }
    .rev-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .88rem; color: var(--txt); }
    .rev-car  { font-size: .72rem; color: var(--blue); margin-top: .1rem; }

    /* ============================================================
       CENNIK – pricing section (light)
    ============================================================ */
    .cennik { padding: 7rem 0; background: var(--bg-card); position: relative; }
    .cennik::before {
      display: none;
    }
    .cennik-head { text-align: center; margin-bottom: 4rem; }

    /* Category tabs */
    .cennik-tabs {
      display: flex; gap: .5rem; flex-wrap: wrap;
      justify-content: center; margin-bottom: 3rem;
    }
    .cennik-tab {
      padding: .5rem 1.25rem; border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-size: .8rem; font-weight: 600;
      letter-spacing: .04em; border: 1.5px solid var(--border-lt-s);
      background: transparent; color: var(--txt-2);
      transition: all .25s; cursor: pointer;
    }
    .cennik-tab.active, .cennik-tab:hover {
      background: var(--blue); border-color: var(--blue); color: #fff;
    }

    /* Price panel */
    .cennik-panel { display: none; }
    .cennik-panel.active { display: block; }

    .price-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }
    .price-card {
      background: var(--bg); border: 1px solid var(--border-lt);
      border-radius: var(--r-lg); padding: 1.5rem 1.6rem;
      display: flex; flex-direction: column; gap: .5rem;
      transition: box-shadow .3s, border-color .3s, transform .3s;
      position: relative; overflow: hidden;
    }
    .price-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
      background: var(--blue); border-radius: 3px 0 0 3px; opacity: 0; transition: opacity .3s;
    }
    .price-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); border-color: rgba(30,58,95,.35); transform: translateX(3px); }
    .price-card:hover::before { opacity: 1; }
    .price-card.featured {
      background: linear-gradient(135deg, rgba(30,58,95,.08) 0%, var(--bg) 60%);
      border-color: rgba(30,58,95,.4);
    }
    .price-card.featured::before { opacity: 1; }
    .price-badge {
      display: inline-flex; align-items: center; gap: .35rem;
      font-family: 'Space Grotesk', sans-serif; font-size: .6rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: .12em;
      color: var(--blue); margin-bottom: .2rem;
    }
    .price-name {
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
      font-size: 1rem; color: var(--txt); line-height: 1.3;
    }
    .price-desc {
      font-size: .82rem; color: var(--txt-2); line-height: 1.65;
      flex: 1;
    }
    .price-meta {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: .8rem; margin-top: .3rem;
      border-top: 1px solid var(--border-lt);
    }
    .price-amount {
      font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
      font-size: 1.2rem; color: var(--txt);
    }
    .price-amount sup { font-size: .75rem; font-weight: 600; vertical-align: super; }
    .price-time {
      font-family: 'Space Grotesk', sans-serif; font-size: .72rem;
      color: var(--txt-3); display: flex; align-items: center; gap: .3rem;
    }
    .cennik-note {
      margin-top: 2.5rem; padding: 1.25rem 1.5rem;
      background: var(--bg-2); border-radius: var(--r);
      border-left: 3px solid var(--blue);
      font-size: .82rem; color: var(--txt-2); line-height: 1.7;
    }

    /* ============================================================
       CONTACT – light section
    ============================================================ */
    .contact { padding: 7rem 0; background: var(--bg-card); position: relative; }
    .contact::before {
      display: none;
    }

    .contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
    .contact-left { position: sticky; top: calc(var(--nav-h) + 2rem); }

    .contact-methods { display: flex; flex-direction: column; gap: .85rem; margin-top: 2rem; }
    .c-method {
      display: flex; align-items: center; gap: 1rem;
      padding: 1.1rem 1.25rem; background: var(--bg);
      border: 1px solid var(--border-lt); border-radius: var(--r);
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    a.c-method:hover { border-color: rgba(30,58,95,.4); transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,.05); }
    .soc-link {
      display: inline-flex; align-items: center; gap: .35rem;
      font-family: 'Space Grotesk', sans-serif; font-size: .8rem; font-weight: 600;
      color: var(--txt-2); padding: .32rem .75rem; border-radius: 50px;
      border: 1.5px solid var(--border-lt-s); transition: all .25s;
    }
    .soc-link:hover { color: var(--blue); border-color: rgba(30,58,95,.5); background: var(--blue-subtle); }
    .c-ico {
      width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
      background: var(--blue-subtle);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); font-size: 1rem;
    }
    .c-label { font-family: 'Space Grotesk', sans-serif; font-size: .68rem; font-weight: 600; color: var(--txt-3); text-transform: uppercase; letter-spacing: .1em; }
    .c-val   { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .9rem; color: var(--txt); }

    /* Form */
    .form-box {
      background: var(--bg); border: 1px solid var(--border-lt);
      border-radius: var(--r-xl); padding: 2.5rem;
      box-shadow: 0 8px 48px rgba(0,0,0,.06);
    }
    .form-box h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 700; margin-bottom: .4rem; color: var(--txt); }
    .form-box p  { font-size: .87rem; color: var(--txt-2); margin-bottom: 1.8rem; }

    .fg   { margin-bottom: 1.1rem; }
    .flbl {
      display: block; font-family: 'Space Grotesk', sans-serif;
      font-size: .72rem; font-weight: 600;
      color: var(--txt-2); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .45rem;
    }
    .fi, .fsel, .fta {
      width: 100%; background: var(--bg-card);
      border: 1.5px solid var(--border-lt-s); border-radius: var(--r);
      padding: .85rem 1rem; font-family: 'Inter', sans-serif;
      font-size: .9rem; color: var(--txt);
      transition: border-color .3s, box-shadow .3s; outline: none; appearance: none;
    }
    .fi:focus, .fsel:focus, .fta:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,58,95,.2); }
    .fi::placeholder, .fta::placeholder { color: var(--txt-3); }
    .fta { resize: vertical; min-height: 115px; }
    .fsel option { background: var(--bg-card); color: var(--txt); }
    .f2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .btn-submit { width: 100%; margin-top: .4rem; padding: 1rem; font-size: .97rem; justify-content: center; }

    .form-success {
      display: none; text-align: center; padding: 2.5rem 2rem;
      font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; color: #2e7d32;
    }
    .form-success i { font-size: 2.8rem; display: block; margin-bottom: .75rem; color: #4caf50; }

    /* ============================================================
       FOOTER – dark
    ============================================================ */
    .footer { background: var(--dark); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 2rem;
    }
    .f-logo    { height: 54px; width: auto; margin-bottom: .9rem; }
    .f-tagline { font-size: .87rem; color: var(--txt-d2); line-height: 1.72; max-width: 280px; }
    .f-keywords { font-size: .75rem; color: var(--txt-d3); line-height: 1.8; max-width: 280px; margin-top: .5rem; }
    .f-brand { font-style: normal; }

    .socials { display: flex; gap: .7rem; margin-top: 1.1rem; }
    .soc {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--dark-card); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--txt-d2); font-size: .88rem; transition: all .3s;
    }
    .soc:hover { background: rgba(30,58,95,.14); border-color: var(--border-s); color: var(--blue); transform: translateY(-2px); }

    .f-col-ttl {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #e6eaff;
      margin-bottom: 1.1rem;
      text-shadow: 0 1px 8px #000, 0 0 1px #1a2540;
    }
    .f-links   { display: flex; flex-direction: column; gap: .65rem; }
    .f-links a { font-size: .87rem; color: var(--txt-d2); transition: color .3s; }
    .f-links a:hover { color: var(--blue); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.04); padding-top: 1.5rem;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .copy  { font-size: .78rem; color: var(--txt-d3); }
    /* ============================================================
       FLOATING BUTTONS
    ============================================================ */
    .float-wrap {
      position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 500;
      display: flex; flex-direction: column; align-items: flex-end; gap: .7rem;
    }
    .float-item { position: relative; display: flex; align-items: center; }
    .float-btn {
      width: 54px; height: 54px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; border: none;
      box-shadow: 0 4px 24px rgba(0,0,0,.4);
      transition: transform .3s, box-shadow .3s; text-decoration: none;
      background: #1a2540 !important;
      color: #fff !important;
    }
    .float-btn i { color: #fff !important; }
    .float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(0,0,0,.5); background: #22305a !important; }
    .float-wa    { background: #25d366 !important; color: #fff !important; }
    .float-wa i  { color: #fff !important; }
    .float-phone { background: #1a2540 !important; color: #fff !important; }
    .float-phone i { color: #fff !important; }
    .float-top   { background: #1a2540 !important; color: #fff !important; border: 1.5px solid var(--border-lt); opacity: 0; pointer-events: none; transition: transform .3s, box-shadow .3s, opacity .3s !important; }
    .float-top i { color: #fff !important; }
    .float-top.show { opacity: 1; pointer-events: auto; }
    @media (max-width: 600px) {
      .float-wrap { bottom: 1.1rem; right: .9rem; gap: .5rem; }
      .float-btn  { width: 48px; height: 48px; font-size: 1.05rem; }
      .float-tip  { display: none; }
    }
    .float-tip {
      position: absolute; right: 64px;
      background: var(--dark); color: var(--txt-d);
      font-family: 'Space Grotesk', sans-serif; font-size: .74rem; font-weight: 600;
      padding: .35rem .8rem; border-radius: 6px; white-space: nowrap;
      opacity: 0; pointer-events: none;
      transform: translateX(8px); transition: opacity .2s, transform .2s;
      box-shadow: 0 2px 12px rgba(0,0,0,.3);
    }
    .float-item:hover .float-tip { opacity: 1; transform: translateX(0); }

    /* ============================================================
       GOOGLE MAPS + REVIEWS
    ============================================================ */
    .gmaps-wrap {
      margin-top: 2.5rem; border-radius: var(--r-lg); overflow: hidden;
      border: 1px solid var(--border-lt);
      box-shadow: 0 4px 24px rgba(0,0,0,.07);
    }
    .gmaps-wrap iframe { display: block; width: 100%; height: 320px; border: none; }
    /* ============================================================
       SERVICE FILTER TABS
    ============================================================ */
    .srv-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
    .srv-fil-btn {
      padding: .42rem 1.1rem; border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-size: .78rem; font-weight: 600;
      letter-spacing: .06em; border: 1.5px solid var(--border-lt-s);
      background: transparent; color: var(--txt-2); transition: all .3s; cursor: pointer;
    }
    .srv-fil-btn.active, .srv-fil-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

    /* ============================================================
       ABOUT – light
    ============================================================ */
    .about { padding: 7rem 0; overflow: hidden; background: var(--bg-card); }

    /* ============================================================
       SERVICES – light
    ============================================================ */
    .services { padding: 7rem 0; background: var(--bg); position: relative; }
    .services::before {
      display: none;
    }
    .srv-card:hover { border-color: rgba(30,58,95,.5); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1024px) {
      .about-grid    { grid-template-columns: 1fr; gap: 3.5rem; }
      .about-img-wrap { max-width: 480px; }
      .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
      .contact-left  { position: static; }
      .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      .br-desktop { display: none; }
      .nav-links { display: none; }
      .ham       { display: flex; }
      .mob-nav   { display: block; }
      .nav-right { gap: .65rem; }
      .nav-social a { width: 32px; height: 32px; font-size: .85rem; }
      .mob-social { display: flex; }
      .hero      { align-items: flex-start; }
      .hero-content { padding-top: 2.5rem; }
      .hero-pill {
        padding: .36rem .82rem;
        font-size: .6rem;
        letter-spacing: .06em;
        line-height: 1.1;
        white-space: nowrap;
        max-width: none;
      }
      .scroll-cue { display: none; }
      .hero-h1   { font-size: clamp(3.2rem, 14vw, 5rem); }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2)::before { display: none; }
      .srv-header { flex-direction: column; align-items: flex-start; }
      .srv-grid   { grid-template-columns: 1fr; }
      .ba-swiper { padding: 0 2.2rem 2.5rem; }
      .steps      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .steps::after { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .f2col       { grid-template-columns: 1fr; }
      .about-feats { grid-template-columns: 1fr; }
      .rev-grid-new { grid-template-columns: 1fr; }
      .price-grid   { grid-template-columns: 1fr; }
      .cennik-tabs  { gap: .4rem; }
      .cennik-tab   { font-size: .72rem; padding: .4rem 1rem; }
      .section-sep  { height: 1.1rem; }
      .gallery-slide-caption { opacity: 1; transform: none; }
    }
    @media (max-width: 480px) {
      .hero       { height: auto; min-height: 80svh; max-height: none; padding-bottom: 1rem; }
      .hero-content { padding-top: 2rem; }
      .hero-sub   { margin-bottom: 2rem; }
      .hero-pill  { margin-bottom: 1.2rem; }
      .steps      { grid-template-columns: 1fr; }
      .owner-badge { right: 0; bottom: -.8rem; }
      .about-img-wrap { max-width: 100%; }
      .form-box   { padding: 1.5rem; }
      .gallery-slide-caption { padding: .85rem .85rem .8rem 1rem; gap: .6rem; }
      .gallery-info-btn { width: 28px; height: 28px; }
      .gallery-info-desc { max-width: 100%; }
    }
