
    :root {
      --blue: #0057ff;
      --blue-2: #0b63ff;
      --blue-dark: #001f4f;
      --navy: #06152f;
      --text: #07152f;
      --muted: #5d6a7c;
      --line: #dce5f2;
      --bg: #f4f8fd;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(7, 21, 47, 0.12);
      --radius: 22px;
      --container: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.55;
      overflow-x: hidden;
    }

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

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

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

    /* ================= HEADER ================= */

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(220, 229, 242, 0.8);
    }

    .header-inner {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--navy);
      line-height: 1;
      font-size: 20px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #0072ff, #003f9f);
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      width: 26px;
      height: 26px;
      border-left: 8px solid #fff;
      border-bottom: 8px solid #fff;
      transform: rotate(-45deg);
      left: 9px;
      top: 6px;
      opacity: 0.95;
    }

    .logo span {
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 15px;
      font-weight: 700;
      color: #17233b;
    }

    .nav a {
      transition: color .2s ease;
    }

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

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 10px;
      background: var(--blue);
      color: #fff;
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(0, 87, 255, .22);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 12px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .mobile-menu-btn span {
      width: 20px;
      height: 2px;
      background: var(--navy);
      display: block;
      position: relative;
    }

    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: var(--navy);
    }

    .mobile-menu-btn span::before {
      top: -7px;
    }

    .mobile-menu-btn span::after {
      top: 7px;
    }

    /* ================= HERO ================= */

    .hero {
      min-height: 760px;
      padding-top: 82px;
      background:
        linear-gradient(
          90deg,
          rgba(255,255,255,0.98) 0%,
          rgba(255,255,255,0.92) 35%,
          rgba(255,255,255,0.45) 58%,
          rgba(255,255,255,0.08) 100%
        ),
        url("../img/image-bg.png") center right / cover no-repeat;
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 170px;
      background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 110px 0 0;
      max-width: 620px;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .hero-label::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--blue);
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 76px);
      line-height: .98;
      letter-spacing: -0.065em;
      color: var(--navy);
      margin-bottom: 26px;
      max-width: 720px;
    }

    .hero h1 strong {
      color: var(--blue);
      font-weight: inherit;
    }

    .hero-text {
      font-size: 19px;
      color: #26344c;
      max-width: 560px;
      margin-bottom: 34px;
      font-weight: 500;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 17px 26px;
      border-radius: 11px;
      font-weight: 850;
      font-size: 16px;
      transition: all .2s ease;
      border: 1px solid transparent;
      cursor: pointer;
      font-family: inherit;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 16px 32px rgba(0, 87, 255, .22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(0, 87, 255, .28);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.82);
      color: var(--navy);
      border-color: #b8c5d8;
    }

    .btn-secondary:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .hero-strip {
      position: relative;
      z-index: 3;
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
      margin-top: -34px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }

    .hero-strip-item {
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 86px;
      position: relative;
      font-weight: 850;
      color: var(--navy);
    }

    .hero-strip-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 22px;
      bottom: 22px;
      width: 1px;
      background: var(--line);
    }

    .mini-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      color: var(--blue);
    }

    /* ================= COMMON SECTIONS ================= */

    .section {
      padding: 92px 0;
    }

    .section-light {
      background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
    }

    .section-kicker {
      color: var(--blue);
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: .08em;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      color: var(--navy);
      margin-bottom: 18px;
    }

    .section-desc {
      color: var(--muted);
      font-size: 18px;
      max-width: 700px;
    }

    /* ================= ABOUT ================= */

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 70px;
      align-items: center;
    }

    .about-text p {
      color: #37445a;
      font-size: 17px;
      margin-bottom: 18px;
      max-width: 570px;
    }

    .about-points {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .about-point {
      border-top: 2px solid var(--blue);
      padding-top: 16px;
    }

    .about-point strong {
      display: block;
      color: var(--navy);
      font-size: 17px;
      margin-bottom: 8px;
    }

    .about-point span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 430px;
      background:
        linear-gradient(180deg, rgba(6,21,47,0.02), rgba(6,21,47,0.15)),
        url("../img/image-bg.png") center right / cover no-repeat;
    }

    /* ================= SERVICES ================= */

    .services-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 40px;
      margin-bottom: 38px;
    }

    .services-head .section-title {
      margin-bottom: 0;
    }

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

    .service-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 34px;
      box-shadow: 0 14px 34px rgba(7,21,47,0.08);
      min-height: 260px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 46px rgba(7,21,47,0.12);
    }

    .service-number {
      font-size: 48px;
      line-height: 1;
      font-weight: 900;
      color: var(--blue);
      letter-spacing: -0.06em;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .service-number::after {
      content: "";
      width: 50px;
      height: 2px;
      background: var(--blue);
    }

    .service-card h3 {
      color: var(--navy);
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }

    .service-card p {
      color: #465367;
      font-size: 16px;
    }

    /* ================= PROCESS ================= */

    .process {
      background: #f4f8fd;
    }

    .process-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 54px;
    }

    .process-line {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .process-line::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 19px;
      height: 2px;
      background: #bfd0e8;
    }

    .process-step {
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .process-dot {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      margin-bottom: 22px;
      box-shadow: 0 10px 22px rgba(0,87,255,.22);
      font-size: 13px;
    }

    .process-step h3 {
      color: var(--navy);
      font-size: 18px;
      margin-bottom: 10px;
    }

    .process-step p {
      color: var(--muted);
      font-size: 15px;
      max-width: 230px;
    }

    /* ================= PARTNERS ================= */

    .partners-section {
      padding: 80px 0;
      background: #fff;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 50px;
    }

    .partners-logos {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .partner-logo {
      min-height: 132px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 14px 34px rgba(7,21,47,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      overflow: hidden;
    }

    .partner-logo.allegro {
      color: #ff5a00;
      font-size: 54px;
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .partner-logo.kosik {
      background: #68106f;
      color: #fff7d9;
      font-size: 44px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .partner-logo.kosik span {
      font-size: 26px;
      margin-left: 2px;
      opacity: .95;
    }

    /* ================= CONTACT ================= */

    .contact {
      background:
        linear-gradient(90deg, rgba(0,23,61,0.98), rgba(0,49,122,0.92)),
        url("../img/image-bg.png") center / cover no-repeat;
      color: #fff;
      padding: 80px 0 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: start;
      padding-bottom: 70px;
    }

    .contact .section-kicker {
      color: #63a1ff;
    }

    .contact h2 {
      color: #fff;
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }

    .contact-text {
      color: #c7d7ef;
      font-size: 17px;
      max-width: 480px;
      margin-bottom: 34px;
    }

    .contact-list {
      display: grid;
      gap: 16px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 14px;
      align-items: start;
      color: #fff;
      font-weight: 700;
    }

    .contact-item svg {
      width: 22px;
      height: 22px;
      color: #63a1ff;
      margin-top: 2px;
    }

    .contact-item small {
      display: block;
      color: #9fb5d4;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .form-card {
      background: #fff;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 24px 55px rgba(0,0,0,0.28);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .form-card input,
    .form-card textarea {
      width: 100%;
      border: 1px solid #d7e0ef;
      border-radius: 10px;
      padding: 16px 16px;
      font-size: 15px;
      font-family: inherit;
      color: var(--text);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
      background: #fff;
    }

    .form-card textarea {
      grid-column: 1 / -1;
      min-height: 138px;
      resize: vertical;
    }

    .form-card input:focus,
    .form-card textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(0,87,255,0.08);
    }

    .form-card button {
      width: 100%;
      margin-top: 14px;
      border: 0;
    }

    /* ================= FOOTER ================= */

    .footer {
      border-top: 1px solid rgba(255,255,255,0.14);
      padding: 24px 0;
      color: #b8c8e1;
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 25px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .footer-logo .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 10px;
    }

    .footer-logo .logo-mark::before {
      width: 20px;
      height: 20px;
      border-left-width: 6px;
      border-bottom-width: 6px;
      left: 8px;
      top: 6px;
    }

    /* ================= TABLET ================= */

    @media (max-width: 980px) {
      .nav,
      .header-cta {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }

      .hero {
        min-height: auto;
        background:
          linear-gradient(
            180deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.94) 50%,
            rgba(255,255,255,0.7) 100%
          ),
          url("../img/image-bg.png") center bottom / cover no-repeat;
      }

      .hero-content {
        padding: 80px 0 135px;
        max-width: 100%;
      }

      .hero-actions {
        margin-bottom: 34px;
      }

      .hero-strip {
        margin-top: -54px;
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-strip-item:nth-child(2)::after {
        display: none;
      }

      .about-grid,
      .partners-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-points {
        grid-template-columns: 1fr;
      }

      .services-head {
        display: block;
      }

      .services-head .section-desc {
        margin-top: 18px;
      }

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

      .process-line {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .process-line::before {
        left: 19px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
      }

      .process-step {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 18px;
        padding: 0;
      }

      .process-dot {
        margin-bottom: 0;
      }

      .process-step h3,
      .process-step p {
        max-width: none;
      }

      .partners-logos {
        grid-template-columns: 1fr;
      }

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

    /* ================= MOBILE FINAL FIX ================= */

    @media (max-width: 768px) {
      .container {
        width: calc(100% - 28px);
      }

      .site-header {
        background: rgba(255, 255, 255, 0.97);
      }

      .header-inner {
        height: 58px;
      }

      .logo {
        font-size: 11px;
        gap: 7px;
      }

      .logo-mark {
        width: 24px;
        height: 24px;
        border-radius: 7px;
      }

      .logo-mark::before {
        width: 14px;
        height: 14px;
        border-left-width: 4px;
        border-bottom-width: 4px;
        left: 5px;
        top: 4px;
      }

      .mobile-menu-btn {
        width: 34px;
        height: 34px;
        border-radius: 8px;
      }

      .mobile-menu-btn span,
      .mobile-menu-btn span::before,
      .mobile-menu-btn span::after {
        width: 16px;
      }

      .mobile-menu-btn span::before {
        top: -6px;
      }

      .mobile-menu-btn span::after {
        top: 6px;
      }

      .hero {
        min-height: auto;
        padding-top: 58px;
        background:
          linear-gradient(
            180deg,
            rgba(255,255,255,0.99) 0%,
            rgba(255,255,255,0.96) 45%,
            rgba(255,255,255,0.82) 73%,
            rgba(255,255,255,0.72) 100%
          ),
          url("../img/image-bg.png") center bottom / cover no-repeat;
      }

      .hero::after {
        height: 90px;
      }

      .hero-content {
        padding: 42px 0 142px;
      }

      .hero-label {
        font-size: 10px;
        margin-bottom: 12px;
        gap: 8px;
      }

      .hero-label::before {
        width: 24px;
      }

      .hero h1 {
        font-size: 31px;
        line-height: 1.04;
        letter-spacing: -0.045em;
        margin-bottom: 14px;
        max-width: 340px;
      }

      .hero-text {
        font-size: 13.5px;
        line-height: 1.55;
        max-width: 330px;
        margin-bottom: 22px;
        color: #26344c;
      }

      .hero-actions {
        gap: 10px;
        margin-bottom: 0;
      }

      .btn {
        min-height: 46px;
        padding: 13px 18px;
        font-size: 13px;
        border-radius: 9px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-strip {
        width: calc(100% - 28px);
        margin-top: -78px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
      }

      .hero-strip-item {
        background: #fff;
        border: 1px solid #e1e9f5;
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(7, 21, 47, 0.08);
        min-height: 74px;
        padding: 13px 11px;
        font-size: 11.5px;
        line-height: 1.25;
        gap: 9px;
      }

      .hero-strip-item::after {
        display: none !important;
      }

      .mini-icon {
        width: 21px;
        height: 21px;
      }

      .section {
        padding: 54px 0;
      }

      .section-kicker {
        font-size: 10px;
        margin-bottom: 9px;
      }

      .section-title {
        font-size: 26px;
        line-height: 1.12;
        letter-spacing: -0.035em;
        margin-bottom: 14px;
      }

      .section-desc {
        font-size: 14px;
        line-height: 1.55;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .about-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
      }

      .about-points {
        margin-top: 22px;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .about-point {
        background: #fff;
        border: 1px solid #e1e9f5;
        border-top: 2px solid var(--blue);
        border-radius: 12px;
        padding: 14px;
      }

      .about-point strong {
        font-size: 14px;
        margin-bottom: 5px;
      }

      .about-point span {
        font-size: 12px;
      }

      .about-image {
        display: none;
      }

      .services-head {
        margin-bottom: 22px;
      }

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

      .service-card {
        padding: 20px;
        border-radius: 14px;
        min-height: auto;
      }

      .service-number {
        font-size: 32px;
        margin-bottom: 15px;
        gap: 12px;
      }

      .service-number::after {
        width: 36px;
      }

      .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
      }

      .service-card p {
        font-size: 13px;
        line-height: 1.55;
      }

      .process {
        padding: 54px 0;
      }

      .process-head {
        text-align: center;
        margin-bottom: 28px;
      }

      .process-line {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

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

      .process-step {
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        background: #fff;
        border: 1px solid #e1e9f5;
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 8px 20px rgba(7, 21, 47, 0.05);
      }

      .process-dot {
        width: 30px;
        height: 30px;
        font-size: 11px;
        margin: 0;
      }

      .process-step h3 {
        font-size: 14px;
        margin-bottom: 5px;
      }

      .process-step p {
        font-size: 12.5px;
        line-height: 1.5;
        max-width: none;
      }

      .partners-section {
        padding: 54px 0;
      }

      .partners-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .partners-grid .section-title {
        font-size: 24px;
      }

      .partners-logos {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .partner-logo {
        min-height: 82px;
        border-radius: 14px;
        padding: 18px;
      }

      .partner-logo.allegro {
        font-size: 34px;
      }

      .partner-logo.kosik {
        font-size: 30px;
      }

      .partner-logo.kosik span {
        font-size: 18px;
      }

      .contact {
        padding-top: 54px;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 34px;
      }

      .contact h2 {
        font-size: 27px;
        line-height: 1.12;
        margin-bottom: 12px;
      }

      .contact-text {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 22px;
      }

      .contact-list {
        gap: 12px;
      }

      .contact-item {
        grid-template-columns: 20px 1fr;
        gap: 10px;
        font-size: 13px;
      }

      .contact-item svg {
        width: 18px;
        height: 18px;
      }

      .contact-item small {
        font-size: 11px;
      }

      .form-card {
        padding: 16px;
        border-radius: 14px;
      }

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

      .form-card input,
      .form-card textarea {
        padding: 13px 14px;
        font-size: 13px;
        border-radius: 9px;
      }

      .form-card textarea {
        min-height: 120px;
      }

      .form-card button {
        margin-top: 10px;
      }

      .footer {
        padding: 18px 0;
        font-size: 11px;
      }

      .footer-inner {
        gap: 12px;
      }

      .footer-logo {
        font-size: 11px;
      }

      .footer-logo .logo-mark {
        width: 24px;
        height: 24px;
      }

      .footer-logo .logo-mark::before {
        width: 14px;
        height: 14px;
        border-left-width: 4px;
        border-bottom-width: 4px;
        left: 5px;
        top: 4px;
      }
    }

    @media (max-width: 390px) {
      .hero h1 {
        font-size: 29px;
      }

      .hero-text {
        font-size: 13px;
      }

      .hero-strip-item {
        font-size: 10.5px;
        padding: 12px 9px;
      }
    }
    .hero {
  min-height: 760px;
  padding-top: 82px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.92) 35%,
      rgba(255,255,255,0.45) 58%,
      rgba(255,255,255,0.08) 100%
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 170px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 0;
  max-width: 620px;
}

.logo-image {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-image img {
  width: 150px;
  height: auto;
  display: block;
}

.footer-logo-image img {
  width: 150px;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-image img {
    width: 112px;
  }

  .footer-logo-image img {
    width: 118px;
  }
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 430px;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}
  

/* ================= WORDPRESS / FINAL OVERRIDES ================= */
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

h1, h2, h3,
.logo,
.btn,
.header-cta,
.section-kicker,
.service-number {
  font-family: 'Manrope', 'Inter', Arial, Helvetica, sans-serif;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.logo-image img {
  max-height: 54px;
  object-fit: contain;
}

.footer-logo-image img {
  max-height: 58px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid #dce5f2;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(7, 21, 47, 0.16);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .22s ease;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav a:hover {
    background: #f4f8fd;
  }

  body.menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.menu-open .mobile-menu-btn span {
    background: transparent;
  }

  body.menu-open .mobile-menu-btn span::before {
    top: 0;
    transform: rotate(45deg);
  }

  body.menu-open .mobile-menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .nav {
    top: 66px;
  }

  .about-image {
    display: block;
    min-height: 260px;
  }

  .about-image img {
    min-height: 260px;
  }
}


/* ================= FOOTER FIX ================= */

.footer {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 1;
  background: linear-gradient(90deg, #00173d 0%, #00317a 100%);
  color: #b8c8e1;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer * {
  position: relative;
}

.footer-inner {
  background: transparent;
}

.footer a,
.footer div,
.footer span {
  color: inherit;
}

.footer-logo {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer {
    position: static !important;
    padding: 22px 0;
    background: linear-gradient(180deg, #00173d 0%, #002b68 100%);
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}