  :root {
    --bg: #060a12;
    --bg-2: #0b1020;
    --panel: rgba(13, 21, 42, 0.65);
    --panel-2: rgba(20, 30, 55, 0.45);
    --panel-solid: #0d1528;
    --stroke: rgba(100, 180, 255, 0.10);
    --stroke-2: rgba(100, 180, 255, 0.06);
    --text: #eaf0ff;
    --muted: #7b8fad;
    --accent: #00d4aa;
    --accent-2: #0ea5e9;
    --accent-glow: rgba(0, 212, 170, 0.25);
    --warm: #f5c542;
    --max: 1200px;
    --radius: 20px;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    --shadow-accent: 0 12px 40px rgba(0, 212, 170, 0.20);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.07), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: "";
    position: fixed;
    bottom: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .wrap,
  .auto-container {
    position: static;
    max-width: var(--max);
    /* 1200px — matches reference .auto-container */
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Reference-site container utilities */
  @media (min-width: 1200px) {
    .container {
      max-width: 1170px;
      padding: 0 15px;
      margin: 0 auto;
    }
  }

  .large-container {
    max-width: 1450px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .small-container {
    max-width: 680px;
    margin: 0 auto;
  }

  /* ─── NAV ─── */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.95) 0%, rgba(6, 10, 18, 0.6) 70%, transparent 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-radius: 16px;
    background: rgba(11, 16, 32, 0.7);
    border: 1px solid var(--stroke-2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.02em;
  }

  .logo img.logo {
    display: block;
    max-height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
  }

  a.logo {
    display: flex;
    align-items: center;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #000000;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    box-shadow: var(--shadow-accent);
    position: relative;
  }

  .logo-icon::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: #000000;
    opacity: 0.25;
    z-index: -1;
    filter: blur(8px);
  }

  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    flex: 1;
  }

  .menu a {
    transition: color 0.2s;
    position: relative;
  }

  .menu a:hover {
    color: var(--text);
  }

  .menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s;
  }

  .menu a:hover::after {
    width: 100%;
  }

  .nav-btns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-accent {
    background:#7e0d19;
    color: #fff;
    box-shadow: var(--shadow-accent);
  }

  .btn-accent:hover {
    box-shadow: 0 16px 48px rgba(0, 212, 170, 0.3);
  }

  .btn-ghost {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  .btn-ghost:hover {
    background: rgba(93, 6, 6, 0.08);
  }

  .btn-outline {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
  }

  .btn-outline:hover {
    background: rgba(0, 212, 170, 0.08);
  }

  .btn-lg {
    padding: 17px 32px;
    font-size: 15px;
    border-radius: 14px;
  }

  /* ─── PAGE BANNER (inner pages) ─── */
  /* .page-hero {
    position: relative;
    padding: 72px 0 56px;
    overflow: hidden;
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0, 212, 170, 0.08), transparent 70%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(14, 165, 233, 0.06), transparent 60%);
    pointer-events: none;
  }

  .page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
  } */

 .hero-inner {
  max-width: 700px;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
}

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.18);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
  }

  .page-hero h1 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin-bottom: 18px;
  }

  .page-hero p {
    color: var(--muted);
    font-size: 17px;
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  /* Tab switcher (commercial / residential toggle) */
  .tab-switcher {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
  }

  .tab-btn {
    padding: 9px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.25s;
  }

  .tab-btn:hover {
    color: var(--text);
  }

  .tab-btn.active {
    background:#000000;
    color: #fff;
    box-shadow: var(--shadow-accent);
  }

  /* Promise row (contact page) */
  .promise-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }

  .promise {
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.15);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
  }

  /* ─── HERO ─── */
  .hero {
    padding: 60px 0 50px;
    text-align: center;

  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.18);
    color: #7e0d19;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
  }

  .hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.4;
    }
  }

  .hero h1 {
    font-size: clamp(40px, 5.5vw, 74px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 900;
    max-width: 920px;
    margin: 0 auto 24px;
  }

  .hero h1 .gradient-text {
    background:#7e0d19;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    color: #7e0d19;
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .hero-visual-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .hero-stat-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .stat-card {
    flex: 1;
    padding: 24px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-card .num {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background:#000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .stat-card .label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
  }

  .hero-main-visual {
    border-radius: 24px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(6, 10, 18, 0) 0%, rgba(6, 10, 18, 0.7) 100%),
      url('https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1400&q=80') center/cover;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  .hero-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }

  .hero-overlay-left h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .hero-overlay-left p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
  }

  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(0, 212, 170, 0.12);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    padding: 40px 0;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 6px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--stroke-2);
  }

  .trust-item {
    text-align: center;
    padding: 20px 12px;
    border-radius: 14px;
    transition: background 0.3s;
  }

  .trust-item:hover {
    background: rgba(255, 255, 255, 0.03);
  }

  .trust-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
  }

  .trust-item span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* ─── SECTIONS ─── */
  section {
    padding: 50px 0;
  }

  .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color:#7e0d19;
    margin-bottom: 14px;
  }

  .sec-label::before {
    content: "";
    width: 20px;
    height: 2px;
    background: #7e0d19;
    border-radius: 2px;
  }

  .sec-title {
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -0.035em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .sec-desc {
    color: var(--muted);
    max-width: 600px;
    font-size: 16px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .sec-head-center {
    text-align: center;
  }

  .sec-head-center .sec-desc {
    margin: 0 auto;
  }

  /* ─── SERVICES ─── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }



  .svc {
    padding: 32px 28px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    z-index: 1;
  }

  .svc::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: attr(data-bg url);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }

  .svc:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 170, 0.2);
  }

  .svc:hover::after {
    opacity: 0.3;
  }

  .svc::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }

  .svc:hover::before {
    opacity: 1;
  }

  .svc-num {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
  }

  .svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(0, 212, 170, 0.15);
    font-size: 22px;
    margin-bottom: 20px;
  }

  .svc h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .svc p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.12);
    color: rgba(0, 212, 170, 0.85);
    font-size: 12px;
    font-weight: 500;
  }

  /* ─── INDUSTRIES BENTO ─── */
  .bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .bento-item {
    padding: 28px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s;
  }

  .bento-item:hover {
    transform: translateY(-3px);
  }

  .bento-item.wide {
    grid-column: span 2;
  }

  .bento-item.tall {
    grid-row: span 2;
  }

  .bento-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .bento-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
  }

  .bento-item .bento-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .bento-visual {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 240px;
    background-size: cover;
    background-position: center;
  }

  .bento-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0.1), rgba(6, 10, 18, 0.85));
  }

  .bento-visual .bento-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
  }

  .bento-visual .bento-cap h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .bento-visual .bento-cap p {
    font-size: 13px;
  }

  /* ─── WHY US ─── */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-left {
    padding: 36px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .why-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(147, 5, 5, 0.03);
    border: 1px solid var(--stroke-2);
    transition: background 0.3s;
  }

  .why-item:hover {
    background: rgba(163, 12, 12, 0.04);
  }

  .why-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background:#7e0d19 ;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff;
    margin-top: 2px;
  }

  .why-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .why-item span {
    font-size: 13px;
    color: var(--muted);
  }

  .why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 28px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
  }

  .why-card:hover {
    transform: translateY(-3px);
  }

  .why-card .big-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    background:#7e0d19;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .why-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .why-card p {
    color: var(--muted);
    font-size: 13px;
  }

  /* ─── PROJECTS ─── */
  .proj-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .proj-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s;
  }

  .proj-card:hover {
    transform: scale(1.01);
  }

  .proj-card.featured {
    grid-row: span 2;
    min-height: 620px;
  }

  .proj-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 10, 18, 0) 30%, rgba(6, 10, 18, 0.9) 100%);
  }

  .proj-info {
    position: relative;
    z-index: 1;
    padding: 28px;
  }

  .proj-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .proj-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .proj-info p {
    color: #a0b0c8;
    font-size: 14px;
    max-width: 440px;
  }

  /* ─── TESTIMONIALS ─── */
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .test-card {
    padding: 30px;
    border-radius: 22px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s;
  }

  .test-card:hover {
    transform: translateY(-3px);
  }

  .test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
  }

  .star {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(245, 197, 66, 0.12);
    display: grid;
    place-items: center;
    font-size: 12px;
    color: var(--warm);
  }

  .test-card blockquote {
    font-size: 15px;
    color: #c8d4e6;
    line-height: 1.65;
    margin: 0 0 22px;
    font-style: normal;
  }

  .test-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(14, 165, 233, 0.15));
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
  }

  .test-name {
    font-weight: 600;
    font-size: 15px;
  }

  .test-role {
    font-size: 13px;
    color: var(--muted);
  }

  /* ─── CTA BANNER ─── */
  .cta-section {
    padding: 50px 0;
  }

  .cta-box {
    padding: 50px;
    border-radius: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(0, 212, 170, 0.12), transparent 50%),
      radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.08), transparent 50%),
      var(--panel);
    border: 1px solid rgba(0, 212, 170, 0.15);
    box-shadow: var(--shadow);
  }

  .cta-box h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .cta-box p {
    color: var(--muted);
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 30px;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* ─── CONTACT ─── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
  }

  .contact-info {
    padding: 36px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
  }

  .contact-entries {
    display: grid;
    gap: 14px;
    margin-top: 28px;
  }

  .contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--stroke-2);
  }

  .contact-entry-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(14, 165, 233, 0.08));
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-entry strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }

  .contact-entry span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
  }

  .hours-grid {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--stroke-2);
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--muted);
  }

  .hours-row strong {
    color: var(--text);
    font-weight: 500;
  }

  .contact-form {
    padding: 36px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
  }

  .field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .field-grid .span-2 {
    grid-column: 1 / -1;
  }

  .field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  input,
  textarea,
  select {
    width: 100%;
    border: 1px solid var(--stroke);
    color: var(--text);
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
  }

  input:focus,
  textarea:focus {
    border-color: rgba(0, 212, 170, 0.4);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
  }

  input::placeholder,
  textarea::placeholder {
    color: #4a5e78;
  }

  select {
    appearance: none;
    cursor: pointer;
  }

  /* ─── FOOTER ─── */
  .site-footer {
    padding: 60px 0 0;
    margin-top: 40px;
    position: relative;
    z-index: 1;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--stroke-2);
  }

  .footer-brand .logo {
    margin-bottom: 18px;
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 22px;
  }

  .footer-socials {
    display: flex;
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #000000;
    border: 1px solid var(--stroke-2);
    display: grid;
    place-items: center;
    font-size: 16px;
    color: var(--muted);
    transition: all 0.3s;
  }

  .social-link:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.2);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 20px;
  }

  .footer-links {
    display: grid;
    gap: 12px;
  }

  .footer-links a {
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
  }

  .footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
  }

  .footer-cta-box {
    padding: 20px;
    border-radius: 16px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.12);
    margin-top: 8px;
  }

  .footer-cta-box p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid var(--stroke-2);
  }

  .footer-cert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--stroke-2);
  }

  .footer-cert-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(14, 165, 233, 0.08));
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .footer-cert span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
  }

  .footer-cert strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 36px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-size: 13px;
    color: var(--muted);
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s;
  }

  .footer-legal a:hover {
    color: var(--accent);
  }

  .back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--panel-solid);
    border: 1px solid var(--stroke);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 18px;
    cursor: pointer;
    z-index: 40;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .back-to-top:hover {
    background: rgba(0, 212, 170, 0.12);
    border-color: rgba(0, 212, 170, 0.3);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1080px) {
    .hero-visual-row {
      grid-template-columns: 1fr 1fr;
    }

    .hero-stat-col:last-child {
      display: none;
    }

    .services-grid {
      grid-template-columns: 1fr 1fr;
    }

    .bento {
      grid-template-columns: 1fr 1fr;
    }

    .bento-item.wide {
      grid-column: span 1;
    }

    .bento-item.tall {
      grid-row: span 1;
    }

    .why-grid {
      grid-template-columns: 1fr;
    }

    .why-right {
      grid-template-columns: 1fr 1fr;
    }

    .proj-grid {
      grid-template-columns: 1fr 1fr;
    }

    .proj-card.featured {
      grid-row: span 1;
      min-height: 340px;
    }

    .test-grid {
      grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
      grid-template-columns: 1fr;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .footer-middle {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 780px) {
    .wrap {
      width: min(calc(100% - 28px), var(--max));
    }

    .menu {
      display: none;
    }

    .nav-btns .btn-ghost {
      display: none;
    }

    .hero {
      padding: 36px 0 30px;
    }

    .hero-visual-row {
      grid-template-columns: 1fr;
    }

    .hero-stat-col:first-child {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .hero-stat-col:last-child {
      display: none;
    }

    .trust-inner {
      grid-template-columns: repeat(3, 1fr);
    }

    .trust-item:nth-child(n+4) {
      display: none;
    }

    .services-grid,
    .bento,
    .why-right,
    .test-grid,
    .field-grid,
    .footer-middle {
      grid-template-columns: 1fr;
    }

    .proj-grid {
      grid-template-columns: 1fr;
    }

    .cta-box {
      padding: 32px 24px;
    }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }

    .hero-overlay-info {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /*Service Page*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at 80% 10%, rgba(0, 170, 255, 0.12), transparent 30%),
      radial-gradient(circle at 15% 60%, rgba(0, 102, 255, 0.08), transparent 28%),
      linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:#000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background:#7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #000000;
    border-color: var(--stroke);
    color: var(--text);
  }

  /* PAGE HERO */
  .page-hero {
    padding: 60px 0 80px;
  }

  .hero-inner {
    padding: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.10), rgba(0, 170, 255, 0.04), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 170, 255, 0.16);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 170, 255, 0.18), transparent 55%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3cffcf;
    box-shadow: 0 0 18px rgba(60, 255, 207, 0.8);
  }

  h1 {
    margin: 0 auto;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 900px;
  }

  .hero-inner>p {
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
    margin: 22px auto 34px;
    position: relative;
  }

  .tab-switcher {
    display: inline-flex;
    border-radius: 16px;
    background: #000000;
    border: 1px solid var(--stroke);
    padding: 6px;
    gap: 6px;
  }

  .tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    font-family: inherit;
    color: var(--muted);
    background: transparent;
  }

  .tab-btn.active {
    background:#000000;
    color: white;
  }

  section {
    padding: 20px 0 80px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
  }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 36px;
  }

  /* SERVICE CARDS - 2 col big cards */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .svc-card {
    padding: 34px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
  }

  .svc-card::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 65%);
    pointer-events: none;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(0, 102, 255, 0.20);
    font-size: 22px;
    flex-shrink: 0;
  }

  .svc-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .svc-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 15px;
  }

  .svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 7px;
  }

  .svc-list li {
    color: #c8d4e2;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .svc-list li::before {
    content: "✓";
    color: var(--accent-2);
    font-weight: 700;
    font-size: 12px;
  }

  /* SMART HOME FEATURE */
  .smart-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
  }

  .smart-panel {
    padding: 38px;
    border-radius: 28px;
  }

  .smart-panel p {
    color: var(--muted);
    font-size: 16px;
    margin: 16px 0 24px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
  }

  .feature-list li {
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.14);
    color: #d0ddf0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-list li::before {
    content: "→";
    color: var(--accent-2);
    font-weight: 700;
  }

  .smart-visual {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    min-height: 420px;
  }

  .visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(10, 14, 22, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .visual-badge strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .visual-badge span {
    color: var(--muted);
    font-size: 13px;
  }

  /* CTA */
  .cta-band {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.20), rgba(0, 170, 255, 0.08), #000000);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
  }

  .cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -0.03em;
  }

  .cta-band p {
    margin: 0;
    color: #c5ceda;
    max-width: 580px;
  }

  footer {
    padding: 30px 0 60px;
    color: var(--muted);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  @media (max-width: 900px) {

    .services-grid,
    .smart-grid {
      grid-template-columns: 1fr;
    }

    .hero-inner {
      padding: 36px 24px;
    }
  }

  @media (max-width: 600px) {
    .nav-links {
      display: none;
    }

    .svc-card {
      grid-template-columns: 1fr;
    }

    .cta-band {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /*about page*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --radius: 24px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at top left, rgba(0, 102, 255, 0.15), transparent 30%),
      radial-gradient(circle at 85% 20%, rgba(0, 170, 255, 0.07), transparent 25%),
      linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: #7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  /* PAGE HERO *
  .page-hero {
    padding: 60px 0 80px;
  }

  .page-hero-inner {
    padding: 60px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .page-hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(0, 102, 255, 0.18) 0%, transparent 50%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3cffcf;
    box-shadow: 0 0 18px rgba(60, 255, 207, 0.8);
  }

  h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .page-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin: 22px 0 30px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-box {
    padding: 22px;
    border-radius: 20px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.20);
  }

  .stat-box strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--accent-2);
  }

  .stat-box span {
    color: var(--muted);
    font-size: 14px;
  }

  /* SECTIONS */
  section {
    padding: 20px 0 80px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
  }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 36px;
  }

  /* STORY GRID */
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }

  .story-image {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: url('assets/images/index/about-1.avif') center/cover;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  .story-panel {
    padding: 36px;
    border-radius: 28px;
  }

  .story-panel p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 18px;
  }

  /* VALUES */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .value-card {
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  .value-card::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent 65%);
    pointer-events: none;
  }

  .icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(0, 102, 255, 0.18);
    font-size: 22px;
    margin-bottom: 18px;
  }

  .value-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
  }

  /* TEAM */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .team-card {
    padding: 28px;
    border-radius: 24px;
    text-align: center;
  }

  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(0, 170, 255, 0.15));
    border: 2px solid rgba(0, 102, 255, 0.30);
    display: grid;
    place-items: center;
    font-size: 30px;
  }

  .team-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
  }

  .team-card strong {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 600;
  }

  .team-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 10px 0 0;
  }

  /* CTA */
  .cta-band {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.20), rgba(0, 170, 255, 0.08), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
  }

  .cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .cta-band p {
    margin: 0;
    color: #c5ceda;
    max-width: 600px;
  }

  /* FOOTER */
  footer {
    padding: 30px 0 60px;
    color: var(--muted);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  /* @media (max-width: 900px) {

    .page-hero-inner,
    .story-grid {
      grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
      grid-template-columns: 1fr 1fr;
    }

    .page-hero-inner {
      padding: 30px;
    }

    .hero-stats {
      grid-template-columns: 1fr 1fr;
    }
  } */

  @media (max-width: 600px) {

    .values-grid,
    .team-grid,
    .hero-stats {
      grid-template-columns: 1fr;
    }

    .nav-links {
      display: none;
    }

    .cta-band {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /*Contact Page*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 15%, rgba(0, 102, 255, 0.16), transparent 30%), radial-gradient(circle at 85% 70%, rgba(0, 170, 255, 0.08), transparent 28%), linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: #7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  /* PAGE HERO *
  .page-hero {
    padding: 60px 0 70px;
  }

  .hero-inner {
    padding: 50px 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 170, 255, 0.04), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 102, 255, 0.18);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(0, 102, 255, 0.18), transparent 50%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3cffcf;
    box-shadow: 0 0 18px rgba(60, 255, 207, 0.8);
  }

  h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 750px;
  }

  .hero-inner>p {
    color: var(--muted);
    font-size: 17px;
    max-width: 600px;
    margin: 18px 0 0;
    position: relative;
  }

  .promise-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative;
  }

  .promise {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.18);
    font-size: 13px;
    color: #b0c4e8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .promise::before {
    content: "✓";
    color: var(--accent-2);
    font-weight: 800;
  }

  section {
    padding: 20px 0 80px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -0.03em;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  /* CONTACT GRID */
  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 18px;
    align-items: start;
  }

  /* INFO PANEL */
  .info-panel {
    padding: 34px;
    border-radius: 28px;
  }

  .info-panel p {
    color: var(--muted);
    font-size: 15px;
    margin: 0 0 28px;
  }

  .info-items {
    display: grid;
    gap: 14px;
  }

  .info-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(0, 170, 255, 0.08));
    border: 1px solid rgba(0, 102, 255, 0.20);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .info-body strong {
    display: block;
    font-size: 14px;
    color: var(--accent-2);
    font-weight: 600;
    margin-bottom: 4px;
  }

  .info-body span {
    color: var(--muted);
    font-size: 14px;
  }

  .info-body a {
    color: var(--text);
  }

  .hours-grid {
    display: grid;
    gap: 8px;
    margin-top: 6px;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hours-row span:first-child {
    color: var(--text);
  }

  /* FORM PANEL */
  .form-panel {
    padding: 36px;
    border-radius: 28px;
  }

  .form-panel h2 {
    margin-bottom: 6px;
  }

  .form-panel>p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 28px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .form-grid .full {
    grid-column: 1 / -1;
  }

  .field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #b0bfcf;
    margin-bottom: 8px;
  }

  input,
  textarea,
  select {
    width: 100%;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--text);
    border-radius: 14px;
    padding: 15px 18px;
    font: inherit;
    outline: none;
    transition: 0.2s;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: rgba(0, 102, 255, 0.45);
    background: rgba(0, 102, 255, 0.05);
  }

  textarea {
    resize: vertical;
    min-height: 130px;
  }

  select option {
    background: #0d1120;
  }

  input::placeholder,
  textarea::placeholder {
    color: #8691a1;
  }

  .submit-btn {
    width: 100%;
    background: #7e0d19;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 17px 22px;
    font: inherit;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 14px 28px var(--accent-glow);
  }

  .submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px var(--accent-glow);
  }

  /* MAP PLACEHOLDER */
  .map-block {
    margin-top: 18px;
    border-radius: 28px;
    overflow: hidden;
    height: 300px;
    background: #000000;
    border: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .map-block span {
    color: var(--muted);
    font-size: 14px;
  }

  .map-link {
    padding: 12px 20px;
    border-radius: 12px;
    background:#7e0d19;
    border: 1px solid rgba(0, 102, 255, 0.22);
    color: var(--accent-2);
    font-size: 14px;
    font-weight: 600;
  }



  @media (max-width: 960px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .hero-inner {
      padding: 36px 24px;
    }
  }

  @media (max-width: 600px) {
    .nav-links {
      display: none;
    }

    .form-grid {
      grid-template-columns: 1fr;
    }

    .promise-row {
      flex-direction: column;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /*shop page*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 30% 10%, rgba(0, 102, 255, 0.13), transparent 28%), radial-gradient(circle at 80% 65%, rgba(0, 170, 255, 0.07), transparent 28%), linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: #7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  .cart-btn {
    position: relative;
  }

  .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--accent);
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
  }

  /* PAGE HERO *
  .page-hero {
    padding: 60px 0 70px;
  }

  .hero-inner {
    padding: 48px 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.10), rgba(0, 170, 255, 0.04), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 102, 255, 0.16);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(0, 102, 255, 0.15), transparent 50%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.8);
  }

  h1 {
    margin: 0;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    max-width: 600px;
  }

  .hero-text p {
    color: var(--muted);
    font-size: 16px;
    margin: 16px 0 0;
    position: relative;
    max-width: 500px;
  }

  .hero-search {
    position: relative;
    flex-shrink: 0;
    width: 320px;
  }

  .hero-search input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.22);
    color: var(--text);
    font: inherit;
    outline: none;
    font-size: 15px;
    transition: 0.2s;
  }

  .hero-search input:focus {
    border-color: rgba(0, 102, 255, 0.45);
    background: rgba(0, 102, 255, 0.06);
  }

  .hero-search input::placeholder {
    color: #8691a1;
  }

  .hero-search::after {
    content: "🔍";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
  }

  section {
    padding: 20px 0 80px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -0.03em;
  }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 30px;
  }

  /* FILTER ROW */
  .shop-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background:#7e0d19;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: 0.2s;
  }

  .filter-btn.active {
    background: #50080f;
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 16px var(--accent-glow);
  }

  .filter-btn:hover:not(.active) {
    color: var(--text);
    border-color: rgba(145, 20, 20, 0.28);
  }

  .sort-select {
    padding: 10px 16px;
    border-radius: 12px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--muted);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    outline: none;
  }

  .sort-select option {
    background: #0d1120;
  }

  /* PRODUCTS GRID */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .product-card {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.25s;
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-image {
    aspect-ratio: 1;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
  }

  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .badge-new {
    background: rgba(141, 15, 17, 0.75);
    color: white;
  }

  .badge-sale {
    background: rgba(255, 80, 60, 0.80);
    color: white;
  }

  .product-body {
    padding: 18px 20px 20px;
  }

  .product-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-2);
    margin-bottom: 8px;
  }

  .product-body h3 {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1.35;
  }

  .product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
  }

  .product-price .old {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
  }

  .add-btn {
    width: 100%;
    padding: 11px;
    border-radius: 12px;
    background: #7e0d19;
    border: 1px solid rgba(105, 8, 8, 0.25);
    color: var(--accent-2);
    font: inherit;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
  }

  .add-btn:hover {
    background: #730712;
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px #7e0d19;
  }

  /* PROMO BANNER */
  .promo-banner {
    padding: 32px 38px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(0, 170, 255, 0.08), #000000);
    border: 1px solid rgba(0, 102, 255, 0.18);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
  }

  .promo-banner h2 {
    margin: 0 0 6px;
    font-size: clamp(22px, 3vw, 32px);
  }

  .promo-banner p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
  }

  /* CTA */
  .cta-band {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.20), rgba(0, 170, 255, 0.08), #000000);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
  }

  .cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.03em;
  }

  .cta-band p {
    margin: 0;
    color: #c5ceda;
    max-width: 540px;
  }


  @media (max-width: 1060px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 800px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
      flex-direction: column;
      padding: 32px 24px;
    }

    .hero-search {
      width: 100%;
    }
  }

  @media (max-width: 600px) {
    .products-grid {
      grid-template-columns: 1fr;
    }

    .nav-links {
      display: none;
    }

    .cta-band,
    .promo-banner {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }


  /*projects page*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 70% 5%, rgba(0, 102, 255, 0.14), transparent 28%), radial-gradient(circle at 15% 75%, rgba(0, 170, 255, 0.07), transparent 28%), linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background:#7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  /* PAGE HERO *
  .page-hero {
    padding: 60px 0 70px;
  }

  .hero-inner {
    padding: 50px 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.10), rgba(0, 170, 255, 0.04), rgba(255, 255, 255, 0.03));
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(0, 102, 255, 0.20), transparent 45%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.8);
  }

  h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 800px;
  }

  .hero-inner p {
    color: var(--muted);
    font-size: 17px;
    max-width: 620px;
    margin: 18px 0 28px;
    position: relative;
  }

  section {
    padding: 20px 0 80px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 42px);
    letter-spacing: -0.03em;
  }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 36px;
  }

  /* FILTER TABS */
  .filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .filter-btn {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #7e0d19;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: 0.2s;
  }

  .filter-btn.active {
    background: rgb(99, 4, 4);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px var(--accent-glow);
  }

  .filter-btn:hover:not(.active) {
    color: var(--text);
    border-color: rgba(90, 5, 20, 0.3);
  }

  /* PROJECT GRID */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .project-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .project-card:hover {
    transform: translateY(-4px);
  }

  .project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.05), rgba(8, 10, 14, 0.86));
    transition: 0.3s;
  }

  .project-card:hover::before {
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.10), rgba(8, 10, 14, 0.78));
  }

  .project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
  }

  .project-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(0, 102, 255, 0.22);
    border: 1px solid rgba(0, 102, 255, 0.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 10px;
  }

  .project-content h3 {
    margin: 0 0 6px;
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .project-content p {
    margin: 0;
    color: #c0ccda;
    font-size: 13px;
  }

  /* FEATURED PROJECT */
  .featured {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 60px;
  }

  .featured-image {
    border-radius: 28px;
    overflow: hidden;
    min-height: 440px;
    position: relative;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  .featured-label {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.75);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .featured-panel {
    padding: 38px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .featured-panel h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin: 0 0 14px;
  }

  .featured-panel p {
    color: var(--muted);
    font-size: 15px;
    margin: 0 0 22px;
  }

  .detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
  }

  .detail-list li {
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.14);
    color: #d0ddf0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .detail-list li::before {
    content: "▸";
    color: var(--accent-2);
  }

  /* CTA */
  .cta-band {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.20), rgba(0, 170, 255, 0.08), #000000);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
  }

  .cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -0.03em;
  }

  .cta-band p {
    margin: 0;
    color: #c5ceda;
    max-width: 580px;
  }

  footer {
    padding: 30px 0 60px;
    color: var(--muted);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  @media (max-width: 960px) {
    .projects-grid {
      grid-template-columns: 1fr 1fr;
    }

    .featured {
      grid-template-columns: 1fr;
    }

    .hero-inner {
      padding: 36px 24px;
    }
  }

  @media (max-width: 600px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }

    .nav-links {
      display: none;
    }

    .cta-band {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /*residential-service*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at 80% 10%, rgba(0, 170, 255, 0.12), transparent 30%),
      radial-gradient(circle at 15% 60%, rgba(0, 102, 255, 0.08), transparent 28%),
      linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:#000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: #7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  /* PAGE HERO *
  .page-hero {
    padding: 60px 0 80px;
  }

  .hero-inner {
    padding: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.10), rgba(0, 170, 255, 0.04), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 170, 255, 0.16);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 170, 255, 0.18), transparent 55%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3cffcf;
    box-shadow: 0 0 18px rgba(60, 255, 207, 0.8);
  }

  h1 {
    margin: 0 auto;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 900px;
  }

  .hero-inner>p {
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
    margin: 22px auto 34px;
    position: relative;
  }

  .tab-switcher {
    display: inline-flex;
    border-radius: 16px;
    background: #000000;
    border: 1px solid var(--stroke);
    padding: 6px;
    gap: 6px;
  }

  .tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    font-family: inherit;
    color: var(--muted);
    background: transparent;
  }

  .tab-btn.active {
    background: #000000;
    color: white;
  }

  section {
    padding: 20px 0 80px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
  }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 36px;
  }

  /* SERVICE CARDS - 2 col big cards */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .svc-card {
    padding: 34px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: start;
  }

  .svc-card::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 65%);
    pointer-events: none;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(0, 102, 255, 0.20);
    font-size: 22px;
    flex-shrink: 0;
  }

  .svc-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .svc-body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 15px;
  }

  .svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 7px;
  }

  .svc-list li {
    color: #c8d4e2;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .svc-list li::before {
    content: "✓";
    color: var(--accent-2);
    font-weight: 700;
    font-size: 12px;
  }

  /* SMART HOME FEATURE */
  .smart-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: stretch;
  }

  .smart-panel {
    padding: 38px;
    border-radius: 28px;
  }

  .smart-panel p {
    color: var(--muted);
    font-size: 16px;
    margin: 16px 0 24px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
  }

  .feature-list li {
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.14);
    color: #d0ddf0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .feature-list li::before {
    content: "→";
    color: var(--accent-2);
    font-weight: 700;
  }

  .smart-visual {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    min-height: 420px;
  }

  .visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(10, 14, 22, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .visual-badge strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .visual-badge span {
    color: var(--muted);
    font-size: 13px;
  }

  /* CTA */
  .cta-band {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.20), rgba(0, 170, 255, 0.08), #000000);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
  }

  .cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -0.03em;
  }

  .cta-band p {
    margin: 0;
    color: #c5ceda;
    max-width: 580px;
  }

  footer {
    padding: 30px 0 60px;
    color: var(--muted);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  @media (max-width: 900px) {

    .services-grid,
    .smart-grid {
      grid-template-columns: 1fr;
    }

    .hero-inner {
      padding: 36px 24px;
    }
  }

  @media (max-width: 600px) {
    .nav-links {
      display: none;
    }

    .svc-card {
      grid-template-columns: 1fr;
    }

    .cta-band {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }


  /*commercial-service*/
  :root {
    --bg: #070a10;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-2: rgba(255, 255, 255, 0.03);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;
    --accent: #0066ff;
    --accent-2: #00aaff;
    --accent-glow: rgba(0, 102, 255, 0.28);
    --max: 1220px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background:
      radial-gradient(circle at top right, rgba(0, 102, 255, 0.14), transparent 30%),
      radial-gradient(circle at 10% 70%, rgba(0, 170, 255, 0.07), transparent 30%),
      linear-gradient(180deg, #090c14 0%, #06080e 100%);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }

  .glass {
    background: var(--panel);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  /* NAV */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(7, 10, 16, 0.92), rgba(7, 10, 16, 0.45), transparent);
    backdrop-filter: blur(10px);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #000000;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px var(--accent-glow);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary {
    background: #7e0d19;
    color: white;
    box-shadow: 0 16px 30px var(--accent-glow);
  }

  .btn-secondary {
    background: #7e0d19;
    border-color: var(--stroke);
    color: var(--text);
  }

  /* PAGE HERO *
  .page-hero {
    padding: 60px 0 80px;
  }

  .hero-inner {
    padding: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 170, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 102, 255, 0.18);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.20), transparent 55%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7deea;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.8);
  }

  h1 {
    margin: 0;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-inner>p {
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
    margin: 22px auto 34px;
    position: relative;
  }

  .tab-switcher {
    display: inline-flex;
    border-radius: 16px;
    background: #000000;
    border: 1px solid var(--stroke);
    padding: 6px;
    gap: 6px;
    margin-bottom: 0;
  }

  .tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    font-family: inherit;
    color: var(--muted);
    background: transparent;
  }

  .tab-btn.active {
    background: #000000;
    color: white;
  }

  /* SECTIONS */
  section {
    padding: 20px 0 80px;
  }

  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 14px;
  }

  h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.03em;
  }

  .sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
    margin-bottom: 36px;
  }

  /* SERVICE CARDS */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .svc-card {
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  .svc-card::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.14), transparent 65%);
    pointer-events: none;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(0, 102, 255, 0.20);
    font-size: 22px;
    margin-bottom: 18px;
  }

  .svc-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    letter-spacing: -0.02em;
  }

  .svc-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
  }

  .svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
  }

  .svc-list li {
    color: #c8d4e2;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .svc-list li::before {
    content: "✓";
    color: var(--accent-2);
    font-weight: 700;
    font-size: 12px;
  }

  .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.18);
    color: #b0c4e8;
    font-size: 12px;
    font-weight: 500;
  }

  /* FEATURED / BANNER */
  .feature-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .banner-visual {
    border-radius: 28px;
    overflow: hidden;
    min-height: 400px;
    position: relative;

    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
  }

  .banner-label {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-2);
  }

  .banner-panel {
    padding: 36px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .banner-panel h2 {
    font-size: clamp(26px, 3.5vw, 40px);
  }

  .banner-panel p {
    color: var(--muted);
    font-size: 16px;
    margin: 16px 0 24px;
  }

  .check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
  }

  .check-list li {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.14);
    color: #d0ddf0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .check-list li::before {
    content: "→";
    color: var(--accent-2);
    font-weight: 700;
  }

  /* CTA BAND */
  .cta-band {
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.20), rgba(0, 170, 255, 0.08), #000000);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
  }

  .cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -0.03em;
  }

  .cta-band p {
    margin: 0;
    color: #c5ceda;
    max-width: 580px;
  }



  @media (max-width: 960px) {
    .services-grid {
      grid-template-columns: 1fr 1fr;
    }

    .feature-banner {
      grid-template-columns: 1fr;
    }

    .hero-inner {
      padding: 36px 24px;
    }
  }

  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
    }

    .nav-links {
      display: none;
    }

    .cta-band {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /*dropdown*/
  .menu {
    display: flex;
    gap: 20px;

    padding: 10px;
  }

  .menu a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
  }

  .menu a:hover {
    border-radius: 4px;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background: #444;
    min-width: 160px;
    top: 100%;
    left: 0;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .dropdown-content a {
    display: block;
    padding: 8px 12px;
    color: white;
  }

  .dropdown-content a:hover {
    background: #555;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /*subscriptions*/
  :root {
    --bg: #07090d;
    --panel: rgba(255, 255, 255, 0.06);
    --stroke: rgba(255, 255, 255, 0.10);
    --text: #f5f7fb;
    --muted: #a2acba;

    /* 🔵 BLUE THEME */
    --accent: #000000;
    --accent-2: #fff;

    --radius: 24px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
      radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), transparent 30%),
      linear-gradient(180deg, #090c12 0%, #06080d 100%);
    color: var(--text);
  }

  /* NAV */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background:#000000;
    display: grid;
    place-items: center;
    font-weight: 800;
  }

  /* HERO */
  .hero {
    text-align: center;
    padding: 80px 20px 40px;
  }

  .hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .hero p {
    color: var(--muted);
  }

  /* PRICING */
  .pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
  }

  .card {
    padding: 30px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(16px);
    text-align: center;
    position: relative;
  }

  .card.popular {
    border: 1px solid var(--accent);
    transform: scale(1.05);
  }

  .price {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
  }

  .features {
    text-align: left;
    margin: 20px 0;
  }

  .features li {
    margin-bottom: 10px;
    color: var(--muted);
  }

  .btn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  .btn-primary {
    background: #7e0d19;
    color: white;
  }

  .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  /* RESPONSIVE */
  @media(max-width:900px) {
    .pricing {
      grid-template-columns: 1fr;
    }
  }

  /* ─── MEGA DROPDOWN ─── */
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 16, 32, 0.97);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    z-index: 200;
    min-width: 200px;
    padding: 8px;
    overflow: hidden;
  }

  .dropdown-content a {
    display: block;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    transition: all 0.2s;
  }

  .dropdown-content a:hover {
    background: rgba(0, 212, 170, 0.08);
    color: var(--accent);
  }

  .dropdown:hover .dropdown-content {
    display: flex;
  }

  /* Mega dropdown — two columns */
  .dropdown-mega {
    flex-direction: row;
    gap: 8px;
    min-width: 560px;
    left: -40px;
    transform: none;
  }

  .dropdown-col {
    flex: 1;
    padding: 8px 4px;
  }

  .dropdown-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7e0d19;
    padding: 4px 16px 10px;
    border-bottom: 1px solid var(--stroke-2);
    margin-bottom: 6px;
  }

