    :root{
      --bg:#000d19;
      --panel:#001527;
      --white:#ffffff;
      --muted:rgba(255,255,255,.78);
      --line:rgba(255,255,255,.2);
      --yellow:#f2d523;
      --cyan:#90ffff;
      --blue:#005eab;
      --grad:linear-gradient(90deg,var(--blue) 0%, #60c5c5 100%);
      --container:1280px;
      --radius:8px;
      --pill:30px;
      --pad:64px;
      --h1:72px;
      --h2:52px;
      --h3:36px;
      --body:16px;
      --body-m:18px;
      --body-s:14px;
	  --page: 64px;
	  --section: 112px;
    }
    *{box-sizing:border-box}
    html,body{margin:0;padding:0;background:var(--bg);color:var(--white);font-family:"Roboto",sans-serif;scroll-behavior: smooth;}
    body{min-width:320px;overflow-x:hidden}
    img{max-width:100%;display:block}
    a{text-decoration:none;color:inherit}
    h1,h2,h3,h4,p{margin:0}
    .container{max-width:var(--container);margin:0 auto;width:100%}
    .section{padding:112px var(--pad)}
    .section-tight{padding:80px var(--pad)}
    .divider-line{width:100%;max-width:var(--container);margin:0 auto;display:block;height:auto;}
    .divider-wave {
    	width: 100%;
    	max-width: var(--container);
    	margin: 0 auto;
    	display: block;
    	height: 60px;
    	object-fit: cover;
    }
    .title-xl,.title-lg,.title-md{font-family:"Roboto Condensed",sans-serif;font-weight:700;text-transform:uppercase;line-height:1;letter-spacing:-1px}
    .title-xl{font-size:var(--h1)}
    .title-lg{font-size:var(--h2)}
    .title-md{font-size:var(--h3)}
    .tagline{font-size:16px;font-weight:600;line-height:1.5}
    .text{font-size:var(--body);line-height:1.5}
    .text-m{font-size:var(--body-m);line-height:1.5}
    .text-s{font-size:var(--body-s);line-height:1.5}
    .muted{color:var(--muted)}
    .center{text-align:center}

    .btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 24px;border:0;border-radius:var(--pill);font-size:16px;font-weight:500;line-height:1.5;white-space:nowrap;cursor:pointer;position:relative;overflow:hidden;isolation:isolate;align-self: start;}
    .btn--sm,.btn.small{padding:8px 20px}
    .btn--grad,.btn-grad{background:var(--grad);color:#000d19;border:0}
    .btn--grad::before,.btn-grad::before{content:"";position:absolute;inset:0;background:#8AF8FB;transform:translateY(101%);transition:transform .25s cubic-bezier(.4,0,.2,1);z-index:-1;border-radius:var(--pill)}
    .btn--grad:hover::before,.btn--grad:focus-visible::before,.btn-grad:hover::before,.btn-grad:focus-visible::before{transform:translateY(0)}
    .btn--outline,.btn-outline{background:rgba(255,255,255,.2);border:2px solid var(--yellow);color:#fff}
    .btn--outline::before,.btn-outline::before{content:"";position:absolute;inset:0;background:var(--yellow);transform:translateY(101%);transition:transform .25s cubic-bezier(.4,0,.2,1);z-index:-1;border-radius:var(--pill)}
    .btn--outline:hover::before,.btn--outline:focus-visible::before,.btn-outline:hover::before,.btn-outline:focus-visible::before{transform:translateY(0)}
    .btn--outline:hover,.btn--outline:focus-visible,.btn-outline:hover,.btn-outline:focus-visible{color:#000d19}
    .btn--white,.btn-white{background:#fff;color:#001527}
    .btn--white:hover,.btn--white:focus-visible,.btn-white:hover,.btn-white:focus-visible{background:transparent;color:#fff;box-shadow:inset 0 0 0 2px #fff}
    .btn--ghost-light,.btn-ghost-light{background:rgba(0,0,0,.05);border:1px solid #fff;color:#fff}
    .btn--light,.btn-light{background:var(--grad);color:#001527;font-weight:700}
    .btn--ghost,.btn-ghost{background:rgba(255,255,255,.2);border:2px solid var(--yellow);color:#fff;font-weight:700}
    .btn--ghost::before,.btn-ghost::before{content:"";position:absolute;inset:0;background:var(--yellow);transform:translateY(101%);transition:transform .25s cubic-bezier(.4,0,.2,1);z-index:-1;border-radius:var(--pill)}
    .btn--ghost:hover::before,.btn--ghost:focus-visible::before,.btn-ghost:hover::before,.btn-ghost:focus-visible::before{transform:translateY(0)}
    .btn--ghost:hover,.btn--ghost:focus-visible,.btn-ghost:hover,.btn-ghost:focus-visible{color:#001527}


/* ============================================================
   NAVIGATION — DESKTOP
============================================================ */
.topbar   { padding: 14px; background: var(--bg); position: relative; z-index: 100; }
.nav-wrap { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo     { width: 170px; height: 90px; object-fit: contain; }
.nav      { display: flex; gap: 32px; align-items: center; }
.nav-links     { display: flex; gap: 32px; align-items: center; }

/* Desktop nav link hover — underline grows from left.
   Colour contrast: white on --bg passes WCAG AA (8.6:1). */
.nav-links a {
  font-size: 16px; line-height: 1.5;
  position: relative; padding-bottom: 3px;
  color: var(--white);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 2px; }

.nav-cta { display: flex; gap: 16px; align-items: center; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 2px solid var(--line);
  border-radius: var(--radius); cursor: pointer;
  padding: 0;
}
.nav-hamburger:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
/* Animate bars to X when drawer is open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE DRAWER
   Slides in from the right. Backdrop darkens page behind.
   Capped at 320px so it never swallows the full screen on tablet.
============================================================ */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.nav-backdrop.open    { display: block; }
.nav-backdrop.visible { opacity: 1; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(320px, 85vw);
  background: #001428;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-header .logo { width: 120px; height: auto; }

.drawer-close {
  width: 44px; height: 44px;
  background: transparent; border: 2px solid var(--line);
  border-radius: var(--radius); cursor: pointer; color: var(--white);
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.drawer-close:hover         { border-color: var(--cyan); }
.drawer-close:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.drawer-nav { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid var(--line); }
.drawer-nav a {
  font-size: 18px; font-weight: 600; line-height: 1.5;
  padding: 14px 24px; color: var(--white);
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s, color .2s;
}
.drawer-nav a:hover,
.drawer-nav a:focus-visible { border-left-color: var(--cyan); background: rgba(144,255,255,.06); color: var(--cyan); outline: none; }

.drawer-cta {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px; border-bottom: 1px solid var(--line);
}
.drawer-cta .btn { width: 100%; justify-content: center; }

.drawer-contact { display: flex; flex-direction: column; gap: 16px; padding: 24px; }
.drawer-contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.drawer-contact-line  { display: flex; align-items: center; gap: 12px; font-size: 15px; line-height: 1.5; }
.drawer-contact-line img { width: 20px; height: 20px; flex-shrink: 0; }
.drawer-contact-line a   { color: var(--white); }
.drawer-contact-line a:hover { color: var(--cyan); }

/* ============================================================
   FOOTER
============================================================ */
footer          { padding: 80px var(--pad); background: var(--bg); }
.footer-top     { display: grid; grid-template-columns: 1fr 400px; gap: 64px; }
.footer-brand   { display: flex; flex-direction: column; gap: 32px; }
.footer-copy    { display: flex; flex-direction: column; gap: 24px; }
.footer-copy .block { display: flex; flex-direction: column; gap: 4px; }
.socials        { display: flex; gap: 14px; }
.socials img    { width: 20px; height: 20px; }
.footer-links   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-links .col { display: flex; flex-direction: column; }
.footer-links a { padding: 8px 0; font-size: 14px; font-weight: 600; line-height: 1.5; }
.footer-bottom  { margin-top: 80px; display: flex; flex-direction: column; gap: 32px; }
.credits        { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 14px; line-height: 1.5; }
.credit-links   { display: flex; gap: 24px; flex-wrap: wrap; }
.underline      { text-decoration: underline; }

a.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
    background: rgba(255, 255, 255, .2);
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
}
a.contact-btn:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(101%);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
    border-radius: var(--pill);
}
a.contact-btn:hover::before, a.contact-btn:focus-visible::before, a.contact-btn:hover::before, a.contact-btn:focus-visible::before {
    transform: translateY(0);
}
a.contact-btn:hover {
    filter: brightness(1.12);
    transform: scale(1.03);
    box-shadow: 0 6px 20px -4px rgba(144, 255, 255, .45);
    color: #000;
}
a.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease;
    background: var(--grad);
    color: #000d19;
    border: 0;
    font-weight: 600;
}
a.quote-btn:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #8AF8FB;
    transform: translateY(101%);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    z-index: -1;
    border-radius: var(--pill);
}
a.quote-btn:hover::before, a.quote-btn:focus-visible::before, a.quote-btn:hover::before, a.quote-btn:focus-visible::before {
    transform: translateY(0);
}


@media(max-width: 1280px) {
    .divider-wave {
        object-fit: contain;
        padding: 0 20px;
    }
    .divider-line {
        padding: 0 20px;   
    }
}

@media (max-width: 1200px) {
  :root { --pad: 28px; --h1: 56px; --h2: 42px; --h3: 36px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-grid .g1, .gallery-grid .g2, .gallery-grid .g3,
  .gallery-grid .g4, .gallery-grid .g5, .gallery-grid .g6 { grid-column: auto; grid-row: auto; }
  .gallery-grid img { height: 320px; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-copy, .cta .wrap, .contact-grid, .footer-top,
  .logos-row, .dual-grid, .why-card { grid-template-columns: 1fr; }
  .why-card .img { min-height: 360px; }
  .logos-row .brandset { justify-content: flex-start; }
  .nav-wrap { flex-direction: row; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }



  /* Carousel: show 2 cards on tablet */
  .testimonial { flex: 0 0 calc((100% - 32px) / 2); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤780px)
============================================================ */
@media (max-width: 780px) {
  :root { --pad: 18px; --h1: 40px; --h2: 32px; --h3: 30px; }
  .topbar { padding-top: 18px; }
  .nav-links { display: none; }
  .hero-card { min-height: 520px; padding: 24px; }
  .hero-copy .text-m { font-size: 16px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .section, .section-lg, .hero, .logos, footer { padding-left: 18px; padding-right: 18px; }
  .dual-grid, .service-grid { grid-template-columns: 1fr; }
  .service-grid { gap: 20px; }
  .feature-panel { min-height: 360px; }
  .footer-links { grid-template-columns: 1fr; }
  .credits, .credit-links { flex-direction: column-reverse; }
  .logos-row .brandset img:nth-child(1) { width: 150px; }
  .logos-row .brandset img:nth-child(2) { width: 180px; }
  .logos-row .brandset img:nth-child(3) { width: 80px; }
  .stat .num { font-size: 58px; }
  .footer-brand { align-items: center; }
  .footer-copy .block { align-items: center; }
  .footer-links a { text-align: center; }
  .credits div, .credit-links a { text-align: center; }
  /* Carousel: show 1 card on mobile */
  .testimonial { flex: 0 0 100%; }
  .divider-line { padding: 0 20px; }
}
