
  :root {
    --sky: #00AEEF;
    --deep: #005A8E;
    --navy: #003B5C;
    --ice: #E0F7FF;
    --white: #ffffff;
    --dark: #0A1A28;
    --mid: #1C3A50;
    --accent: #FFB800;
    --gray: #f4f6f8;
    --text: #1a2e3e;
    --muted: #5a7080;
    --body-font:"Jost", sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var( --body-font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--navy);
    color: #a8d8f0;
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .topbar a { color: #a8d8f0; text-decoration: none; }
  .topbar a:hover { color: var(--white); }
  .topbar-left { display: flex; gap: 20px; align-items: center; }
  .topbar-left span { display: flex; align-items: center; gap: 6px; }
  .topbar-right { display: flex; gap: 16px; align-items: center; }
  .topbar-right a { display: flex; align-items: center; gap: 5px; }

  /* ── HEADER ── */
  header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,90,142,0.12);
  }
  .header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 80px;
  }
  .logo-wrap {
    flex-shrink: 0;
    height: 64px;
    display: flex;
    align-items: center;
  }
  .logo-wrap img {
    height: 64px;
    width: auto;
    object-fit: contain;
  }

  nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-menu li {
    position: relative;
  }
  .nav-menu a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--sky);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
  }
  .nav-menu a:hover { color: var(--sky); }
  .nav-menu a:hover::after { transform: scaleX(1); }
  .has-dropdown > a {
    gap: 6px;
  }
  .has-dropdown > a::before {
    content: '';
    order: 2;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
  }
  .has-dropdown:hover > a::before,
  .has-dropdown:focus-within > a::before {
    transform: rotate(225deg) translate(-2px, -1px);
  }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 220px;
    padding: 10px;
    list-style: none;
    background: var(--white);
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(0,90,142,0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1100;
  }
  .dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  .dropdown-menu a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  .dropdown-menu a::after {
    display: none;
  }
  .dropdown-menu a:hover {
    background: var(--ice);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent; cursor: pointer;
    color: var(--navy);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    position: relative;
  }
  .icon-btn:hover { background: var(--ice); color: var(--sky); }
  .icon-btn svg { width: 22px; height: 22px; }
  .cart-badge {
    position: absolute;
    top: 4px; right: 4px;
    width: 16px; height: 16px;
    background: var(--accent);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
  }
  .btn-quote {
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--sky);
    color: var(--white);
    border: none; cursor: pointer;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .btn-quote:hover { background: var(--deep); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(105deg, rgba(0,27,46,0.92) 0%, rgba(0,27,46,0.55) 55%, transparent 100%),
      url('images/banner.jpeg') center/cover no-repeat;
  }
  /* Diagonal fence pattern overlay */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(0,174,239,0.04) 30px,
      rgba(0,174,239,0.04) 31px
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    width: 100%;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,174,239,0.18);
    border: 1px solid rgba(0,174,239,0.35);
    color: var(--sky);
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-tag span { width: 6px; height: 6px; background: var(--sky); border-radius: 50%; display: block; }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.1s ease both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--sky);
    display: block;
  }
  .hero p {
    font-size: 18px;
    color: #9ec8e0;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 36px;
    animation: fadeUp 0.6s 0.2s ease both;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--sky);
    color: var(--white);
    border: 2px solid var(--sky);
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--deep); border-color: var(--deep); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

  /* Hero stats */
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
    animation: fadeUp 0.6s 0.4s ease both;
    flex-wrap: wrap;
  }
  .stat { text-align: left; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 38px;
    color: var(--sky);
    line-height: 1;
  }
  .stat-label { font-size: 13px; color: #7eafc8; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* ── BANNER ─────────────────────────────── */
  .banner {
    position: relative;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .bg-img {
    position: absolute;
    inset: 0;
    background:url(images/3.jpeg) ;
    transform: scale(1.06);
    animation: kenBurns 18s ease-in-out infinite alternate;
  }
  @keyframes kenBurns {
    from { transform: scale(1.06) translateX(0); }
    to   { transform: scale(1.12) translateX(-2%); }
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
      rgba(0,29,46,0.97) 0%,
      rgba(0,47,73,0.92) 38%,
      rgba(0,59,92,0.72) 58%,
      rgba(0,174,239,0.18) 78%,
      transparent 100%
    );
  }

  .light-ray {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
      transparent 52%,
      rgba(0,174,239,0.07) 54%,
      rgba(0,174,239,0.035) 57%,
      transparent 60%
    );
    animation: rayMove 4s ease-in-out infinite alternate;
  }
  @keyframes rayMove {
    from { transform: translateX(-30px); }
    to   { transform: translateX(30px); }
  }

  .bottom-glow {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00AEEF 35%, #7de5ff 50%, #00AEEF 65%, transparent);
    box-shadow: 0 0 30px 4px rgba(0,174,239,0.6);
    animation: glowPulse 3s ease-in-out infinite;
  }
  @keyframes glowPulse {
    0%,100% { opacity: 0.8; }
    50%      { opacity: 1; box-shadow: 0 0 50px 8px rgba(0,174,239,0.8); }
  }

  /* ── INNER LAYOUT ────────────────────────── */
  .inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  /* ── LEFT: TEXT ──────────────────────────── */
  .text-col {
    flex: 1 1 0;
    min-width: 0;
    animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(34px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00AEEF;
    margin-bottom: 14px;
    animation: fadeUp 0.9s 0.05s both;
  }
  .eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: #00AEEF;
    box-shadow: 0 0 8px rgba(0,174,239,0.8);
    flex-shrink: 0;
  }

 .brand {
	/* font-family: 'Bebas Neue', sans-serif; */
	font-size: clamp(48px, 7vw, 56px);
	line-height: 0.92;
	letter-spacing: 2px;
	color: #fff;
	animation: fadeUp 0.9s 0.1s both;
	font-weight: 800;
	text-transform: uppercase;
}
  .brand span { color: #00AEEF; text-shadow: 0 0 40px rgba(0,174,239,0.5); }

  .cursive {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(24px, 3.5vw, 44px);
    color: #7de5ff;
    margin: 8px 0 16px;
    text-shadow: 0 2px 20px rgba(0,174,239,0.35);
    animation: fadeUp 0.9s 0.18s both;
  }

  .divider {
    width: 56px; height: 2px;
    background: linear-gradient(90deg, #00AEEF, transparent);
    margin-bottom: 14px;
    animation: fadeUp 0.9s 0.22s both;
  }

  .body-text {
    font-size: clamp(10px, 1.2vw, 13px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    animation: fadeUp 0.9s 0.26s both;
  }

  .cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.32s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00AEEF;
    color: #003B5C;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(10px, 1.1vw, 12px);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,174,239,0.45), 0 2px 0 rgba(255,255,255,0.15) inset;
    transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
    white-space: nowrap;
  }
  .btn-primary:hover {
    background: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,174,239,0.6);
  }
  .btn-primary .arrow {
    width: 20px; height: 20px;
    background: #003B5C;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  .btn-primary:hover .arrow { transform: translateX(3px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(10px, 1.1vw, 12px);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: color 0.25s;
    white-space: nowrap;
  }
  .btn-outline:hover { color: #00AEEF; }
  .btn-outline .play {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: border-color 0.25s, background 0.25s;
    flex-shrink: 0;
  }
  .btn-outline:hover .play { border-color: #00AEEF; background: rgba(0,174,239,0.12); }

  .stats {
    display: flex;
    gap: 0;
    margin-top: 36px;
    animation: fadeUp 0.9s 0.4s both;
    flex-wrap: wrap;
  }
  .stat-item { text-align: left; padding: 0 24px 0 0; }
  .stat-item:first-child { padding-left: 0; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    color: #00AEEF;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0,174,239,0.4);
  }
  .stat-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
  }
  .stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    align-self: center;
    margin-right: 24px;
    flex-shrink: 0;
  }

  /* ── RIGHT: IMAGES ───────────────────────── */
  .img-col {
    flex: 0 0 auto;
    position: relative;
    width: clamp(280px, 32vw, 420px);
    height: clamp(280px, 32vw, 420px);
    animation: fadeUp 1s 0.2s cubic-bezier(0.22,1,0.36,1) both;
  }

  .ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88%; height: 88%;
    border-radius: 50%;
    border: 1px solid rgba(0,174,239,0.3);
    box-shadow: 0 0 0 20px rgba(0,174,239,0.05), 0 0 0 40px rgba(0,174,239,0.025);
    animation: ringPulse 3s ease-in-out infinite;
  }
  @keyframes ringPulse {
    0%,100% { transform: translate(-50%,-50%) scale(1); }
    50%      { transform: translate(-50%,-50%) scale(1.04); }
  }

  .circle-main {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76%; height: 76%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #00AEEF;
    box-shadow:
      0 0 0 12px rgba(0,59,92,0.6),
      0 0 0 14px rgba(0,174,239,0.2),
      0 24px 70px rgba(0,0,0,0.5);
  }
  .circle-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .circle-main:hover img { transform: scale(1.07); }

  .circle-sm {
    position: absolute;
    bottom: 4%;
    left: -4%;
    width: 40%; height: 40%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow:
      0 0 0 8px rgba(0,59,92,0.7),
      0 0 0 10px rgba(0,174,239,0.18),
      0 16px 48px rgba(0,0,0,0.5);
    animation: floatBob 4s ease-in-out infinite;
  }
  @keyframes floatBob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .circle-sm img { width: 100%; height: 100%; object-fit: cover; }

  .badge {
    position: absolute;
    top: 14%;
    right: -4%;
    background: linear-gradient(135deg, #00AEEF, #0090d0);
    color: #003B5C;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(8px, 0.9vw, 10px);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0,174,239,0.5);
    white-space: nowrap;
    animation: floatBob 3s 1s ease-in-out infinite;
  }

  /* ── DECORATIVE DOTS ─────────────────────── */
  .dots {
    position: absolute;
    display: grid;
    gap: 7px;
    z-index: 5;
  }
  .dots.tr { top: 24px; right: 50px; grid-template-columns: repeat(5,6px); }
  .dots.bl { bottom: 30px; left: 55px; grid-template-columns: repeat(4,6px); }
  .dots span { display: block; width: 4px; height: 4px; border-radius: 50%; background: rgba(0,174,239,0.4); }

  /* ══════════════════════════════════════════
     RESPONSIVE BREAKPOINTS
  ══════════════════════════════════════════ */

  /* Tablet landscape / small desktop */
  @media (max-width: 1024px) {
    .inner {
      padding: 70px 40px;
      gap: 30px;
    }
    .img-col {
      width: clamp(240px, 38vw, 340px);
      height: clamp(240px, 38vw, 340px);
    }
    .stats { gap: 0; }
    .stat-item { padding-right: 18px; }
    .stat-sep { margin-right: 18px; }
  }

  /* Tablet portrait — stack vertically */
  @media (max-width: 768px) {
    .banner { min-height: 100svh; }

    .overlay {
      background: linear-gradient(180deg,
        rgba(0,29,46,0.96) 0%,
        rgba(0,47,73,0.90) 55%,
        rgba(0,59,92,0.80) 100%
      );
    }

    .inner {
      flex-direction: column-reverse;
      align-items: center;
      text-align: center;
      padding: 60px 28px 50px;
      gap: 36px;
    }

    .eyebrow { justify-content: center; }

    .brand { font-size: clamp(52px, 13vw, 72px); }

    .cursive { font-size: clamp(26px, 7vw, 36px); }

    .body-text { font-size: 10px; letter-spacing: 2.5px; }

    .cta-row {
      justify-content: center;
    }

    .img-col {
      width: clamp(220px, 55vw, 300px);
      height: clamp(220px, 55vw, 300px);
      flex-shrink: 0;
    }

    .badge { font-size: 8px; padding: 6px 13px; }

    .stats {
      justify-content: center;
      margin-top: 28px;
      gap: 0;
    }

    .dots.tr { right: 20px; }
    .dots.bl { left: 20px; }
  }

  /* Mobile */
  @media (max-width: 480px) {
    .inner {
      padding: 52px 20px 44px;
      gap: 30px;
    }

    .eyebrow { font-size: 9.5px; letter-spacing: 3px; }

    .brand { font-size: clamp(44px, 15vw, 62px); }

    .cursive { font-size: clamp(22px, 8vw, 30px); margin-bottom: 12px; }

    .body-text { letter-spacing: 2px; margin-bottom: 24px; }

    .btn-primary {
      padding: 13px 24px;
      font-size: 10px;
      letter-spacing: 2px;
    }

    .btn-outline { font-size: 10px; }
    .btn-outline .play { width: 32px; height: 32px; }

    .img-col {
      width: clamp(190px, 68vw, 250px);
      height: clamp(190px, 68vw, 250px);
    }

    .circle-main { border-width: 4px; }
    .circle-sm { border-width: 3px; }

    .stats { gap: 0; margin-top: 22px; }
    .stat-item { padding-right: 14px; }
    .stat-sep { margin-right: 14px; height: 36px; }
    .stat-num { font-size: 26px; }
    .stat-lbl { font-size: 8px; letter-spacing: 1.5px; }

    .dots.tr { display: none; }
    .dots.bl { display: none; }
  }

  /* Very small phones */
  @media (max-width: 360px) {
    .brand { font-size: 40px; }
    .cursive { font-size: 20px; }
    .cta-row { flex-direction: column; align-items: center; }
    .btn-outline { display: none; }
    .stats { gap: 0; }
    .stat-item { padding-right: 10px; }
    .stat-sep { margin-right: 10px; }
  }
  /* ── FEATURES STRIP ── */
  .features-strip {
    background: var(--navy);
    padding: 0;
  }
  .features-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .feat-item:last-child { border-right: none; }
  .feat-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(0,174,239,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--sky);
  }
  .feat-icon svg { width: 22px; height: 22px; }
  .feat-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    letter-spacing: 0.3px;
  }
  .feat-text span { font-size: 12px; color: #7eafc8; }

  /* ── SECTION COMMONS ── */
  section { padding: 80px 0; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .section-head { margin-bottom: 48px; }
  .section-head.center { text-align: center; }
  .eyebrow {
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 10px;
  }
  .section-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -0.5px;
  }
  .section-head p { font-size: 18px; color: var(--muted); margin-top: 12px; max-width: 540px; line-height: 1.65; }
  .section-head.center p { margin: 12px auto 0; }

  /* ── PRODUCT CATEGORIES ── */
  .categories { background: var(--gray); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .cat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,90,142,0.18); }
  .cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .cat-card:hover img { transform: scale(1.06); }
  .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,27,46,0.85) 0%, rgba(0,27,46,0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.3s;
  }
  .cat-card:hover .cat-overlay { background: linear-gradient(0deg, rgba(0,90,142,0.9) 0%, rgba(0,90,142,0.2) 60%); }
  .cat-info { width: 100%; }
  .cat-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .cat-info p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.4; margin-bottom: 14px; }
  .cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sky);
    text-decoration: none;
  }
  .cat-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
  .cat-card:hover .cat-link svg { transform: translateX(4px); }

  /* ── PRODUCTS ── */
  .products { background: var(--white); }
  .products-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
  }
  .view-all {
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sky);
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
  }
  .view-all:hover { border-color: var(--sky); }
  .view-all svg { width: 14px; height: 14px; }
  .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
  .ftab {
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    border: 2px solid #dde3e8;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
  }
  .ftab.active, .ftab:hover { background: var(--sky); border-color: var(--sky); color: var(--white); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .prod-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4eaf0;
    background: var(--white);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .prod-card.is-hidden { display: none; }
  .prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,90,142,0.13); }
  .no-products {
    display: none;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid #e4eaf0;
    border-radius: 8px;
    background: var(--gray);
    color: var(--muted);
    text-align: center;
    font-size: 15px;
  }
  .no-products.show { display: block; }
  .prod-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--ice);
  }
  .prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .prod-card:hover .prod-img img { transform: scale(1.05); }
  .prod-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--sky);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .prod-badge.sale { background: var(--accent); color: var(--dark); }
  .prod-actions {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s, transform 0.25s;
  }
  .prod-card:hover .prod-actions { opacity: 1; transform: translateX(0); }
  .pa-btn {
    width: 34px; height: 34px;
    background: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: var(--navy);
    transition: background 0.2s, color 0.2s;
  }
  .pa-btn:hover { background: var(--sky); color: var(--white); }
  .pa-btn svg { width: 16px; height: 16px; }
  .prod-body { padding: 16px; }
  .prod-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sky);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .prod-body h4 {
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .prod-price {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .price-cur {
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
  }
  .price-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
  }
  .prod-footer {
    padding: 0 16px 16px;
  }
  .add-cart {
    width: 100%;
    /*! font-family: 'Barlow Condensed', sans-serif; */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s, border-color 0.2s;
  }
  .add-cart:hover { background: var(--sky); border-color: var(--sky); }
  .add-cart svg { width: 16px; height: 16px; }

  /* ── EXPERIENCE SHOWCASE ── */
  .experience-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    padding: 0;
    background: #000;
  }
  .experience-image {
    min-height: 560px;
    overflow: hidden;
  }
  .experience-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .experience-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    padding: 80px 72px;
    color: var(--white);
  }
  .experience-kicker {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    color: #a0a0a0;
    font-size: 18px;
    font-weight: 800;
  }
  .experience-kicker::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #d5ae81;
  }
  .experience-content h2 {
    max-width: 620px;
    margin-bottom: 34px;
    color: var(--white);
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.08;
    font-weight: 900;
  }
  .experience-content h3 {
    max-width: 620px;
    margin-bottom: 26px;
    color: #d5ae81;
    font-size: 25px;
    line-height: 1.28;
    font-weight: 800;
  }
  .experience-content > p:not(.experience-kicker) {
    max-width: 640px;
    margin-bottom: 46px;
    color: #9d9d9d;
    font-size: 19px;
    line-height: 1.6;
  }
  .experience-btn {
    width: fit-content;
    min-width: 200px;
    padding: 20px 34px;
    background: var(--sky);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .experience-btn:hover {
    background: var(--sky);
    transform: translateY(-2px);
  }

  /* ── PROJECTS SLIDER ── */
  .love-projects {
    position: relative;
    padding: 76px 0 88px;
    overflow: hidden;
    background: var(--white);
    font-family: 'Jost', sans-serif;
  }
  .love-projects-head {
    max-width: 1800px;
    margin: 0 auto 82px;
    padding: 0 7vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
  .love-projects-head h2 {
    margin: 0;
    color: #12382d;
    font-size: clamp(42px, 4.5vw, 72px);
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: 0;
  }
  .love-projects-btn {
    flex: 0 0 auto;
    margin-top: 28px;
    min-width: 202px;
    padding: 14px 30px;
    border-radius: 8px;
    background: var(--sky);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .love-projects-btn:hover {
    background: #b9d632;
    transform: translateY(-2px);
  }
  .love-projects-slider-wrap {
    position: relative;
    width: 100%;
  }
  .project-swiper {
    width: 100%;
    overflow: visible;
  }
  .project-slide {
    width: min(30vw, 610px);
    min-width: 430px;
  }
  .project-slide img {
    width: 100%;
    aspect-ratio: 1.32 / 1;
    display: block;
    object-fit: cover;
    border-radius: 18px;
  }
  .project-slide h3 {
    margin: 22px 0 4px;
    padding: 0 26px;
    color: #12382d;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
  }
  .project-slide p {
    padding: 0 26px;
    color: #0c642c;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .project-arrow {
    position: absolute;
    top: 44%;
    z-index: 5;
    width: 82px;
    height: 82px;
    border: none;
    border-radius: 50%;
    background: #ecf8fb;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(16, 45, 36, 0.08);
    transform: translateY(-50%);
    transition: background 0.2s, transform 0.2s;
  }
  .project-arrow:hover {
    background: #00aeef;
    transform: translateY(-50%) scale(1.04);
  }
  .project-arrow svg {
    width: 30px;
    height: 30px;
  }
  .project-arrow-prev { left: 28px; }
  .project-arrow-next { right: 28px; }
  .project-dots {
    position: absolute;
    z-index: 4;
    width: 40px;
    height: 40px;
    pointer-events: none;
    background-image: radial-gradient(#0f5b28 3px, transparent 4px);
    background-size: 18px 18px;
    background-position: center;
  }
  .project-dots-top {
    top: -34px;
    left: 64.5%;
  }
  .project-dots-bottom {
    bottom: 70px;
    left: 34%;
  }

  /* ── WHY CHOOSE US ── */
  .why { background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%); padding: 80px 0; position: relative; overflow: hidden; }
  .why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(0,174,239,0.1) 0%, transparent 60%);
  }
  .why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .why-left { position: relative; z-index: 1; }
  .why-left .section-head h2 { color: var(--white); }
  .why-left .section-head p { color: #7eafc8; }
  .why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .why-num {
    width: 48px; height: 48px;
    flex-shrink: 0;
    background: rgba(0,174,239,0.15);
    border: 1px solid rgba(0,174,239,0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--sky);
  }
  .why-text strong { display: block; font-size: 18px; color: var(--white); margin-bottom: 4px; font-weight: 600; }
  .why-text span { font-size: 16px; color: #7eafc8; line-height: 1.5; }
  .why-right { position: relative; z-index: 1; }
  .why-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
  .why-img-wrap img { width: 100%; aspect-ratio: 2/2; object-fit: cover; display: block; }
  .why-badge {
    position: absolute;
    bottom: 0; left: 0;
    background: var(--sky);
    color: var(--white);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,174,239,0.3);
  }
  .why-badge strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1;
  }
  .why-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--gray);
    overflow: hidden;
  }
  .testimonials-slider-wrap {
    position: relative;
  }
  .testimonials-swiper {
    overflow: visible;
    padding: 8px 0 12px;
  }
  .testimonials-swiper .swiper-slide {
    height: auto;
  }
  .test-card {
    height: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 34px;
    border: 1px solid #e4eaf0;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .test-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,90,142,0.1); }
  .stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .stars svg { width: 16px; height: 16px; fill: var(--accent); }
  .test-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .test-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--deep));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
  }
  .test-meta strong { display: block; font-size: 15px; color: var(--navy); }
  .test-meta span { font-size: 13px; color: var(--muted); }
  .testimonial-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: #f7fbec;
    color: #0f5b28;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(16, 45, 36, 0.1);
    transform: translateY(-50%);
    transition: background 0.2s, transform 0.2s;
  }
  .testimonial-arrow:hover {
    background: #c9e43f;
    transform: translateY(-50%) scale(1.04);
  }
  .testimonial-arrow svg {
    width: 26px;
    height: 26px;
  }
  .testimonial-arrow-prev { left: -32px; }
  .testimonial-arrow-next { right: -32px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(100deg, var(--sky) 0%, var(--deep) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.04) 20px,
      rgba(255,255,255,0.04) 21px
    );
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cta-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.05;
  }
  .cta-text p { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 8px; }
  .btn-white {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--white);
    color: var(--deep);
    border: 2px solid var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .btn-white:hover { background: transparent; color: var(--white); }
  .btn-white svg { width: 18px; height: 18px; }

  /* ── NEWSLETTER ── */
  .newsletter { background: var(--white); padding: 60px 0; }
  .newsletter-inner {
    background: var(--ice);
    border: 1px solid rgba(0,174,239,0.2);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .nl-text { max-width: 440px; }
  .nl-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .nl-text p { font-size: 15px; color: var(--muted); line-height: 1.55; }
  .nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
  .nl-form input {
    flex: 1;
    min-width: 240px;
    padding: 12px 18px;
    border: 2px solid #ccdde8;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
  }
  .nl-form input:focus { border-color: var(--sky); }
  .nl-form button {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--sky);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .nl-form button:hover { background: var(--deep); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 60px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand img { height: 56px; margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; color: #5a7d96; line-height: 1.65; margin-bottom: 20px; }
  .socials { display: flex; gap: 10px; }
  .social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #7eafc8;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .social-btn:hover { background: var(--sky); color: var(--white); }
  .social-btn svg { width: 16px; height: 16px; }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    font-size: 14px;
    color: #5a7d96;
    text-decoration: none;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 6px;
  }
  .footer-col ul a:hover { color: var(--sky); }
  .footer-col ul a::before { content: '›'; color: var(--sky); font-size: 16px; }
  .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
  .contact-item svg { width: 16px; height: 16px; color: var(--sky); flex-shrink: 0; margin-top: 2px; }
  .contact-item span { font-size: 14px; color: #5a7d96; line-height: 1.5; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-bottom p { font-size: 13px; color: #3d5e73; }
  .footer-bottom a { color: var(--sky); text-decoration: none; }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 13px; color: #3d5e73; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--sky); }

  /* ── MODAL LOGIN ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,15,30,0.7);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: none; background: #f0f4f8; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: background 0.2s;
  }
  .modal-close:hover { background: #dde3e8; }
  .modal-close svg { width: 16px; height: 16px; }
  .modal h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .modal p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
  .form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #dde3e8;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus { border-color: var(--sky); }
  .modal-submit {
    width: 100%;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--sky);
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .modal-submit:hover { background: var(--deep); }
  .modal-foot { text-align: center; margin-top: 16px; font-size: 14px; color: var(--muted); }
  .modal-foot a { color: var(--sky); text-decoration: none; }

  /* ── CART DRAWER ── */
  .cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 360px;
    max-width: 100%;
    background: var(--white);
    z-index: 5000;
    box-shadow: -8px 0 32px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
  }
  .cart-drawer.open { transform: translateX(0); }
  .drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 4999;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .drawer-overlay.open { opacity: 1; pointer-events: all; }
  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e4eaf0;
  }
  .drawer-head h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--navy);
    display: flex; align-items: center; gap: 10px;
  }
  .drawer-head h3 span {
    background: var(--sky);
    color: var(--white);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 100px;
  }
  .drawer-close { border: none; background: none; cursor: pointer; color: var(--muted); padding: 4px; }
  .drawer-close svg { width: 20px; height: 20px; }
  .drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
  .empty-cart { text-align: center; padding: 40px 0; }
  .empty-cart svg { width: 56px; height: 56px; color: #ccd6de; margin-bottom: 16px; }
  .empty-cart p { color: var(--muted); font-size: 15px; }
  .cart-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid #f0f4f8;
  }
  .cart-item-img {
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ice);
  }
  .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
  .cart-item-info { flex: 1; }
  .cart-item-info h5 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .cart-item-info span { font-size: 13px; color: var(--muted); }
  .cart-item-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
  }
  .qty-ctrl {
    display: flex; align-items: center; gap: 8px; margin-top: 8px;
  }
  .qty-btn {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid #dde3e8;
    background: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--navy);
    transition: background 0.15s;
  }
  .qty-btn:hover { background: var(--ice); }
  .qty-val { font-size: 14px; font-weight: 600; color: var(--navy); min-width: 20px; text-align: center; }
  .drawer-foot { padding: 20px 24px; border-top: 1px solid #e4eaf0; }
  .drawer-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
  }
  .drawer-total span { font-size: 15px; color: var(--muted); }
  .drawer-total strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--navy);
  }
  .checkout-btn {
    width: 100%;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--sky);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s;
  }
  .checkout-btn:hover { background: var(--deep); }

  /* ── RESPONSIVE ── */
  .mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-btn:hover {
    background: var(--ice);
    color: var(--sky);
  }
  .mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 1180px) {
    .header-inner { gap: 14px; }
    .nav-menu a {
      padding: 8px 9px;
      font-size: 14px;
    }
    .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .features-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feat-item:nth-child(2) { border-right: none; }
    .feat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  }

  @media (max-width: 980px) {
    .topbar-inner {
      justify-content: center;
      text-align: center;
    }
    .topbar-left,
    .topbar-right {
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 16px;
    }
    .header-inner {
      height: auto;
      min-height: 72px;
      flex-wrap: wrap;
      gap: 10px;
      padding: 8px 20px;
    }
    .logo-wrap,
    .logo-wrap img { height: 54px; }
    .header-actions {
      margin-left: auto;
      order: 2;
    }
    .mobile-menu-btn {
      display: flex;
      order: 3;
    }
    nav {
      order: 4;
      flex: 0 0 100%;
      display: none;
      justify-content: stretch;
      padding: 12px 0 14px;
      border-top: 1px solid #e4eaf0;
    }
    nav.open { display: block; }
    .nav-menu {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
    }
    .nav-menu li { width: 100%; }
    .nav-menu a {
      width: 100%;
      justify-content: space-between;
      padding: 13px 4px;
      font-size: 16px;
      border-radius: 0;
    }
    .nav-menu a::after {
      left: 0;
      right: 0;
      bottom: 7px;
    }
    .has-dropdown > a::before {
      order: 2;
      margin-left: auto;
      transform: rotate(45deg);
    }
    .has-dropdown:hover > a::before,
    .has-dropdown:focus-within > a::before {
      transform: rotate(45deg);
    }
    .dropdown-menu {
      position: static;
      min-width: 0;
      width: 100%;
      padding: 0 0 8px 14px;
      border: none;
      border-left: 2px solid var(--ice);
      border-radius: 0;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: transparent;
    }
    .dropdown-menu::before { display: none; }
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
      transform: none;
    }
    .dropdown-menu a {
      padding: 10px 12px;
      font-size: 14px;
      white-space: normal;
      color: var(--muted);
      background: transparent;
    }
    .hero {
      min-height: auto;
      align-items: flex-end;
    }
    .hero-bg {
      background:
        linear-gradient(180deg, rgba(0,27,46,0.88) 0%, rgba(0,27,46,0.74) 100%),
        url('images/banner.jpeg') center/cover no-repeat;
    }
    .hero-content { padding: 76px 24px 56px; }
    .hero h1 {
      font-size: clamp(44px, 12vw, 72px);
      letter-spacing: 0;
    }
    .cat-grid,
    .test-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .experience-showcase {
      grid-template-columns: 1fr;
      min-height: 0;
    }
    .experience-image {
      min-height: 420px;
    }
    .experience-content {
      max-width: none;
      padding: 64px 42px;
    }
    .love-projects {
      padding: 64px 0 72px;
    }
    .love-projects-head {
      margin-bottom: 56px;
      padding: 0 42px;
    }
    .project-slide {
      width: 46vw;
      min-width: 360px;
    }
    .project-arrow {
      width: 68px;
      height: 68px;
    }
    .project-arrow-prev { left: 18px; }
    .project-arrow-next { right: 18px; }
    .testimonial-arrow {
      width: 58px;
      height: 58px;
    }
    .testimonial-arrow-prev { left: -10px; }
    .testimonial-arrow-next { right: -10px; }
    .why-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .why-badge {
      left: 16px;
      bottom: 16px;
    }
    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
    }
  }

  @media (max-width: 700px) {
    section { padding: 56px 0; }
    .container,
    .topbar-inner,
    .header-inner,
    .hero-content,
    .features-strip-inner {
      padding-left: 18px;
      padding-right: 18px;
    }
    .topbar { font-size: 12px; }
    .topbar-left {
      flex-direction: column;
      gap: 8px;
    }
    .topbar-right span:nth-child(2) { display: none; }
    .logo-wrap,
    .logo-wrap img { height: 46px; }
    .header-actions { gap: 4px; }
    .icon-btn,
    .mobile-menu-btn {
      width: 38px;
      height: 38px;
    }
    .icon-btn svg {
      width: 20px;
      height: 20px;
    }
    .btn-quote {
      padding: 9px 12px;
      font-size: 13px;
    }
    .hero-content { padding-top: 64px; }
    .hero-tag {
      max-width: 100%;
      font-size: 11px;
      letter-spacing: 1.4px;
      white-space: normal;
    }
    .hero h1 { font-size: clamp(40px, 15vw, 58px); }
    .hero p {
      max-width: 100%;
      font-size: 16px;
    }
    .experience-image {
      min-height: 320px;
    }
    .experience-content {
      padding: 52px 18px;
    }
    .experience-kicker {
      margin-bottom: 22px;
      font-size: 16px;
    }
    .experience-content h2 {
      margin-bottom: 24px;
      font-size: clamp(34px, 10vw, 46px);
    }
    .experience-content h3 {
      margin-bottom: 20px;
      font-size: 21px;
    }
    .experience-content > p:not(.experience-kicker) {
      margin-bottom: 34px;
      font-size: 16px;
    }
    .experience-btn {
      width: 100%;
      min-width: 0;
      padding: 16px 24px;
    }
    .love-projects {
      padding: 54px 0 62px;
    }
    .love-projects-head {
      margin-bottom: 38px;
      padding: 0 18px;
      flex-direction: column;
      gap: 18px;
    }
    .love-projects-head h2 {
      font-size: clamp(36px, 12vw, 48px);
    }
    .love-projects-btn {
      width: 100%;
      margin-top: 0;
      padding: 16px 24px;
      font-size: 16px;
    }
    .project-slide {
      width: calc(100vw - 56px);
      min-width: 0;
    }
    .project-slide img {
      border-radius: 14px;
    }
    .project-slide h3 {
      margin-top: 18px;
      padding: 0 6px;
      font-size: 24px;
    }
    .project-slide p {
      padding: 0 6px;
      font-size: 14px;
    }
    .project-arrow {
      top: 42%;
      width: 54px;
      height: 54px;
    }
    .project-arrow svg {
      width: 24px;
      height: 24px;
    }
    .project-arrow-prev { left: 10px; }
    .project-arrow-next { right: 10px; }
    .project-dots {
      display: none;
    }
    .testimonial-arrow {
      top: 48%;
      width: 50px;
      height: 50px;
    }
    .testimonial-arrow svg {
      width: 22px;
      height: 22px;
    }
    .testimonial-arrow-prev { left: -6px; }
    .testimonial-arrow-next { right: -6px; }
    .hero-ctas,
    .cta-inner > div:last-child,
    .nl-form {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
    }
    .btn-primary,
    .btn-outline,
    .btn-white,
    .nl-form button {
      justify-content: center;
      width: 100%;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin-top: 40px;
      padding-top: 28px;
    }
    .stat-num { font-size: 32px; }
    .features-strip-inner,
    .cat-grid,
    .products-grid,
    .test-grid,
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .feat-item {
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 18px 0;
    }
    .feat-item:last-child { border-bottom: none; }
    .products-top {
      align-items: flex-start;
      flex-direction: column;
    }
    .filter-tabs {
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 4px;
      -webkit-overflow-scrolling: touch;
    }
    .ftab { flex: 0 0 auto; }
    .cat-card { aspect-ratio: 16/11; }
    .prod-actions {
      opacity: 1;
      transform: none;
    }
    .why-img-wrap { border-radius: 12px; }
    .why-badge {
      padding: 16px 18px;
      border-radius: 10px;
    }
    .why-badge strong { font-size: 32px; }
    .test-card { padding: 22px; }
    .cta-inner,
    .newsletter-inner {
      align-items: stretch;
    }
    .newsletter-inner {
      padding: 28px 20px;
    }
    .nl-form input {
      min-width: 0;
      width: 100%;
    }
    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }
    .footer-links {
      flex-wrap: wrap;
      gap: 10px 16px;
    }
    .modal {
      max-width: 100%;
      padding: 32px 22px;
      border-radius: 12px;
    }
    .cart-drawer { width: min(100vw, 380px); }
    .drawer-head,
    .drawer-body,
    .drawer-foot {
      padding-left: 18px;
      padding-right: 18px;
    }
    .cart-item { gap: 10px; }
    .cart-item-img {
      width: 62px;
      height: 62px;
    }
    .cart-item-price { font-size: 16px; }
  }

  @media (max-width: 420px) {
    .header-actions { gap: 2px; }
    .btn-quote { display: none; }
    .hero h1 { font-size: 38px; }
    .section-head h2 { font-size: 30px; }
    .hero-stats { grid-template-columns: 2fr auto; }
    .cat-overlay { padding: 18px; }
    .cart-item { flex-wrap: wrap; }
    .cart-item-price {
      margin-left: 72px;
      width: 100%;
    }
  }
