:root {
      --navy: #04134F;
      --navy-soft: #3A517A;
      --white: #F7F7F7;
      --gray: #E6E3DF;
      --black: #1A1A1A;
      --gold: #D4AF37;
      --ink-soft: rgba(26, 26, 26, .68);
      --page: clamp(1.25rem, 4vw, 4.5rem);
      --max: 1120px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--white);
      color: var(--black);
      font-family: "Montserrat", Arial, sans-serif;
      line-height: 1.72;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    body.nav-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3, .logo-name, .price {
      font-family: "Marcellus", Georgia, serif;
      font-weight: 400;
    }

    #progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 80;
      width: 0%;
      height: 2px;
      background: var(--gold);
      transition: width .1s linear;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(4, 19, 79, .97);
      color: var(--white);
      border-bottom: 1px solid rgba(247, 247, 247, .1);
      backdrop-filter: blur(14px);
    }

    .nav-inner {
      width: min(100%, var(--max));
      margin: 0 auto;
      padding: .75rem var(--page) .72rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-rows: auto auto;
      gap: .55rem 1rem;
      align-items: center;
    }

    .logo {
      grid-column: 2;
      display: grid;
      justify-items: center;
      gap: .28rem;
      text-align: center;
    }

    .logo img {
      width: 62px;
      height: 62px;
      object-fit: contain;
      border-radius: 50%;
    }

    .logo-name {
      font-size: clamp(1rem, 1.4vw, 1.28rem);
      letter-spacing: .14em;
      line-height: 1;
      text-transform: uppercase;
    }

    .logo-sub {
      color: var(--gold);
      font-size: .46rem;
      font-weight: 600;
      letter-spacing: .25em;
      line-height: 1;
      text-transform: uppercase;
    }

    .nav-links {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(.9rem, 2vw, 1.6rem);
      padding-top: .45rem;
      border-top: 1px solid rgba(247, 247, 247, .09);
    }

    .nav-links a,
    .drawer a {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .13em;
      text-transform: uppercase;
      opacity: .72;
      transition: opacity .2s ease, color .2s ease;
    }

    .nav-links a:hover,
    .drawer a:hover { opacity: 1; color: var(--gold); }

    .nav-cta {
      padding: 8px 18px;
      border: 1px solid var(--gold);
      border-radius: 2px;
      color: var(--navy) !important;
      background: var(--white);
      opacity: 1 !important;
      letter-spacing: .12em;
      transition: background .2s ease, transform .15s ease;
    }

    .nav-cta:hover {
      background: var(--gray);
      transform: translateY(-1px);
    }

    .menu {
      display: none;
      grid-column: 3;
      justify-self: end;
      width: 42px;
      height: 42px;
      position: relative;
      border: 1px solid rgba(247, 247, 247, .28);
      border-radius: 50%;
      background: transparent;
      color: var(--white);
      cursor: pointer;
    }

    .menu span,
    .menu::before,
    .menu::after {
      content: "";
      width: 17px;
      height: 1px;
      position: absolute;
      left: 12px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu::before { top: 14px; }
    .menu span { top: 20px; }
    .menu::after { top: 26px; }
    .nav.open .menu::before { transform: translateY(6px) rotate(45deg); }
    .nav.open .menu span { opacity: 0; }
    .nav.open .menu::after { transform: translateY(-6px) rotate(-45deg); }

    .drawer {
      display: none;
      grid-column: 1 / -1;
      padding: .5rem 0 1rem;
      border-top: 1px solid rgba(247, 247, 247, .1);
    }

    .nav.open .drawer {
      display: grid;
      gap: .9rem;
    }

    .section {
      padding: clamp(4.4rem, 8vw, 7rem) var(--page);
    }

    .section-inner {
      width: min(100%, var(--max));
      margin: 0 auto;
    }

    .label {
      display: block;
      margin-bottom: 1.1rem;
      color: var(--gold);
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .2em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    h1 {
      max-width: 560px;
      margin-bottom: 1.25rem;
      color: var(--navy);
      font-size: clamp(1.95rem, 3.7vw, 3.35rem);
      line-height: 1.16;
      text-wrap: pretty;
    }

    h2 {
      max-width: 680px;
      margin-bottom: 1rem;
      color: var(--navy);
      font-size: clamp(1.85rem, 3.6vw, 3.15rem);
      line-height: 1.12;
      text-wrap: pretty;
    }

    h3 {
      margin-bottom: .65rem;
      color: var(--navy);
      font-size: clamp(1.25rem, 2vw, 1.62rem);
      line-height: 1.22;
    }

    .lead {
      max-width: 640px;
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: clamp(1rem, 1.35vw, 1.12rem);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: .86rem 1.15rem;
      border: 1px solid transparent;
      border-radius: 2px;
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .1em;
      line-height: 1.2;
      text-align: center;
      text-transform: uppercase;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 34px rgba(4, 19, 79, .18);
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
    }

    .btn-light {
      background: var(--white);
      color: var(--navy);
      border-color: rgba(212, 175, 55, .8);
    }

    .note {
      margin-top: .85rem;
      margin-bottom: 0;
      color: rgba(26, 26, 26, .48);
      font-size: .78rem;
    }

    .hero {
      padding: clamp(4rem, 7vw, 6.5rem) var(--page) clamp(3.8rem, 7vw, 6rem);
      background:
        linear-gradient(135deg, rgba(4, 19, 79, .04), transparent 34%),
        var(--white);
    }

    .hero-grid {
      width: min(100%, var(--max));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(320px, .78fr);
      gap: clamp(2rem, 5vw, 4.8rem);
      align-items: start;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      color: var(--white);
      padding: clamp(1.6rem, 4vw, 2.65rem);
      border-radius: 4px;
      box-shadow: 0 24px 60px rgba(4, 19, 79, .16);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .hero-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 70px rgba(4, 19, 79, .22);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(110deg, rgba(247, 247, 247, .055) 0 1px, transparent 1px 16px),
        linear-gradient(18deg, rgba(212, 175, 55, .11), transparent 45%);
      opacity: .75;
      pointer-events: none;
    }

    .hero-card > * { position: relative; }
    .hero-card h2 {
      color: var(--white);
      font-size: clamp(1.45rem, 2.5vw, 2.05rem);
      line-height: 1.2;
    }

    .hero-card p {
      color: rgba(247, 247, 247, .76);
      font-size: .92rem;
    }

    .steps {
      display: grid;
      gap: .9rem;
      margin: 1.55rem 0 1.8rem;
      padding: 0;
      list-style: none;
    }

    .steps li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: .85rem;
      align-items: start;
      color: rgba(247, 247, 247, .82);
      font-size: .92rem;
      line-height: 1.55;
    }

    .steps span {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(212, 175, 55, .65);
      border-radius: 50%;
      color: var(--gold);
      font-size: .72rem;
      font-weight: 600;
    }

    .trust-line {
      margin-top: 1rem;
      color: rgba(247, 247, 247, .52) !important;
      font-size: .76rem !important;
    }

    .who {
      background: var(--navy);
      color: var(--white);
    }

    .who h2,
    .who h3 { color: var(--white); }
    .who .lead { color: rgba(247, 247, 247, .72); }

    .fit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.4rem, 4vw, 3rem);
      margin-top: 3rem;
      align-items: start;
    }

    .fit-column {
      border-top: 2px solid var(--gold);
      background: var(--white);
    }

    .fit-column h3 {
      margin: 0;
      padding: 1.2rem 1.35rem;
      border-bottom: 1px solid rgba(4, 19, 79, .1);
      color: var(--navy);
    }

    .fit-item {
      padding: 1.05rem 1.35rem;
      border-bottom: 1px solid rgba(4, 19, 79, .1);
      transition: padding-left .2s ease, background .2s ease;
    }

    .fit-item:last-child { border-bottom: 0; }
    .fit-item:hover { padding-left: 1.65rem; background: rgba(4, 19, 79, .025); }

    .fit-item strong {
      display: block;
      margin-bottom: .25rem;
      color: var(--navy);
      font-size: .92rem;
      font-weight: 600;
    }

    .fit-item p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: .92rem;
      line-height: 1.65;
    }

    .section-action {
      display: flex;
      justify-content: center;
      margin-top: 2.4rem;
    }

    .about-grid,
    .service-grid {
      display: grid;
      grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
      gap: clamp(2rem, 6vw, 5rem);
      align-items: center;
    }

    .portrait {
      min-height: clamp(260px, 36vw, 430px);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background:
        linear-gradient(145deg, rgba(4, 19, 79, .92), rgba(58, 81, 122, .8)),
        var(--navy);
      color: rgba(247, 247, 247, .4);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .portrait::before {
      content: "";
      position: absolute;
      inset: 8%;
      border: 1px solid rgba(212, 175, 55, .42);
    }

    .about-copy p {
      color: var(--ink-soft);
    }

    .stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin-top: 1.7rem;
      padding-top: 1.4rem;
      border-top: 1px solid rgba(4, 19, 79, .12);
    }

    .stat strong {
      display: block;
      margin-bottom: .3rem;
      color: var(--navy);
      font-family: "Marcellus", Georgia, serif;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 1;
    }

    .stat span {
      color: rgba(26, 26, 26, .52);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .service {
      background: var(--navy);
      color: var(--white);
    }

    .service h2,
    .service h3 { color: var(--white); }

    .service-copy p { color: rgba(247, 247, 247, .72); }

    .service-panel {
      padding: clamp(1.5rem, 3.5vw, 2.4rem);
      border-top: 3px solid var(--gold);
      background: var(--white);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .service-panel h3 {
      color: var(--navy);
    }

    .service-panel:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 64px rgba(0, 0, 0, .16);
    }

    .service-panel ul {
      display: grid;
      gap: .9rem;
      margin: 1.4rem 0 1.7rem;
      padding: 0;
      list-style: none;
    }

    .service-panel li {
      display: grid;
      grid-template-columns: 9px 1fr;
      gap: .75rem;
      color: var(--ink-soft);
      font-size: .92rem;
    }

    .service-panel li::before {
      content: "";
      width: 6px;
      height: 6px;
      margin-top: .66rem;
      border-radius: 50%;
      background: var(--gold);
    }

    .price {
      margin-bottom: .25rem;
      color: var(--navy);
      font-size: clamp(2.6rem, 5vw, 4.1rem);
      line-height: 1;
    }

    .price-detail {
      margin-bottom: 1.5rem;
      color: rgba(26, 26, 26, .54);
      font-size: .84rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .service .note {
      color: rgba(26, 26, 26, .52);
    }

    .service-extra {
      width: min(100%, var(--max));
      margin: clamp(2.8rem, 6vw, 4.5rem) auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.4rem, 4vw, 3rem);
      align-items: start;
    }

    .service-extra-num {
      display: inline-block;
      margin-right: .65rem;
      color: var(--gold);
      font-family: "Marcellus", Georgia, serif;
      font-size: 1.15rem;
      line-height: 1;
      vertical-align: baseline;
    }

    .service-extra-block {
      border-top: 2px solid var(--gold);
      background: var(--white);
      border-left: 1px solid rgba(4, 19, 79, .1);
      border-right: 1px solid rgba(4, 19, 79, .1);
    }

    .service-extra-block h3 {
      margin: 0;
      padding: 1.2rem 1.35rem;
      border-bottom: 1px solid rgba(4, 19, 79, .1);
      color: var(--navy);
    }

    .service-extra-item {
      padding: 1.05rem 1.35rem;
      border-bottom: 1px solid rgba(4, 19, 79, .1);
      transition: padding-left .2s ease, background .2s ease;
    }

    .service-extra-item:last-child { border-bottom: 0; }
    .service-extra-item:hover { padding-left: 1.65rem; background: rgba(4, 19, 79, .025); }

    .service-extra-item strong {
      display: block;
      margin-bottom: .25rem;
      color: var(--navy);
      font-size: .92rem;
      font-weight: 600;
    }

    .service-extra-item p {
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: .92rem;
      line-height: 1.65;
    }

    .service-extra-action {
      padding: 1.2rem 1.35rem 1.35rem;
    }

    .faq {
      background: var(--white);
    }

    .faq-header {
      margin-bottom: 3rem;
    }

    .faq-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(1.4rem, 4vw, 3rem);
      align-items: start;
    }

    .faq-block {
      border-top: 2px solid var(--navy);
      background: var(--white);
    }

    .faq-block h3 {
      margin: 0;
      padding: 1.2rem 1.35rem;
      border-bottom: 1px solid rgba(4, 19, 79, .1);
    }

    details {
      border-bottom: 1px solid rgba(4, 19, 79, .1);
    }

    summary {
      cursor: pointer;
      list-style: none;
      padding: 1rem 1.35rem;
      color: var(--navy);
      font-weight: 600;
      line-height: 1.45;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      color: var(--gold);
      font-size: 1.2rem;
      font-weight: 400;
      line-height: 1;
      transition: transform .2s ease;
    }

    details[open] summary::after { transform: rotate(45deg); }

    details p {
      margin: 0;
      padding: 0 1.35rem 1.15rem;
      color: var(--ink-soft);
      font-size: .92rem;
    }

    .sticky-mobile {
      display: none;
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 60;
      justify-content: center;
      min-height: 46px;
      box-shadow: 0 16px 40px rgba(4, 19, 79, .28);
    }

    .final {
      padding: clamp(4.8rem, 8vw, 7rem) var(--page);
      text-align: center;
      background: var(--navy);
      color: var(--white);
    }

    .final h2 {
      margin-left: auto;
      margin-right: auto;
      color: var(--white);
    }

    .final p {
      max-width: 560px;
      margin: 0 auto 2rem;
      color: rgba(247, 247, 247, .74);
    }

    .footer {
      padding: 1.7rem var(--page);
      background: var(--navy);
      color: rgba(247, 247, 247, .45);
      border-top: 1px solid rgba(247, 247, 247, .1);
    }

    .footer-inner {
      width: min(100%, var(--max));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
      font-size: .78rem;
    }

    .fade {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .fade.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 920px) {
      .nav-links { display: none; }
      .menu { display: block; }
      .hero-grid,
      .about-grid,
      .service-grid,
      .service-extra,
      .faq-columns {
        grid-template-columns: 1fr;
      }
      .fit-grid { grid-template-columns: 1fr; }
      .hero { padding-top: 3rem; }
    }

    @media (max-width: 620px) {
      .nav-inner { padding-inline: 1rem; }
      .logo img { width: 52px; height: 52px; }
      .sticky-mobile { display: inline-flex; }
      body { padding-bottom: 4.8rem; }
      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
    }
