:root {
    --navy: #083a57;
    --navy-dark: #042941;
    --navy-deep: #03233a;
    --teal: #0a6174;
    --gold: #d9a23c;
    --gold-dark: #b88329;
    --text: #183149;
    --muted: #647487;
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --border: #d9e2e8;
    --shadow: 0 12px 32px rgba(22, 49, 73, .12);
    --radius: 14px;
    --container: 1540px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--navy-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(217,162,60,.65); outline-offset: 3px; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; padding: 10px 14px; background: #fff; color: var(--navy); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.topbar { background: var(--navy-dark); color: #fff; }
.topbar__inner { min-height: 38px; display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.topbar__link { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-size: .9rem; font-weight: 700; }
.topbar__link:hover { color: #fff; text-decoration: underline; }

.nav-shell { position: relative; background: rgba(255,255,255,.98); border-bottom: 1px solid #e7edf1; }
.header-main { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 227px; height: 53px; object-fit: contain; }
.primary-nav__list, .submenu { list-style: none; margin: 0; padding: 0; }
.primary-nav__list { display: flex; align-items: center; gap: 22px; }
.primary-nav__item { position: relative; }
.primary-nav a { display: flex; align-items: center; min-height: 48px; color: #0a2940; font-weight: 700; font-size: .94rem; text-decoration: none; position: relative; }
.primary-nav > .primary-nav__list > .primary-nav__item > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.primary-nav > .primary-nav__list > .primary-nav__item > a:hover::after,
.primary-nav > .primary-nav__list > .primary-nav__item > a[aria-current="page"]::after { transform: scaleX(1); }
.submenu { position: absolute; z-index: 30; top: calc(100% - 2px); left: -16px; min-width: 310px; padding: 10px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(7px); transition: opacity .15s ease, transform .15s ease, visibility .15s; }
.submenu a { min-height: 40px; padding: 8px 10px; border-radius: 7px; font-weight: 600; }
.submenu a:hover, .submenu a[aria-current="page"] { background: var(--surface-soft); }
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 9px; background: #fff; color: var(--navy); cursor: pointer; }
.nav-toggle__label { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.nav-toggle__icon { display: grid; gap: 5px; }
.nav-toggle__icon span { display: block; width: 22px; height: 2px; margin-inline: auto; background: currentColor; }

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 90%, rgba(24,119,140,.28), transparent 34%),
        linear-gradient(118deg, var(--navy-dark), #075071 65%, var(--navy-dark));
}
.hero::after { content: ""; position: absolute; right: -7%; bottom: -32%; width: 47%; aspect-ratio: 1.5; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.025), 0 0 0 36px rgba(255,255,255,.018), 0 0 0 54px rgba(255,255,255,.012); transform: rotate(-18deg); pointer-events: none; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: clamp(36px, 5vw, 78px); min-height: 620px; padding-block: 64px; }
.hero__content { max-width: 620px; }
.hero__eyebrow, .page-hero__eyebrow { margin: 0 0 15px; text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700; color: #d7e8ef; }
.hero h1 { margin: 0; max-width: 10.5ch; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 5.2vw, 5rem); line-height: 1.02; letter-spacing: -.025em; font-weight: 700; }
.hero__lead { margin: 22px 0 0; max-width: 61ch; color: #edf4f7; font-size: 1.05rem; }
.hero__actions, .cta-panel__actions, .error-card__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__media { margin: 0; border-radius: 15px; overflow: hidden; border-bottom: 4px solid var(--gold); box-shadow: 0 25px 60px rgba(0,0,0,.2); }
.hero__media img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 18px; border: 1px solid transparent; border-radius: 9px; text-decoration: none; font-weight: 700; line-height: 1.2; transition: transform .15s ease, background-color .15s ease, border-color .15s ease; }
.button:hover { transform: translateY(-1px); text-decoration: none; }
.button--gold { background: var(--gold); color: #fff; }
.button--gold:hover { background: var(--gold-dark); color: #fff; }
.button--light-outline { border-color: rgba(255,255,255,.75); color: #fff; background: transparent; }
.button--light-outline:hover { background: rgba(255,255,255,.10); color: #fff; }
.button--navy { background: var(--navy); color: #fff; }
.button--navy:hover { background: var(--navy-dark); color: #fff; }

.section { padding-block: 54px; }
.services-section { background: #fff; }
.process-section { background: linear-gradient(180deg, #f4f8fb, #eef4f8); border-top: 1px solid #edf2f5; border-bottom: 1px solid #e8eef2; }
.section-heading { margin-bottom: 28px; }
.section-heading--center { text-align: center; }
.section-heading h2, .cta-panel h2, .page-hero h1, .content-card h2, .price-group h2, .error-card h2, .contact-note h2 { margin: 0; color: #0a2940; font-family: Georgia, 'Times New Roman', serif; font-weight: 700; line-height: 1.15; }
.section-heading h2 { font-size: clamp(2rem, 3.2vw, 2.85rem); }
.section-heading p { max-width: 760px; margin: 10px auto 0; color: var(--muted); }

.service-cards { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
.service-card { flex: 0 1 calc((100% - 66px) / 4); min-width: 0; border: 1px solid #e2e8ed; background: #fff; border-radius: 13px; overflow: hidden; box-shadow: 0 10px 24px rgba(18,44,64,.10); }
.service-card__media { position: relative; aspect-ratio: 1.72 / 1; overflow: visible; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.service-card__icon { position: absolute; left: 16px; bottom: -21px; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: #086176; box-shadow: 0 4px 12px rgba(5,66,82,.22); font-size: 1.2rem; }
.service-card__body { padding: 34px 18px 18px; }
.service-card h3 { margin: 0 0 12px; font-size: 1.08rem; line-height: 1.3; color: #0a2940; }
.service-card p { margin: 0 0 18px; color: #506273; font-size: .92rem; line-height: 1.55; }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; color: #07556a; font-weight: 700; font-size: .9rem; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid::before { content: ""; position: absolute; left: 10%; right: 10%; top: 48px; border-top: 2px dotted #8db9c4; z-index: 0; }
.process-card { position: relative; z-index: 1; min-height: 225px; padding: 34px 20px 22px; border: 1px solid #dce6eb; border-radius: 14px; background: rgba(255,255,255,.96); text-align: center; box-shadow: 0 8px 24px rgba(18,44,64,.07); }
.process-card__number { position: absolute; left: 16px; top: 16px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #0c6173; color: #fff; font-weight: 700; font-size: .83rem; }
.process-card__icon { display: block; margin: 0 auto 18px; color: #0a5f74; font-size: 2.1rem; }
.process-card h3 { margin: 0 0 10px; color: #0b2b43; font-size: 1.02rem; }
.process-card p { margin: 0; color: #607183; font-size: .91rem; }

.cta-section { background: #fff; padding-top: 22px; }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 28px; padding: 32px 48px; border-radius: 14px; color: #fff; background: linear-gradient(120deg, #063651, #07657b); }
.cta-panel::after { content: ""; position: absolute; right: -70px; bottom: -110px; width: 300px; height: 200px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 16px rgba(255,255,255,.025), 0 0 0 32px rgba(255,255,255,.018); transform: rotate(-20deg); }
.cta-panel__icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #fff; font-size: 2rem; }
.cta-panel__content { position: relative; z-index: 1; }
.cta-panel h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-panel p { margin: 8px 0 0; max-width: 720px; color: #e7f1f5; }
.cta-panel__actions { margin-top: 18px; }

.page-hero { color: #fff; background: linear-gradient(120deg, var(--navy-dark), #07536f); }
.page-hero__inner { padding-block: 58px; }
.page-hero h1 { color: #fff; font-size: clamp(2.45rem, 5vw, 4.1rem); }
.page-hero p:last-child { margin: 14px 0 0; max-width: 760px; color: #e6f0f4; font-size: 1.05rem; }
.content-section { background: var(--surface-soft); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 34px; align-items: start; }
.content-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(18,44,64,.07); padding: clamp(24px, 4vw, 42px); }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 34px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.prose h3 { color: #0c3450; }
.prose p, .prose li { color: #4c6072; }
.prose ul { padding-left: 1.3rem; }
.prose li + li { margin-top: 7px; }
.content-figure { float: right; width: min(38%, 300px); margin: 0 0 24px 28px; border-radius: 12px; overflow: hidden; }
.content-figure img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; }
.content-figure--wide { float: none; width: 100%; max-width: none; margin: 24px 0 30px; }
.content-figure--wide img { aspect-ratio: 2.02; }
.side-card { position: sticky; top: 24px; padding: 28px 24px; border-radius: var(--radius); color: #fff; background: linear-gradient(150deg, #073d5a, #075d74); box-shadow: var(--shadow); }
.side-card__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 1.25rem; }
.side-card h2 { margin: 0 0 10px; font-family: Georgia, 'Times New Roman', serif; font-size: 1.55rem; line-height: 1.2; }
.side-card p { margin: 0 0 18px; color: #e4f0f4; }
.side-card__link { display: block; color: #fff; margin-top: 8px; word-break: break-word; }
.side-card .button { width: 100%; margin-top: 6px; }

.info-cards { display: grid; gap: 20px; margin: 28px 0; }
.info-cards--two { grid-template-columns: 1fr 1fr; }
.info-card { overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.info-card img { width: 100%; height: 190px; object-fit: cover; }
.info-card > div { padding: 18px; }
.info-card h3 { margin: 0 0 8px; }
.info-card p { margin: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(18,44,64,.07); text-align: center; }
.contact-card__icon, .pricing-card__icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; color: #fff; background: #0a6074; font-size: 1.25rem; }
.contact-card h2, .pricing-card h2 { margin: 0 0 10px; color: #0a2940; font-family: Georgia, 'Times New Roman', serif; }
.contact-card p, .contact-card address { margin: 0; color: #607183; font-style: normal; }
.contact-card p + p { margin-top: 8px; }
.contact-card a { font-weight: 700; word-break: break-word; }
.contact-note { margin-top: 28px; padding: 30px 34px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); }
.contact-note h2 { font-size: 1.8rem; }
.contact-note p { margin-bottom: 0; color: #607183; }

.pricing-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
.pricing-card { padding: 26px; text-align: center; border: 1px solid var(--border); background: #fff; border-radius: var(--radius); box-shadow: 0 10px 28px rgba(18,44,64,.07); }
.pricing-card p { margin: 0; color: #607183; }
.pricing-intro { margin-bottom: 28px; }
.price-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: start; }
.price-group { padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(18,44,64,.06); }
.price-group h2 { font-size: 1.55rem; margin-bottom: 16px; }
.price-list { margin: 0; }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding: 10px 0; border-top: 1px solid #e7edf1; }
.price-row:first-child { border-top: 0; }
.price-row dt { color: #435a6d; }
.price-row dd { margin: 0; color: #0b405a; font-weight: 700; white-space: nowrap; }

.error-card { max-width: 720px; margin-inline: auto; padding: 38px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); text-align: center; box-shadow: var(--shadow); }
.error-card h2 { font-size: 2rem; }
.error-card__actions { justify-content: center; }

.site-footer { margin-top: 0; padding-top: 42px; color: #dbe8ed; background: linear-gradient(105deg, #052c44, #063852 55%, #042a42); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr .55fr; gap: 50px; }
.footer-logo { width: 227px; height: 53px; object-fit: contain; }
.footer-brand p { max-width: 360px; color: #c9d8df; }
.footer-title { margin: 0 0 16px; color: #fff; font-size: 1.05rem; font-family: Arial, Helvetica, sans-serif; }
.footer-contact { font-style: normal; }
.footer-contact p { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 0 0 10px; color: #c9d8df; }
.footer-contact i { margin-top: 5px; }
.site-footer a { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: 8px; }
.footer-bottom { margin-top: 34px; padding-block: 16px; border-top: 1px solid rgba(255,255,255,.14); color: #b7cad3; font-size: .9rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1050px) {
    .hero__grid { grid-template-columns: 1fr 1fr; min-height: 540px; }
    .service-card { flex-basis: calc((100% - 44px) / 3); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
}

@media (max-width: 959px) {
    .topbar__inner { justify-content: center; }
    .nav-toggle { display: grid; place-items: center; }
    .primary-nav { position: absolute; z-index: 50; top: 100%; left: 20px; right: 20px; display: none; padding: 10px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); }
    .nav-open .primary-nav { display: block; }
    .primary-nav__list { display: block; }
    .primary-nav a { min-height: 45px; padding: 7px 10px; border-radius: 8px; }
    .primary-nav > .primary-nav__list > .primary-nav__item > a::after { display: none; }
    .primary-nav a[aria-current="page"] { background: var(--surface-soft); }
    .submenu { position: static; min-width: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid #d9e8ed; border-radius: 0; margin-left: 15px; padding: 0 0 4px 10px; display: block; }
    .hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 52px; }
    .hero__content { max-width: 720px; }
    .hero h1 { max-width: 12ch; }
    .hero__media { max-width: 720px; }
    .content-grid { grid-template-columns: 1fr; }
    .side-card { position: static; }
    .contact-grid, .pricing-summary { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar__inner { min-height: 44px; gap: 14px; flex-wrap: wrap; padding-block: 6px; }
    .topbar__link { font-size: .8rem; }
    .header-main { min-height: 72px; }
    .brand img { width: 190px; height: auto; }
    .primary-nav { left: 14px; right: 14px; }
    .hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
    .hero__actions, .cta-panel__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .button, .cta-panel__actions .button { width: 100%; }
    .service-card { flex-basis: calc((100% - 22px) / 2); }
    .process-grid { grid-template-columns: 1fr; }
    .cta-panel { grid-template-columns: 1fr; padding: 28px; }
    .cta-panel__icon { width: 60px; height: 60px; }
    .info-cards--two, .price-sections { grid-template-columns: 1fr; }
    .content-figure { float: none; width: 100%; max-width: 420px; margin: 0 auto 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .price-row { grid-template-columns: 1fr; gap: 2px; }
    .price-row dd { white-space: normal; }
}

@media (max-width: 480px) {
    .topbar__inner { justify-content: flex-start; }
    .topbar__link { width: 100%; justify-content: center; }
    .service-card { flex-basis: 100%; }
    .service-card__media { aspect-ratio: 1.8 / 1; }
    .section { padding-block: 42px; }
    .content-card, .contact-card, .pricing-card, .price-group { padding: 22px; }
    .cta-panel { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
