  :root {
      --blue: #1677ff;
      --blue-deep: #0a2540;
      --blue-tint: #eaf3ff;
      --blue-tint-2: #f5f9ff;
      --white: #ffffff;
      --gray: #5b6b7c;
      --gray-light: #8a9aad;
      --border: #dde6f0;
      --radius: 10px;
      --shadow: 0 4px 24px rgba(10, 37, 64, 0.06);
      --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.12);
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      color: var(--blue-deep);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
  }

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

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

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
  }

  .eyebrow::before {
      content: '';
      width: 18px;
      height: 1.5px;
      background: var(--blue);
      display: inline-block;
  }

  .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      border: 1.5px solid transparent;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
      white-space: nowrap;
  }

  .btn-primary {
      background: var(--blue);
      color: #fff;
  }

  .btn-primary:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-1px);
  }

  .btn-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: -60%;
      width: 40%;
      height: 100%;
      background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
      transform: skewX(-20deg);
      transition: left .6s ease;
  }

  .btn-primary:hover::after {
      left: 130%;
  }

  .btn-outline {
      background: transparent;
      border-color: rgba(10, 37, 64, 0.18);
      color: var(--blue-deep);
  }

  .btn-outline:hover {
      background: var(--blue-tint);
      border-color: var(--blue);
  }

  .btn-outline.on-dark {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.35);
  }

  .btn-outline.on-dark:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: #fff;
  }

  /* ---------- NAV ---------- */
  header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
  }

  nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1180px;
      margin: 0 auto;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Plus Jakarta Sans';
      font-weight: 800;
      font-size: 19px;
  }

  .logo span {
      color: var(--blue);
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 14.5px;
      font-weight: 500;
  }

  .nav-links a {
      color: var(--blue-deep);
      opacity: 0.75;
      transition: opacity .2s;
  }

  .nav-links a:hover {
      opacity: 1;
  }

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

  .nav-phone {
      font-weight: 600;
      font-size: 14.5px;
      display: flex;
      align-items: center;
      gap: 6px;
  }

  .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
  }

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

      .nav-phone span {
          display: none;
      }

      .menu-toggle {
          display: block;
      }
  }

  /* ---------- HERO ---------- */
  .hero {
      background: radial-gradient(120% 140% at 100% 0%, #12335c 0%, var(--blue-deep) 55%, #071a30 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
  }

  .hero-inner {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
      padding: 96px 24px 88px;
      max-width: 1180px;
      margin: 0 auto;
  }

  .hero h1 {
      font-size: clamp(34px, 4.6vw, 54px);
      color: #fff;
      margin-bottom: 20px;
  }

  .hero h1 em {
      font-style: normal;
      color: #7db4ff;
  }

  .hero p.lead {
      font-size: 17.5px;
      color: #b9c9dd;
      max-width: 480px;
      margin-bottom: 34px;
  }

  .hero .eyebrow {
      color: #7db4ff;
  }

  .hero .eyebrow::before {
      background: #7db4ff;
  }

  .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
  }

  .hero-trust {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
      font-size: 13.5px;
      color: #9fb3cc;
  }

  .hero-trust div {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  /* signature: glass pane grid with ambient shine sweep */
  .pane-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 8px;
      width: 100%;
      aspect-ratio: 1/1.25;
      max-width: 420px;
      margin-left: auto;
      padding: 18px;
      background: url("../imgs/background-photo.jpg");
      background-size: contain;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 16px;
      overflow: hidden;
  }

  /*
  .pane {
      background: linear-gradient(160deg, rgba(125, 180, 255, 0.28), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 4px;
  }
*/
  .pane-grid::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 45%;
      height: 220%;
      background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
      transform: rotate(18deg);
      animation: shine-sweep 4s ease-in-out infinite;
  }

  @keyframes shine-sweep {
      0% {
          left: -60%;
      }

      35% {
          left: 130%;
      }

      100% {
          left: 130%;
      }
  }

  /* ---------- TRUST BAR ---------- */
  .trustbar {
      border-bottom: 1px solid var(--border);
      background: var(--blue-tint-2);
  }

  .trustbar .wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      padding: 26px 24px;
  }

  .trustbar div {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--blue-deep);
  }

  /* ---------- SECTION SHARED ---------- */
  section {
      padding: 96px 0;
  }

  .section-head {
      max-width: 620px;
      margin-bottom: 56px;
  }

  .section-head h2 {
      font-size: clamp(28px, 3.4vw, 38px);
      margin-bottom: 16px;
  }

  .section-head p {
      color: var(--gray);
      font-size: 16px;
  }

  .bg-tint {
      background: var(--blue-tint-2);
  }

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

  .service-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px 28px;
      overflow: hidden;
      transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  }

  .service-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: transparent;
  }

  .service-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(115deg, transparent, rgba(22, 119, 255, 0.10), transparent);
      transform: skewX(-20deg);
      transition: left .7s ease;
  }

  .service-card:hover::after {
      left: 140%;
  }

  .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--blue-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
  }

  .service-card h3 {
      font-size: 19px;
      margin-bottom: 10px;
  }

  .service-card p {
      color: var(--gray);
      font-size: 14.5px;
      margin-bottom: 18px;
  }

  .service-card ul {
      list-style: none;
  }

  .service-card li {
      font-size: 13.5px;
      color: var(--blue-deep);
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
      align-items: flex-start;
  }

  .service-card li::before {
      content: '✓';
      color: var(--blue);
      font-weight: 700;
  }

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

  /* ---------- PROCESS ---------- */
  .process-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
  }

  .process-list::before {
      content: '';
      position: absolute;
      top: 26px;
      left: 8%;
      right: 8%;
      height: 1.5px;
      background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  }

  .process-step {
      padding-right: 30px;
      position: relative;
  }

  .process-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--blue-deep);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans';
      font-weight: 700;
      font-size: 17px;
      margin-bottom: 22px;
      position: relative;
      z-index: 1;
  }

  .process-step h3 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  .process-step p {
      color: var(--gray);
      font-size: 14.5px;
  }

  @media (max-width:900px) {
      .process-list {
          grid-template-columns: 1fr;
          gap: 36px;
      }

      .process-list::before {
          display: none;
      }
  }

  /* ---------- SERVICE AREA ---------- */
  .area-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
  }

  .area-map {
      background: var(--blue-deep);
      border-radius: 16px;
      padding: 40px;
      position: relative;
      aspect-ratio: 4/3.2;
      overflow: hidden;
  }

  .area-chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .area-chip {
      border: 1px solid var(--border);
      background: #fff;
      padding: 9px 16px;
      border-radius: 100px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--blue-deep);
  }

  @media (max-width:900px) {
      .area-layout {
          grid-template-columns: 1fr;
      }

      .area-map {
          order: -1;
      }
  }

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

  .testi-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      font-size: 14.5px;
  }

  .testi-stars {
      color: var(--blue);
      font-size: 14px;
      margin-bottom: 14px;
      letter-spacing: 2px;
  }

  .testi-card p.quote {
      color: var(--blue-deep);
      margin-bottom: 18px;
  }

  .testi-name {
      font-weight: 600;
      font-size: 13.5px;
  }

  .testi-loc {
      color: var(--gray-light);
      font-size: 12.5px;
  }

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

  .testi-note {
      font-size: 12.5px;
      color: var(--gray-light);
      margin-top: 18px;
      font-style: italic;
  }

  /* ---------- CONTACT ---------- */
  .contact-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 0;
      background: var(--blue-deep);
      border-radius: 20px;
      overflow: hidden;
  }

  .contact-info {
      padding: 56px 48px;
      color: #fff;
  }

  .contact-info h2 {
      color: #fff;
      font-size: 28px;
      margin-bottom: 16px;
  }

  .contact-info p {
      color: #b9c9dd;
      font-size: 15px;
      margin-bottom: 32px;
  }

  .contact-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
      font-size: 15px;
  }

  .contact-row .icon {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .contact-form {
      padding: 56px 48px;
      background: #fff;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
  }

  .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
  }

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

  label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--blue-deep);
  }

  input,
  select,
  textarea {
      font-family: 'Inter';
      font-size: 14.5px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      color: var(--blue-deep);
      outline: none;
      transition: border-color .2s;
  }

  input:focus,
  select:focus,
  textarea:focus {
      border-color: var(--blue);
  }

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

  .contact-form .btn-primary {
      width: 100%;
      margin-top: 6px;
      padding: 15px;
  }

  @media (max-width:900px) {
      .contact-wrap {
          grid-template-columns: 1fr;
          border-radius: 16px;
      }

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

      .contact-info,
      .contact-form {
          padding: 40px 28px;
      }
  }

  /* ---------- FOOTER ---------- */
  footer {
      background: #071a30;
      color: #8fa5c2;
      padding: 56px 0 28px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
  }

  footer .logo {
      color: #fff;
      margin-bottom: 14px;
  }

  footer .logo span {
      color: #7db4ff;
  }

  footer p {
      font-size: 13.5px;
      line-height: 1.7;
      max-width: 280px;
  }

  footer h4 {
      color: #fff;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
      font-family: 'Inter';
      font-weight: 600;
  }

  footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 13.5px;
  }

  footer ul a:hover {
      color: #fff;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      font-size: 12.5px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
  }

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

  @media (max-width:860px) {
      .hero-inner {
          grid-template-columns: 1fr;
          padding-top: 56px;
      }

      .pane-grid {
          max-width: 280px;
          margin: 0 auto;
      }

      section {
          padding: 64px 0;
      }
  }

  @media (prefers-reduced-motion: reduce) {
      * {
          animation: none !important;
          transition: none !important;
      }
  }
  .google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 12px 18px;

    background: rgba(255,255,255,.95);
    border: 1px solid rgba(0,102,204,.12);

    border-radius: 999px;

    text-decoration: none;
    color: #1f2937;

    box-shadow:
        0 8px 24px rgba(0,0,0,.08);

    transition: .3s ease;
}

.google-rating-badge:hover{
    transform: translateY(-3px);
    box-shadow:
        0 14px 34px rgba(0,102,204,.18);
}

.stars{
    color:#fbbc05;
    font-size:20px;
    letter-spacing:2px;
    line-height:1;
}

.text{
    display:flex;
    flex-direction:column;
}

.title{
    font-weight:700;
    font-size:15px;
}

.reviews{
    font-size:13px;
    color:#6b7280;
}

.arrow{
    width:18px;
    height:18px;
    color:#0066cc;
    transition:.3s;
}

.google-rating-badge:hover .arrow{
    transform:translateX(4px);
}

@media (max-width:600px){
    .google-rating-badge{
        padding:10px 15px;
        gap:10px;
    }

    .title{
        font-size:14px;
    }

    .reviews{
        font-size:12px;
    }

    .stars{
        font-size:18px;
    }
}