.dropbtn{
    cursor: pointer;

  }

  /* ─── SUB-SERVICE PAGE LAYOUT ─── */
  .sub-service-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
    padding: 20px 0 60px;
  }

  .service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .sidebar-box {
    padding: 24px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(16px);
  }

  .sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .sidebar-links li a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--muted);
    transition: all 0.2s;
  }

  .sidebar-links li a:hover,
  .sidebar-links li.active a {
    background: rgba(0, 212, 170, 0.08);
    color: var(--accent);
    padding-left: 16px;
  }

  .sidebar-cta {
    padding: 20px;
    border-radius: 16px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(16px);
    text-align: center;
  }

  .sidebar-cta p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--muted);
  }

  .sub-service-content h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .sub-service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 14px;
    letter-spacing: -0.02em;
  }

  .sub-service-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  /* ─── FEATURE CARDS ─── */
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
  }

  .feature-card {
    padding: 24px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    transition: transform 0.3s, border-color 0.3s;
  }

  .feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 170, 0.2);
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
  }

  .feature-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
  }

  /* ─── CHECK LIST ─── */
  .check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--stroke-2);
  }

  .check-list li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    background: #000000;
    display: grid;
    place-items: center;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
  }

  /* ─── FAQ SECTION ─── */
  .faq-section {
    margin-top: 40px;
  }

  .faq-item {
    padding: 20px;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
    margin-bottom: 12px;
    transition: border-color 0.3s;
  }

  .faq-item:hover {
    border-color: rgba(0, 212, 170, 0.2);
  }

  .faq-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
  }

  .faq-item p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
  }

  /* ─── RESPONSIVE: SUB-SERVICE ─── */
  @media (max-width: 900px) {
    .sub-service-layout {
      grid-template-columns: 1fr;
    }

    .service-sidebar {
      position: static;
    }

    .dropdown-mega {
      flex-direction: column;
      min-width: 260px;
      left: 50%;
      transform: translateX(-50%);
    }

    .feature-cards {
      grid-template-columns: 1fr;
    }
  }

  /*page-hero-1*/
  .page-hero-1 {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.page-hero-1 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes it behave like background */
  z-index: 0;
}

