* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f7f9fc;
      color: #1d2433;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    video {
      max-width: 100%;
      display: block;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 18px;
    }

    .section-title h2,
    .section-title h3 {
      font-size: 34px;
      font-weight: 800;
      color: #122033;
      margin-bottom: 12px;
    }

    .section-subtitle {
      max-width: 860px;
      margin: 0 auto 40px;
      text-align: center;
      font-size: 16px;
      color: #5b6578;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      transition: 0.25s ease;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: #0b79b7;
      color: #fff;
      box-shadow: 0 10px 24px rgba(11, 121, 183, 0.24);
    }

    .btn-primary:hover {
      background: #095f90;
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: #fff;
      color: #0b79b7;
      border-color: #d8e6f2;
    }

    .btn-secondary:hover {
      background: #f2f8fc;
      transform: translateY(-2px);
    }

    /* HEADER */
    header {
      background: #ffffff;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 3px 18px rgba(10, 20, 40, 0.06);
    }

    .header-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      flex-direction: column;
    }

    .logo img {
      width: 140px;
      height: auto;
    }

    .logo h1 {
      font-size: 24px;
      line-height: 1.1;
      font-weight: 800;
      color: #0f2238;
    }

    .logo span {
      font-size: 13px;
      color: #6a7385;
      margin-top: 4px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 22px;
      row-gap: 10px;
      flex-wrap: wrap;
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid #d8e6f2;
      border-radius: 12px;
      background: #ffffff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .nav-toggle .bar {
      width: 20px;
      height: 2px;
      background: #0f2238;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    nav a {
      color: #243348;
      font-size: 15px;
      font-weight: 600;
      padding: 4px 0;
    }

    nav a:hover {
      color: #0b79b7;
    }

    /* HERO */
    .hero {
      position: relative;
      color: #fff;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroBgZoom {
      from {
        transform: scale(1.04);
      }
      to {
        transform: scale(1);
      }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 750px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 34px;
      padding: 70px 0;
    }

    .hero-content h2 {
      font-size: 52px;
      line-height: 1.1;
      font-weight: 800;
      max-width: 720px;
      margin-bottom: 18px;
    }

    .hero-content p {
      font-size: 18px;
      max-width: 680px;
      color: #ffffff;
      font-weight: 500;
      line-height: 1.75;
      background: rgba(8, 23, 39, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 14px;
      padding: 14px 18px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
      margin-bottom: 28px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 30px;
    }

    .hero-points span {
      background: rgba(8, 23, 39, 0.58);
      border: 1px solid rgba(255, 255, 255, 0.28);
      padding: 10px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(4px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.96);
      color: #162436;
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    }

    .hero-card h3 {
      font-size: 24px;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .hero-card p {
      color: #5f6b7d;
      margin-bottom: 18px;
      font-size: 15px;
    }

    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero-card li {
      padding-left: 28px;
      position: relative;
      color: #263548;
      font-weight: 500;
    }

    .hero-card li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: #0b79b7;
      font-weight: 800;
    }

    .hero-call {
      padding: 14px 18px;
      border-radius: 16px;
      background: #f3f8fc;
      font-weight: 700;
      color: #0b79b7;
      text-align: center;
    }

    body.sections-animate-ready .hero .hero-content h2,
    body.sections-animate-ready .hero .hero-content p,
    body.sections-animate-ready .hero .hero-points,
    body.sections-animate-ready .hero .hero-actions,
    body.sections-animate-ready .hero .hero-card {
      opacity: 0;
      transform: translateY(28px);
    }

    body.sections-animate-ready .hero.section-visible .hero-video {
      animation: heroBgZoom 5.2s ease-out both;
    }

    body.sections-animate-ready .hero.section-visible .hero-content h2 {
      animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) 0.05s both;
    }

    body.sections-animate-ready .hero.section-visible .hero-content p {
      animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) 0.2s both;
    }

    body.sections-animate-ready .hero.section-visible .hero-points {
      animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) 0.35s both;
    }

    body.sections-animate-ready .hero.section-visible .hero-actions {
      animation: heroFadeUp 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) 0.5s both;
    }

    body.sections-animate-ready .hero.section-visible .hero-card {
      animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.65, 0.2, 1) 0.22s both;
    }

    /* TRUST BAR */
    .trust-bar {
      background: #ffffff;
      border-bottom: 1px solid #ebf1f7;
    }

    .trust-items {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      padding: 22px 0;
    }

    .trust-item {
      background: #fff;
      border: 1px solid #edf2f7;
      border-radius: 18px;
      padding: 18px;
      text-align: center;
      box-shadow: 0 5px 14px rgba(14, 30, 55, 0.03);
    }

    .trust-item strong {
      display: block;
      font-size: 19px;
      color: #0f2238;
      margin-bottom: 4px;
    }

    .trust-item span {
      font-size: 14px;
      color: #687487;
    }

    /* CARD GRID */
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 24px;
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    .card {
      background: #fff;
      border-radius: 22px;
      padding: 28px 22px;
      box-shadow: 0 10px 30px rgba(13, 28, 48, 0.06);
      border: 1px solid #edf2f7;
      transition: 0.25s ease;
      height: 100%;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(13, 28, 48, 0.1);
    }

    .card h4 {
      font-size: 21px;
      color: #0b79b7;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .card p {
      color: #607084;
      font-size: 15px;
    }

    .breadcrumbs {
      font-size: 14px;
      color: #607084;
      margin-bottom: 14px;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .breadcrumbs a {
      color: #0b79b7;
      font-weight: 700;
    }

    .page-hero {
      background: #ffffff;
      border-bottom: 1px solid #ebf1f7;
    }

    .page-hero.topic-banner {
      position: relative;
      border-bottom: none;
      color: #ffffff;
      background: #10263d;
      overflow: hidden;
      min-height: clamp(280px, 34vw, 420px);
      display: flex;
      align-items: flex-end;
      isolation: isolate;
    }

    .page-hero.topic-banner .topic-banner-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      z-index: 0;
      transform: scale(0.90);
      transform-origin: center;
      animation: bannerZoom 14s ease-out both;
    }

    .page-hero.topic-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(8, 23, 39, 0.78), rgba(8, 23, 39, 0.45)),
        linear-gradient(180deg, rgba(8, 23, 39, 0.15) 0%, rgba(8, 23, 39, 0.76) 100%);
      z-index: 1;
    }

    .page-hero.topic-banner .container {
      position: relative;
      z-index: 2;
      padding-top: 58px;
      padding-bottom: 58px;
    }

    .page-hero.topic-banner .breadcrumbs {
      color: rgba(255, 255, 255, 0.9);
    }

    .page-hero.topic-banner .breadcrumbs a {
      color: #8fd4ff;
    }

    #service-pages {
      background: #f3f6fa !important;
    }

    #brands {
      background: #dde4ec !important;
    }

    .page-hero h2 {
      font-size: 42px;
      color: #0f2238;
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .page-hero.topic-banner h2 {
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-hero p {
      max-width: 860px;
      color: #5b6578;
      font-size: 17px;
    }

    .page-hero.topic-banner p {
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    }

    .link-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .link-card {
      background: #ffffff;
      border: 1px solid #ebf1f7;
      border-radius: 18px;
      padding: 22px;
      box-shadow: 0 8px 24px rgba(12, 28, 48, 0.04);
      transition: 0.2s ease;
    }

    .link-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(12, 28, 48, 0.08);
    }

    .link-card h4 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #0f2238;
      overflow-wrap: anywhere;
    }

    .link-card p {
      color: #607084;
      font-size: 15px;
      margin-bottom: 12px;
      overflow-wrap: anywhere;
    }

    .link-arrow {
      color: #0b79b7;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.2px;
    }

    .content-list {
      margin-top: 14px;
      padding-left: 20px;
      color: #4f5f73;
    }

    .content-list li + li {
      margin-top: 8px;
    }

    .inline-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .inline-links a {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: #eaf7ff;
      border: 1px solid #d6edf9;
      color: #0b79b7;
      font-size: 14px;
      font-weight: 700;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .inline-links a:hover {
      background: #0b79b7;
      color: #ffffff;
      border-color: #0b79b7;
    }

    /* SERVICES */
    .service-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: linear-gradient(180deg, #ebf8ff, #dff1ff);
      color: #0b79b7;
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 18px;
      font-weight: 800;
    }

    .service-icon img {
      width: 56px;
      height: 56px;
      object-fit: contain;
    }

    .brand-icons {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .brand-icon {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #d8e3ee;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px;
      box-shadow: 0 8px 18px rgba(12, 28, 48, 0.12);
      overflow: hidden;
      flex: 0 0 auto;
    }

    .brand-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .brand-icons-pair .brand-icon {
      width: 56px;
      height: 56px;
      padding: 8px;
    }

    /* CONTENT BLOCK */
    .content-block {
      background: #fff;
      border-radius: 26px;
      padding: 36px;
      border: 1px solid #e1ebf4;
      box-shadow: 0 14px 34px rgba(12, 28, 48, 0.07);
    }

    .content-block p + p {
      margin-top: 16px;
    }

    /* WHY US */
    .why-us {
      background: linear-gradient(135deg, #0b79b7, #085f91);
      color: #fff;
    }

    .why-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .why-left h3 {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .why-left p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 620px;
    }

    .why-list {
      display: grid;
      gap: 16px;
    }

    .why-list .item {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      padding: 18px 20px;
      font-weight: 600;
    }

    /* LOCATIONS */
    .locations-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .location-chip {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      padding: 9px 14px 9px 9px;
      border-radius: 999px;
      background: #f6fbff;
      border: 1px solid #d9e8f5;
      color: #0b79b7;
      font-weight: 700;
      font-size: 14px;
      min-height: 52px;
    }

    .location-thumb {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      object-fit: cover;
      border: 1px solid #c7dae9;
      flex: 0 0 34px;
      display: block;
      background: #ffffff;
    }

    .location-name {
      line-height: 1.1;
    }

    /* REVIEWS */
    .reviews {
      background: #f1f7fb;
    }

    .stars {
      color: #f6b400;
      font-size: 18px;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .review-author {
      display: inline-block;
      margin-top: 14px;
      font-weight: 800;
      color: #18314b;
    }

    /* FAQ */
    .faq-list {
      max-width: 940px;
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }

    .faq-item {
      background: #fff;
      border-radius: 18px;
      padding: 24px;
      border: 1px solid #ebf1f7;
      box-shadow: 0 8px 24px rgba(12, 28, 48, 0.04);
    }

    .faq-item h4 {
      font-size: 18px;
      color: #11233a;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .faq-item p {
      color: #607084;
    }

    /* CTA */
    .final-cta {
      background:
        linear-gradient(rgba(10, 27, 46, 0.84), rgba(10, 27, 46, 0.84)),
        url('https://images.unsplash.com/photo-1556909114-4f7b75f4f30f?auto=format&fit=crop&w=1400&q=80')
        center/cover no-repeat;
      color: #fff;
    }

    .final-cta .cta-box {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .final-cta h3 {
      font-size: 40px;
      line-height: 1.15;
      margin-bottom: 16px;
      font-weight: 800;
    }

    .final-cta p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 26px;
      font-size: 17px;
    }

    /* FOOTER */
    footer {
      background: #0d1726;
      color: #c7d1de;
      padding: 36px 0;
    }

    .footer-wrap {
      text-align: center;
    }

    .footer-wrap p {
      margin: 8px 0;
      font-size: 14px;
    }

    .footer-wrap strong {
      color: #fff;
    }

    @keyframes bannerZoom {
      from {
        transform: scale(1.02);
      }
      to {
        transform: scale(0.98);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 1080px) {
      .hero-inner,
      .why-wrap,
      .grid-4,
      .link-grid {
        grid-template-columns: 1fr 1fr;
      }

      .grid-3,
      .trust-items {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-inner {
        min-height: 640px;
      }

      .hero-content h2 {
        font-size: 44px;
      }
    }

    @media (max-width: 768px) {
      .header-wrap {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        min-height: auto;
        padding: 14px 0;
      }

      .nav-toggle {
        display: inline-flex;
      }

      nav {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 8px;
      }

      .header-wrap.nav-enabled nav {
        display: none;
      }

      .header-wrap.nav-enabled nav.is-open {
        display: flex;
      }

      nav a {
        font-size: 15px;
        padding: 12px 10px;
        border-top: 1px solid #ebf1f7;
      }

      .hero-inner,
      .grid-3,
      .grid-4,
      .link-grid,
      .trust-items,
      .why-wrap {
        grid-template-columns: 1fr;
      }

      .hero {
        text-align: center;
      }

      .hero-inner {
        min-height: auto;
        padding: 56px 0;
      }

      .hero-content h2 {
        font-size: 36px;
      }

      .hero-content p {
        font-size: 16px;
        padding: 12px 14px;
      }

      .hero-content p,
      .hero-card p,
      .section-subtitle {
        overflow-wrap: anywhere;
      }

      .section {
        padding: 56px 0;
      }

      .section-title h2,
      .section-title h3,
      .why-left h3,
      .page-hero h2,
      .final-cta h3 {
        font-size: 28px;
      }

      .page-hero.topic-banner {
        min-height: 250px;
      }

      .page-hero.topic-banner .container {
        padding-top: 44px;
        padding-bottom: 44px;
      }

      .content-block,
      .hero-card {
        padding: 24px;
      }

      .location-chip {
        gap: 8px;
        padding: 8px 12px 8px 8px;
        font-size: 13px;
        min-height: 46px;
      }

      .location-thumb {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
      }
    }

    @media (max-width: 480px) {
      .hero-content h2 {
        font-size: 31px;
      }

      .header-wrap {
        gap: 12px;
      }

      nav a {
        font-size: 14px;
        padding: 10px 8px;
      }

      .section {
        padding: 46px 0;
      }

      .page-hero.topic-banner {
        min-height: 220px;
      }

      .page-hero.topic-banner .container {
        padding-top: 36px;
        padding-bottom: 36px;
      }

      .content-block,
      .hero-card,
      .card,
      .link-card {
        padding: 18px;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-points {
        justify-content: center;
      }

      .hero-points span {
        width: 100%;
        text-align: center;
      }

      .service-icon {
        width: 54px;
        height: 54px;
      }

      .service-icon img {
        width: 40px;
        height: 40px;
      }

      .brand-icons {
        gap: 8px;
        margin-bottom: 10px;
      }

      .brand-icon {
        width: 50px;
        height: 50px;
        padding: 7px;
      }

      .brand-icons-pair .brand-icon {
        width: 46px;
        height: 46px;
        padding: 6px;
      }

      .location-chip {
        gap: 7px;
        padding: 7px 10px 7px 7px;
        min-height: 42px;
      }

      .location-thumb {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero .hero-video,
      .hero .hero-content h2,
      .hero .hero-content p,
      .hero .hero-points,
      .hero .hero-actions,
      .hero .hero-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
      }

      .page-hero.topic-banner .topic-banner-image {
        animation: none !important;
      }
    }

