:root {
      --ink: #17313a;
      --muted: #5f737b;
      --brand: #006d83;
      --brand-dark: #063f52;
      --aqua: #00a7c6;
      --gold: #b98a45;
      --line: #dce9ed;
      --paper: #ffffff;
      --soft: #f4fafb;
      --soft-2: #edf6f8;
      --shadow: 0 18px 45px rgba(12, 62, 78, 0.12);
      --radius: 8px;
      --max: 1160px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Open Sans", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
    }

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

    a {
      color: inherit;
    }

    address {
      font-style: normal;
    }

    :focus-visible {
      outline: 3px solid rgba(0, 167, 198, 0.35);
      outline-offset: 3px;
    }

    .page {
      min-height: 100vh;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px);
    }

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

    .logo-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      min-width: 0;
    }

    .logo-link img {
      width: 178px;
      min-width: 154px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #425961;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav a {
      text-decoration: none;
    }

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

    .btn {
      display: inline-flex;
      min-height: 46px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      padding: 12px 18px;
      font-weight: 800;
      line-height: 1.2;
      text-decoration: none;
      transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--brand);
      color: #ffffff;
      box-shadow: 0 12px 26px rgba(0, 109, 131, 0.22);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--brand-dark);
      border-color: #bcd4db;
    }

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

    .hero {
      padding: 70px 0 64px;
      background:
        linear-gradient(180deg, #f7fbfc 0%, #ffffff 62%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--gold);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.15;
      letter-spacing: 0;
    }

    h1 {
      max-width: 680px;
      color: #0f2d36;
      font-size: clamp(42px, 6vw, 72px);
      font-weight: 800;
    }

    .hero-lead {
      max-width: 690px;
      margin: 24px 0 0;
      color: #405962;
      font-size: 20px;
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .topic-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .topic {
      border: 1px solid #cfe1e6;
      border-radius: 999px;
      padding: 8px 12px;
      background: #ffffff;
      color: #34515a;
      font-size: 13px;
      font-weight: 700;
    }

    .hero-panel {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      box-shadow: var(--shadow);
    }

    .hero-image {
      background: var(--soft-2);
      padding: 26px 26px 0;
    }

    .hero-image picture,
    .hero-image img {
      width: 100%;
    }

    .hero-panel-body {
      padding: 24px;
      border-top: 1px solid var(--line);
    }

    .hero-panel-title {
      color: var(--brand-dark);
      font-size: 18px;
      font-weight: 800;
    }

    .hero-panel-text {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .quick-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .quick-list li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      color: #2e4b54;
      font-size: 14px;
      font-weight: 700;
    }

    .quick-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--aqua);
      box-shadow: 0 0 0 5px rgba(0, 167, 198, 0.12);
    }

    .section {
      padding: 82px 0;
    }

    .section-soft {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.52fr);
      gap: 36px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-label {
      margin: 0 0 12px;
      color: var(--brand);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    h2 {
      color: #102e37;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 800;
    }

    .section-copy {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card,
    .why-item,
    .step,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
    }

    .service-card {
      min-height: 236px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(12, 62, 78, 0.06);
    }

    .card-number {
      display: inline-flex;
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      border-radius: 50%;
      background: #e6f6f9;
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 800;
    }

    h3 {
      color: #17313a;
      font-size: 19px;
      font-weight: 800;
    }

    .service-card p,
    .why-item p,
    .step p,
    .faq-item p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 0.78fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .why-summary {
      padding-top: 4px;
    }

    .why-summary p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 17px;
    }

    .why-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .why-item {
      padding: 22px;
    }

    .why-kicker {
      color: var(--gold);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step {
      padding: 22px;
      position: relative;
    }

    .step-index {
      display: block;
      margin-bottom: 30px;
      color: var(--brand);
      font-size: 30px;
      font-weight: 800;
      line-height: 1;
    }

    .domain-note {
      background: var(--brand-dark);
      color: #ffffff;
      padding: 70px 0;
    }

    .domain-note-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.44fr);
      gap: 34px;
      align-items: center;
    }

    .domain-note h2 {
      color: #ffffff;
    }

    .domain-note .section-label,
    .contact-band .section-label {
      color: #8be8ff;
    }

    .domain-note p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 17px;
    }

    .domain-card {
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(255, 255, 255, 0.08);
    }

    .domain-card strong {
      display: block;
      color: #ffffff;
      font-size: 18px;
    }

    .domain-card a {
      display: inline-flex;
      margin-top: 16px;
      color: #ffffff;
      font-weight: 800;
      text-decoration-color: rgba(255, 255, 255, 0.55);
      text-underline-offset: 4px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.78fr);
      gap: 42px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      padding: 0;
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 18px 20px;
      color: #17313a;
      font-weight: 800;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      float: right;
      color: var(--brand);
      font-weight: 800;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-item p {
      margin: 0;
      padding: 0 20px 20px;
    }

    .contact-band {
      padding: 74px 0;
      background: #0e2f39;
      color: #ffffff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.75fr) minmax(310px, 0.5fr);
      gap: 44px;
      align-items: center;
    }

    .contact-band h2 {
      color: #ffffff;
    }

    .contact-band p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.74);
      font-size: 17px;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .contact-box {
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(255, 255, 255, 0.06);
    }

    .contact-list {
      display: grid;
      gap: 13px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .contact-list a {
      color: #ffffff;
      font-weight: 700;
      text-decoration-color: rgba(255, 255, 255, 0.45);
      text-underline-offset: 4px;
    }

    .contact-list span {
      display: block;
      color: rgba(255, 255, 255, 0.62);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .site-footer {
      padding: 26px 0;
      background: #09242c;
      color: rgba(255, 255, 255, 0.68);
      font-size: 14px;
    }

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

    .footer-inner a {
      color: #ffffff;
      font-weight: 700;
      text-decoration-color: rgba(255, 255, 255, 0.42);
      text-underline-offset: 4px;
    }

    .scroll-target {
      scroll-margin-top: 100px;
    }

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

      .hero-grid,
      .section-head,
      .why-grid,
      .domain-note-grid,
      .faq-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 34px;
      }

      .services-grid,
      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .header-inner {
        min-height: 70px;
        gap: 12px;
      }

      .logo-link img {
        width: 150px;
        min-width: 132px;
      }

      .site-header .btn {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
      }

      .hero {
        padding: 46px 0 52px;
      }

      h1 {
        font-size: 44px;
      }

      .hero-lead {
        font-size: 18px;
      }

      .hero-actions,
      .contact-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }

      .hero-panel-body,
      .service-card,
      .why-item,
      .step,
      .contact-box,
      .domain-card {
        padding: 20px;
      }

      .services-grid,
      .why-list,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 58px 0;
      }

      .section-head {
        margin-bottom: 24px;
      }

      .domain-note,
      .contact-band {
        padding: 56px 0;
      }

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

    @media (max-width: 410px) {
      .container {
        width: min(100% - 24px, var(--max));
      }

      h1 {
        font-size: 40px;
      }

      .hero-panel {
        margin-inline: -2px;
      }

      .topic {
        font-size: 12px;
      }
    }