/* Overlay */
.page-hero-1 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
}

/* Content above everything */
.page-hero-1 .container {
  position: relative;
  z-index: 2;
  margin-left: 400px;
}

/* Optional Styling */
.page-hero-1 h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
}

.page-hero-1 p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
}

.promise-row {
  display: flex;
  flex-wrap: wrap;
  color:#fff;
  gap: 10px;
}

.promise {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
}

/*-banner*/
   .page-hero {
  position: relative;
  background-image: url('assets/images/banner/banner-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-inner {
  max-width: 700px;
  padding: 40px;
  border-radius: 20px;

  /* Glass effect instead of solid background */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Dark overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Keep content above overlay */
.page-hero .container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  padding: 0;
  margin: 0 auto;
  background: none;
  border: none;
  backdrop-filter: none;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 25px;
}
.tab-switcher {
  display: flex;
  justify-content: center; /* ✅ center horizontally */
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

/* Buttons */
.tab-btn {
  padding: 12px 24px;
  border-radius: 8px;
  background: #ffffff;
  color: #111;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;

  /* ❌ REMOVE THIS */
  margin-left: 0;
}

/* Optional: make both same style */
.tab-btn + .tab-btn {
  background: #ffffff;
  color: #111;
  border: 1px solid #fff;
}

/* Hover */
.tab-btn:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
}

/*index-Slider*/
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 100vh; /* full viewport height */
}

