:root{
    --bg: #070b14;
    --panel: rgba(255,255,255,0.06);
    --panel2: rgba(255,255,255,0.08);
    --stroke: rgba(255,255,255,0.10);
    --text: rgba(255,255,255,0.90);
    --muted: rgba(255,255,255,0.68);
    --muted2: rgba(255,255,255,0.55);
    --accent1: #49e6d6;
    --accent2: #6bb7ff;
  
    --radius: 18px;
    --radius2: 24px;
  
    --shadow: 0 18px 45px rgba(0,0,0,0.45);
    --shadowSoft: 0 12px 30px rgba(0,0,0,0.35);
  
    --max: 1120px;
    --headerH: 86px;
  }
  
  /* Base */
  *{ box-sizing: border-box; }
  
  html{
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--headerH) + 14px);
  }
  
  body{
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background:
      radial-gradient(1200px 700px at 20% 10%, rgba(105,186,255,0.12), transparent 55%),
      radial-gradient(900px 700px at 80% 20%, rgba(73,230,214,0.10), transparent 55%),
      linear-gradient(180deg, #050814, #070b14 35%, #050814);
    overflow-x: hidden;
  }
  
  a{
    color: inherit;
    text-decoration: none;
  }
  
  img{
    max-width: 100%;
    display: block;
  }
  
  .container{
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }
  
  .bgGlow{
    position: fixed;
    inset: -200px;
    pointer-events: none;
    background:
      radial-gradient(900px 600px at 15% 15%, rgba(73,230,214,0.12), transparent 55%),
      radial-gradient(800px 520px at 85% 25%, rgba(107,183,255,0.12), transparent 55%);
    filter: blur(20px);
    opacity: 0.8;
    z-index: -1;
  }
  
  /* Buttons */
  .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-weight: 650;
    letter-spacing: 0.2px;
    box-shadow: none;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    user-select: none;
    cursor: pointer;
  }
  
  .btn:hover{
    transform: translateY(-2px);

  }
  
  .btn--primary{
    border: 0;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #03121a;
    box-shadow: 0 14px 35px rgba(73,230,214,0.14);
  }
  
  .btn--primary:hover{
    transform: translateY(-2px);
  }
  
  .btn--ghost{
    background: rgba(255,255,255,0.04);
  }
  
  .btn--small{
    padding: 10px 14px;
    border-radius: 12px;
  }
  
  .btn--full{
    width: 100%;
  }
  
  /* Header */
  .siteHeader{
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(6,10,20,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  .headerInner{
    height: var(--headerH);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  
  /* Brand */
  .brand{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
  }
  
  .brandLogo{
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  .brandText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    min-width: 0;
  }
  
  .brandName{
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  
  .brandTag{
    font-size: 12px;
    color: rgba(255,255,255,0.68);
    white-space: nowrap;
  }
  
  /* Desktop nav */
  .desktopNav{
    display: flex;
    align-items: center;
    gap: 22px;
  }
  
  .desktopNav a{
    color: var(--muted);
    font-weight: 650;
  }
  
  .desktopNav a:hover{
    color: rgba(255,255,255,0.92);
  }
  
  .headerActions{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  /* Burger button */
  .burger{
    width: 44px;
    height: 44px;
    display: none;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .burgerBar{
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 999px;
    display: block;
  }
  
  /* Mobile nav */
  .mobileNav{
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(6,10,20,0.85);
    backdrop-filter: blur(16px);
  }
  
  .mobileNavInner{
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 14px 0 18px;
    display: grid;
    gap: 10px;
  }
  
  .mobileNavInner a{
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.90);
    font-weight: 700;
  }
  
  .mobileNavCtas{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
  }
  
  /* Hero */
  .hero{
    padding: 54px 0 34px;
  }
  
  .heroGrid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    min-height: calc(86vh - var(--headerH));
  }
  
  .heroCopy .pill{
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .hero h1{
    margin: 0;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.8px;
  }
  
  .hero .accent{
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .lead{
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.55;
    max-width: 58ch;
  }
  
  .heroCtas{
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .serviceChips{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  
  .chip{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 12px;
  }
  
  .chipTitle{
    font-weight: 800;
  }
  
  .chipSub{
    color: var(--muted);
    font-size: 12.5px;
    margin-top: 4px;
  }
  
  /* Hero card */
  .heroCard{
    border-radius: var(--radius2);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .heroImage{
    aspect-ratio: 4/3;
    background: rgba(0,0,0,0.25);
  }
  
  .heroImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .heroCardBottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.25));
  }
  
  .heroCardTitle{
    font-weight: 850;
  }
  
  .heroCardSub{
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
  }
  
  /* Sections */
  .section{
    padding: 56px 0;
  }
  
  .section h2{
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.4px;
  }
  
  .sectionSub{
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
    max-width: 70ch;
  }
  
  /* Services cards */
  .cards3{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  
  .card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadowSoft);
  }
  
  .card h3{
    margin: 0 0 10px;
    font-size: 18px;
  }
  
  .card ul{
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .card li{
    margin: 6px 0;
  }
  
  .wideCallout{
    margin-top: 18px;
    border-radius: var(--radius2);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  
  .wideCallout h3{
    margin: 0 0 8px;
  }
  
  .wideCallout p{
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
  }
  
  /* Quote Process */
  .quote-process{
    padding-top: 10px;
  }
  
  .processGrid{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  .processCard{
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadowSoft);
  }
  
  .processCard h3{
    margin: 0 0 8px;
  }
  
  .processCard p{
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
  }
  
  /* Gallery */
  .galleryGrid{
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  
  .galleryGrid img{
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadowSoft);
    height: 260px;
    width: 100%;
    object-fit: cover;
  }
  
  /* Quote */
  .quoteWrap{
    margin-top: 18px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    align-items: start;
  }
  
  .quoteCopy{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius2);
    padding: 18px;
  }
  
  .contactMini{
    margin-top: 14px;
    display: grid;
    gap: 8px;
    color: var(--muted);
  }
  
  .contactMini a{
    color: rgba(255,255,255,0.86);
  }
  
  .form{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius2);
    padding: 18px;
  }
  
  label{
    display: grid;
    gap: 6px;
    font-weight: 750;
    color: rgba(255,255,255,0.86);
  }
  
  input, select, textarea{
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.25);
    color: var(--text);
    padding: 12px 12px;
    outline: none;
  }
  
  input::placeholder, textarea::placeholder{
    color: rgba(255,255,255,0.45);
  }
  
  input:focus, select:focus, textarea:focus{
    border-color: rgba(107,183,255,0.35);
    box-shadow: 0 0 0 3px rgba(107,183,255,0.12);
  }
  
  .formRow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .finePrint{
    margin: 12px 0 0;
    color: var(--muted2);
    font-size: 12.5px;
    line-height: 1.45;
  }
  
  /* Footer */
  .footer{
    padding: 26px 0 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(6,10,20,0.55);
  }
  
  .footerInner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
  }
  
  .footerLinks{
    display: flex;
    gap: 14px;
  }
  
  .footerLinks a:hover{
    color: rgba(255,255,255,0.92);
  }
  
  /* Tablet */
  @media (max-width: 980px){
    .heroGrid{
      grid-template-columns: 1fr;
      min-height: auto;
    }
  
    .serviceChips{
      grid-template-columns: 1fr;
    }
  
    .cards3{
      grid-template-columns: 1fr;
    }
  
    .processGrid{
      grid-template-columns: 1fr;
    }
  
    .galleryGrid{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .galleryGrid img{
      height: 240px;
    }
  
    .quoteWrap{
      grid-template-columns: 1fr;
    }
  
    .wideCallout{
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* Mobile */
  @media (max-width: 760px){
    :root{
      --headerH: 76px;
    }
  
    .headerInner{
      height: 76px;
      gap: 10px;
    }
  
    .desktopNav{
      display: none;
    }
  
    .burger{
      display: inline-flex;
      flex-direction: column;
    }
  
    .brand{
      padding: 6px 8px;
      gap: 10px;
      min-width: 0;
    }
  
    .brandLogo{
      height: 54px;
    }
  
    .brandText{
      min-width: 0;
    }
  
    .brandName{
      font-size: 15px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  
    .brandTag{
      display: none;
    }
  
    .headerActions .btn--ghost{
      display: none;
    }
  
    .headerActions .btn--primary{
      display: none;
    }
  
    .hero{
      padding: 40px 0 18px;
    }
  
    .hero h1{
      font-size: 40px;
    }
  
    .heroCtas{
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .heroCtas .btn{
      width: 100%;
    }
  
    .mobileNavCtas{
      grid-template-columns: 1fr;
    }
  
    .galleryGrid{
      grid-template-columns: 1fr;
    }
  
    .formRow{
      grid-template-columns: 1fr;
    }
  
    .footerInner{
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* Thank you page */
.thankYouSection{
    min-height: calc(100vh - var(--headerH));
    display: flex;
    align-items: center;
  }
  
  .thankYouCard{
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius2);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadowSoft);
  }
  
  .thankYouCard h1{
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 48px);
  }
  
  .thankYouContact{
    justify-items: center;
    margin-top: 20px;
  }
  
  /* Footer upgrade */
  .footerInner--stack{
    display: block;
  }
  
  .footerTop{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
  }
  
  .footerMain{
    display: grid;
    gap: 10px;
  }
  
  .footerBrand{
    font-size: 22px;
    font-weight: 800;
    color: #fff;
  }
  
  .footerHeading{
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .footerText{
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .footerContactLine{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
  }
  
  .footerContactLine a:hover,
  .footerLinks a:hover{
    color: rgba(255,255,255,0.95);
  }
  
  .footerNavBlock{
    display: grid;
    gap: 10px;
  }
  
  .footerAreas{
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .footerBottom{
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--muted2);
    font-size: 14px;
  }
  
  @media (max-width: 760px){
    .footerTop{
      grid-template-columns: 1fr;
    }
  
    .thankYouCard{
      padding: 26px 18px;
    }
  
    .footerContactLine{
      flex-direction: column;
      gap: 4px;
    }
  }