.hero-bg-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-bg-slider .slide.active {
  opacity: 1;
}

.gradient-text {
  background: #7e0d19;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero::before {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(6, 6, 6, 0.4); /* dark overlay */
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 1225px;
  margin: 0 auto;
}
/* ============================================================
   MOBILE RESPONSIVE OVERRIDES
   Add this AFTER your existing CSS (or append to the bottom)
   ============================================================ */

/* ─── BASE RESET FOR MOBILE ─── */
html, body {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── CONTAINER ─── */
.container,
.wrap,
.auto-container,
.large-container {
  width: min(calc(100% - 28px), var(--max));
  padding: 0 14px;
}

/* ─── NAV ─── */
@media (max-width: 780px) {
  .topbar-inner {
    padding: 10px 16px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .logo {
    font-size: 15px;
    gap: 10px;
  }

  .menu {
    display: none;
  }

  .nav-btns .btn-ghost {
    display: none;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Nav from service/about/shop/projects pages */
  .nav-links {
    display: none;
  }

  .nav {
    padding: 12px 16px;
  }

  .nav-actions {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* ─── HERO (index) ─── */
@media (max-width: 780px) {
  .hero {
    padding: 30px 0 24px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 48px);
    letter-spacing: -0.03em;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-visual-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stat-col:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-stat-col:last-child {
    display: none;
  }

  .hero-main-visual {
    min-height: 280px;
  }

  .hero-overlay-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .stat-card {
    padding: 18px;
  }

  .stat-card .num {
    font-size: 28px;
  }

  /* Full-screen slider hero */
  .hero.hero-slider,
  .hero {
    height: auto;
    min-height: 60vh;
  }
}

/* ─── TRUST BAR ─── */
@media (max-width: 780px) {
  .trust-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .trust-item:nth-child(n+4) {
    display: none;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .trust-item span {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(n+3) {
    display: none;
  }
}

/* ─── SECTION HEADINGS ─── */
@media (max-width: 780px) {
  section {
    padding: 36px 0;
  }

  .sec-head {
    margin-bottom: 28px;
  }

  .sec-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .sec-desc {
    font-size: 14px;
  }

  h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

/* ─── SERVICES GRID ─── */
@media (max-width: 780px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .svc {
    padding: 24px 20px;
  }

  .svc-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
  }
}

/* ─── BENTO ─── */
@media (max-width: 780px) {
  .bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bento-item.wide,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-visual {
    min-height: 200px;
  }
}

/* ─── WHY US ─── */
@media (max-width: 780px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-left {
    padding: 24px 20px;
  }

  .why-right {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 20px;
  }

  .why-card .big-num {
    font-size: 32px;
  }
}

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

/* ─── PROJECTS ─── */
@media (max-width: 780px) {
  .proj-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proj-card.featured {
    grid-row: span 1;
    min-height: 280px;
  }

  .proj-card {
    min-height: 240px;
  }

  .proj-info h3 {
    font-size: 18px;
  }
}

/* ─── TESTIMONIALS ─── */
@media (max-width: 780px) {
  .test-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .test-card {
    padding: 22px;
  }
}

/* ─── CTA BANNER ─── */
@media (max-width: 780px) {
  .cta-box {
    padding: 28px 20px;
  }

  .cta-box h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .cta-box p {
    font-size: 14px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }

  .cta-band h2 {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .cta-band .btn {
    width: 100%;
  }
}

/* ─── CONTACT ─── */
@media (max-width: 780px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-info,
  .contact-form {
    padding: 22px 18px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-grid .span-2 {
    grid-column: span 1;
  }

  /* Contact page grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-panel,
  .form-panel {
    padding: 24px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: span 1;
  }

  .promise-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ─── PAGE HERO (inner pages) ─── */
@media (max-width: 780px) {
  .page-hero {
    padding: 40px 0 36px;
    height: auto;
    min-height: 280px;
  }

  .hero-inner {
    padding: 28px 20px;
  }

  .page-hero h1 {
    font-size: clamp(26px, 7vw, 40px);
    letter-spacing: -0.03em;
  }

  .page-hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* page-hero with container margin-left override */
  .page-hero .container {
    margin-left: auto;
    margin-right: auto;
  }

  /* page-hero-1 */
  .page-hero-1 .container {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-1 h1 {
    font-size: clamp(26px, 7vw, 38px);
  }

  .page-hero-1 p {
    font-size: 15px;
  }

  .page-hero-1 {
    padding: 60px 0;
  }

  .tab-switcher {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-top: 18px;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .eyebrow {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* ─── SUB-SERVICE LAYOUT ─── */
@media (max-width: 900px) {
  .sub-service-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0 40px;
  }

  .service-sidebar {
    position: static;
  }

  .sidebar-box {
    padding: 18px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 780px) {
  .sub-service-content h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .sub-service-content h3 {
    font-size: 18px;
  }

  .faq-item {
    padding: 16px;
  }

  .faq-item strong {
    font-size: 14px;
  }
}

/* ─── PROJECTS PAGE ─── */
@media (max-width: 780px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .featured {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

  .featured-image {
    min-height: 260px;
  }

  .featured-panel {
    padding: 24px 20px;
  }

  .filter-row {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* ─── SHOP PAGE ─── */
@media (max-width: 780px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-search {
    width: 100%;
  }

  .shop-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .promo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
    gap: 16px;
  }

  .promo-banner .btn {
    width: 100%;
  }
}

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

/* ─── ABOUT PAGE ─── */
@media (max-width: 780px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-panel {
    padding: 24px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .value-card,
  .team-card {
    padding: 22px 18px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-box strong {
    font-size: 26px;
  }
}

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

/* ─── PRICING / SUBSCRIPTIONS ─── */
@media (max-width: 780px) {
  .pricing {
    grid-template-columns: 1fr;
    padding: 20px 16px;
    gap: 14px;
  }

  .card.popular {
    transform: scale(1);
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
}

/* ─── FOOTER ─── */
@media (max-width: 780px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }

  .footer-middle {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 0 28px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer {
    padding: 40px 0 0;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

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

/* ─── DROPDOWN ─── */
@media (max-width: 780px) {
  .dropdown-content {
    position: static;
    transform: none;
    left: auto;
    box-shadow: none;
    border-radius: 10px;
    min-width: unset;
    width: 100%;
  }

  .dropdown-mega {
    flex-direction: column;
    min-width: unset;
    width: 100%;
    left: auto;
    transform: none;
  }

  .dropdown-col {
    padding: 4px 0;
  }
}

/* ─── SMART HOME / FEATURE SECTION ─── */
@media (max-width: 780px) {
  .smart-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .smart-panel {
    padding: 24px 20px;
  }

  .smart-visual {
    min-height: 260px;
  }

  .visual-badge {
    padding: 14px 16px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .visual-badge strong {
    font-size: 14px;
  }
}

/* ─── FEATURE BANNER (commercial) ─── */
@media (max-width: 780px) {
  .feature-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .banner-visual {
    min-height: 240px;
  }

  .banner-panel {
    padding: 24px 20px;
  }
}

/* ─── BACK TO TOP ─── */
@media (max-width: 780px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 12px;
  }
}

/* ─── BTN SIZES ─── */
@media (max-width: 780px) {
  .btn-lg {
    padding: 14px 24px;
    font-size: 14px;
  }

  input,
  textarea,
  select {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 13px 14px;
  }
}

/* ─── GENERAL UTILITY: hide overflow on small screens ─── */
@media (max-width: 780px) {
  .hero-badge {
    font-size: 11px;
    padding: 7px 14px;
  }

  .sec-label {
    font-size: 11px;
  }

  .promise-row {
    flex-wrap: wrap;
  }

  .promise {
    font-size: 12px;
    padding: 7px 12px;
  }

  /* Inline tag rows */
  .tag-row,
  .pill-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .tag,
  .pill {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ─── VERY SMALL SCREENS (< 375px) ─── */
@media (max-width: 375px) {
  .topbar-inner {
    padding: 8px 12px;
    border-radius: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 26px;
  }

  .sec-title,
  h2 {
    font-size: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/*Mobile menu*/
/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
  align-self: center;
  margin-left: auto;
}

@media (max-width: 780px) {
  .topbar-inner {
    position: relative;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* X state */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── MOBILE DRAWER ─── */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(11, 16, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--stroke-2);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-drawer.open {
  max-height: 100vh;
}

.mobile-nav {
  padding: 8px 0;
  border-bottom: 1px solid rgba(100, 180, 255, 0.08);
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(100, 180, 255, 0.06);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.mobile-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

/* Accordion */
.mobile-accordion-body {
  display: none;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-accordion-body.open {
  display: block;
}

.acc-arrow {
  color: var(--muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-accordion-btn[aria-expanded="true"] .acc-arrow {
  transform: rotate(180deg);
}

.mobile-sub-title {
  padding: 10px 20px 4px 28px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0, 212, 170, 0.04);
}

.mobile-sub-link {
  display: block;
  padding: 10px 20px 10px 28px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid rgba(100, 180, 255, 0.05);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.mobile-sub-link:hover {
  color: var(--accent);
  background: rgba(0, 212, 170, 0.04);
}

.mobile-drawer-btns {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
}

.mobile-drawer-btns .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  padding: 12px 16px;
}

/* ─── SHOW/HIDE LOGIC ─── */
@media (max-width: 780px) {
  .menu,
  .nav-btns {
    display: none;
  }

  .mobile-drawer {
    display: flex;
  }
}

/*hero slider mobile responsive*/
/* ─── HERO SLIDER ─── */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
}

.hero-bg-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg-slider .slide {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   opacity: 0;
   transition: opacity 1s ease-in-out;
   display: flex;
   align-items: center;
   justify-content: center;
}

.hero-bg-slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 10, 18, 0.82) 0%,
    rgba(6, 10, 18, 0.55) 60%,
    rgba(6, 10, 18, 0.20) 100%
  );
  z-index: 0;
}

.hero-bg-slider .slide .wrap {
   position: relative;
   z-index: 1;
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   max-width: 100%;
}

.hero-bg-slider .slide.active {
  opacity: 1;
}

/* Slide content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.18);
  color: #7e0d19;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero .wrap h1 {
  font-size: clamp(36px, 5.5vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--text);
}

.gradient-text {
  background:#7e0d19;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(234, 240, 255, 0.75);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7;
  width: 100%;
}

.hero-actions {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 14px;
   flex-wrap: wrap;
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(11, 16, 32, 0.55);
  border: 1px solid rgba(100, 180, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-arrow:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: rgba(0, 212, 170, 0.3);
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 780px) {
  .hero {
    height: auto;
    min-height: unset;
    max-height: unset;
  }

  .hero-bg-slider .slide {
    position: relative;
    opacity: 1;
    display: none;
    min-height: 88vh;
    align-items: flex-end;
    padding-bottom: 64px;
  }

  /* On mobile use JS active class instead of CSS opacity */
  .hero-bg-slider .slide.active {
    display: flex;
  }

  .hero-bg-slider .slide::before {
    background: linear-gradient(
      180deg,
      rgba(6, 10, 18, 0.35) 0%,
      rgba(6, 10, 18, 0.80) 60%,
      rgba(6, 10, 18, 0.95) 100%
    );
  }

  .hero .wrap {
    padding: 0 20px;
  }

  .hero .wrap h1 {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 10px;
  }

  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }

  .hero-dots {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-bg-slider .slide {
    min-height: 92vh;
    padding-bottom: 56px;
  }

  .hero .wrap h1 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .hero-sub {
    font-size: 13px;
  }
}

/* ─── add-to-cart ─── */

/* ─── CART POPUP ─── */
.cart-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 8, 18, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-popup {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: rgba(11, 16, 32, 0.97);
  border: 1px solid rgba(100, 180, 255, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 212, 170, 0.06);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.cart-popup-overlay.active .cart-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.cart-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(100, 180, 255, 0.1);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* Header */
.cart-popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.cart-popup-check {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(0, 212, 170, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.cart-popup-status {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cart-popup-count {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Product row */
.cart-popup-product {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.cart-popup-img-wrap {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(0, 212, 170, 0.05);
  border: 1px solid rgba(0, 212, 170, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cart-popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: none;
  transition: opacity 0.3s ease;
}

.cart-popup-img-wrap img.loaded {
  display: block;
}

.cart-popup-img-fallback {
  font-size: 40px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-popup-img-wrap img.loaded + .cart-popup-img-fallback {
  display: none;
}

.cart-popup-meta {
  flex: 1;
  min-width: 0;
}

.cart-popup-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.cart-popup-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-popup-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* Qty stepper */
.cart-popup-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 10px;
  border: 1px solid rgba(100, 180, 255, 0.15);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
}

.qty-val {
  min-width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-left: 1px solid rgba(100, 180, 255, 0.1);
  border-right: 1px solid rgba(100, 180, 255, 0.1);
  height: 32px;
  display: grid;
  place-items: center;
}

/* Divider */
.cart-popup-divider {
  height: 1px;
  background: rgba(100, 180, 255, 0.08);
  margin-bottom: 16px;
}

/* Summary */
.cart-popup-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-popup-summary-label {
  font-size: 14px;
  color: var(--muted);
}

.cart-popup-summary-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Actions */
.cart-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cart-popup-continue {
  padding: 13px 16px;
  border-radius: 12px;
  background: #000000;
  border: 1px solid rgba(100, 180, 255, 0.12);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-popup-continue:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.cart-popup-view {
  padding: 13px 16px;
  border-radius: 12px;
  background: #000000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(0, 212, 170, 0.25);
}

.cart-popup-view:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 212, 170, 0.35);
}

/* ─── CART COUNT BADGE on nav ─── */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-count.bump {
  transform: scale(1.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 520px) {
  .cart-popup {
    padding: 22px 18px;
    border-radius: 20px;
    max-width: 100%;
  }

  .cart-popup-actions {
    grid-template-columns: 1fr;
  }

  .cart-popup-img-wrap {
    width: 76px;
    height: 76px;
  }

  .cart-popup-name {
    font-size: 13px;
  }

  .cart-popup-status {
    font-size: 15px;
  }
}

 /* ─── SINGLE PRODUCT DETAIL CARD ─── */
.product-detail-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

.product-detail-card {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', Arial, sans-serif;
}

/* Image area */
.product-detail-img {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 260px;
}

.product-detail-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Body */
.product-detail-body {
  padding: 18px 20px 24px;
  text-align: center;
}

.product-detail-name {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
}

/* Price row */
.product-detail-price {
  font-size: 16px;
  color: #111;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-detail-price .label {
  font-weight: 400;
  color: #555;
  font-size: 15px;
}

.product-detail-price .old {
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
  font-size: 15px;
}

.product-detail-price .sale {
  font-weight: 800;
  color:#7e0d19;
  font-size: 17px;
}

/* Button */
.product-detail-btn {
  display: block;
  width: 100%;
  padding: 16px;
    background:#7e0d19;
    border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.product-detail-btn:hover {
  background: #4f060d;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Responsive */
@media (max-width: 480px) {
  .product-detail-card {
    max-width: 100%;
  }

  .product-detail-img {
    min-height: 200px;
    padding: 14px;
  }

  .product-detail-name {
    font-size: 17px;
  }
}

/*project-page*/
/* ─── PROJECT CARD — clickable ─── */
.project-card {
  cursor: pointer;
}

.project-card .project-zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.55);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3;
  pointer-events: none;
}

.project-card:hover .project-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ─── LIGHTBOX OVERLAY ─── */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 8, 18, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lb-box {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.lb-overlay.open .lb-box {
  transform: scale(1) translateY(0);
}

/* Image */
.lb-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #0a0f1e;
  aspect-ratio: 16 / 9;
}

.lb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lb-img.fade-out {
  opacity: 0;
  transform: scale(1.04);
}

/* Close */
.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.lb-close:hover { background: rgba(248,113,113,0.35); transform: scale(1.1); }

/* Arrows */
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
  padding: 0;
}
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-prev:hover { background: rgba(0,212,170,0.25); transform: translateY(-50%) scale(1.08); }
.lb-next:hover { background: rgba(0,212,170,0.25); transform: translateY(-50%) scale(1.08); }

/* Counter */
.lb-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: inherit;
}

/* Info bar */
.lb-info {
  background: rgba(11, 16, 32, 0.97);
  border: 1px solid rgba(100,180,255,0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lb-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 8px;
}

.lb-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.lb-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.6;
}

.lb-cta {
  flex-shrink: 0;
  padding: 11px 22px;
  background:#000000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,212,170,0.25);
  white-space: nowrap;
}
.lb-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,212,170,0.38); }

/* Dots */
.lb-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s ease;
}

.lb-dot.active {
  background: var(--accent);
  width: 22px;
}

/* Responsive */
@media (max-width: 640px) {
  .lb-box { width: 96vw; }
  .lb-info { flex-direction: column; align-items: flex-start; gap: 14px; }
  .lb-title { font-size: 15px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 18px; }
}

.project-zoom-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 14px;
}
.product-card {
  transition: all 0.3s ease;
}

/*Cart-page*/
/* ─── CART PAGE ─── */
.cart-page {
  padding: 60px 0 80px;
  min-height: 60vh;
}

.cart-page-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.cart-page-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}

/* ─── LAYOUT ─── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

/* ─── CART ITEMS PANEL ─── */
.cart-items-panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--stroke);
}

.cart-panel-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.cart-items-count {
  font-size: 12px;
  color: var(--muted);
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: 999px;
  padding: 3px 12px;
}

.clear-cart-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  padding: 4px 0;
}

.clear-cart-btn:hover { color: #f87171; }

/* ─── SINGLE CART ITEM ─── */
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--stroke-2);
  transition: background 0.2s;
  animation: fadeSlideIn 0.35s ease both;
}

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

.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: rgba(255,255,255,0.015); }

/* Image */
.cart-item-img-wrap {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,212,170,0.05);
  border: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.cart-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.cart-item-img-wrap img.loaded { display: block; }

.cart-item-fallback {
  font-size: 32px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info */
.cart-item-info { min-width: 0; }

.cart-item-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 5px;
}

.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

/* Controls */
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(100,180,255,0.15);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-qty-btn:hover {
  background: rgba(0,212,170,0.1);
  color: var(--accent);
}

.cart-qty-num {
  min-width: 34px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-left: 1px solid rgba(100,180,255,0.1);
  border-right: 1px solid rgba(100,180,255,0.1);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  padding: 2px 0;
}

.cart-remove-btn:hover { color: #f87171; }

.cart-remove-btn svg { transition: transform 0.2s; }
.cart-remove-btn:hover svg { transform: scale(1.15); }

/* ─── EMPTY STATE ─── */
.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  gap: 16px;
}

.cart-empty.visible { display: flex; }

.cart-empty-icon {
  font-size: 56px;
  margin-bottom: 8px;
  filter: grayscale(0.3);
}

.cart-empty h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-empty p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ─── ORDER SUMMARY PANEL ─── */
.cart-summary-panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.cart-summary-panel h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--muted);
}

.summary-row span:last-child {
  color: var(--text);
  font-weight: 600;
}

.summary-row.total {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--stroke);
  margin-bottom: 0;
}

.summary-row.total span:last-child {
  color: var(--accent);
  font-size: 20px;
}

.summary-note {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 22px;
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(0,212,170,0.04);
  border: 1px solid rgba(0,212,170,0.1);
  border-radius: 10px;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: #7e0d19;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 28px    #7e0d19;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px  #7e0d19;
}

.cart-continue-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 4px;
}

.cart-continue-link:hover { color: var(--accent); }

/* ─── TRUST BADGES ─── */
.cart-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--stroke);
}

.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.cart-trust-icon { font-size: 16px; }

/* ─── CONTACT ITEMS NOTE ─── */
.contact-item-badge {
  display: inline-block;
  font-size: 11px;
  background: rgba(245,197,66,0.12);
  border: 1px solid rgba(245,197,66,0.25);
  color: #f5c542;
  border-radius: 6px;
  padding: 2px 8px;
  margin-top: 4px;
}

/* ─── RECENTLY VIEWED / RECOMMENDATIONS ─── */
.cart-recommendations {
  margin-top: 48px;
}

.cart-recommendations h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary-panel {
    position: static;
  }
}

@media (max-width: 600px) {
  .cart-item {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 18px 18px;
  }
  .cart-item-controls {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cart-item-img-wrap {
    width: 70px;
    height: 70px;
  }
   .cart-panel-header { padding: 18px 18px; }
}

/* ─── TESTIMONIALS SWIPER ─── */
.testimonial-swiper {
  position: relative;
  padding: 30px 60px 60px;
  overflow: visible;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

/* Navigation Arrows - override Swiper defaults */
.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  content: "";
}

.testimonial-swiper .swiper-button-prev i,
.testimonial-swiper .swiper-button-next i {
  font-size: 16px;
  line-height: 1;
}

.testimonial-swiper .swiper-button-prev:hover,
.testimonial-swiper .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

.testimonial-swiper .swiper-button-prev {
  left: 0;
}

.testimonial-swiper .swiper-button-next {
  right: 0;
}

/* Pagination */
.testimonial-swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: all 0.2s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-swiper {
    padding: 20px 40px 50px;
  }

  .testimonial-swiper .swiper-button-prev,
  .testimonial-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .testimonial-swiper .swiper-button-prev i,
  .testimonial-swiper .swiper-button-next i {
    font-size: 14px;
  }
}


