:root {
    --navy: #07192b;
    --navy-soft: #102b45;
    --blue: #164f78;
    --amber: #f6a800;
    --amber-dark: #dc9200;
    --ink: #13283c;
    --muted: #667789;
    --line: #dfe6eb;
    --soft: #f3f6f8;
    --white: #fff;
    --shadow: 0 18px 55px rgba(9, 29, 48, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.adom-meca-site {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}
body.adom-meca-site.admin-bar .site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: .98;
    text-transform: uppercase;
}
h1 { font-size: clamp(4.1rem, 8.3vw, 7.4rem); }
h2 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h3 { font-size: 1.7rem; }
p { margin: 0 0 1rem; }
.eyebrow {
    margin: 0 0 16px;
    color: var(--amber-dark);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid rgba(7, 25, 43, .08);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 25px rgba(13, 35, 53, .04);
}
.site-header__inner { display: flex; min-height: 82px; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); }
.brand__logo { width: 190px; height: 62px; object-fit: contain; object-position: left center; }
.brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 5px;
    background: var(--amber);
    color: var(--navy);
    font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
    font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif;
    font-size: 1.8rem;
    letter-spacing: .01em;
}
.brand__text em { color: var(--amber-dark); font-style: normal; }
.brand__text small { margin-top: 3px; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: stretch; align-self: stretch; margin-left: auto; }
.primary-nav a { display: flex; position: relative; align-items: center; padding: 0 17px; color: #405365; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.primary-nav a::after { position: absolute; right: 17px; bottom: 0; left: 17px; height: 3px; background: transparent; content: ""; }
.primary-nav a:is(:hover, .is-active) { color: var(--navy); }
.primary-nav a.is-active::after { background: var(--amber); }
.header-phone { display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 4px; background: var(--navy); color: var(--white); font-size: .82rem; font-weight: 700; line-height: 1.05; }
.header-phone svg { width: 19px; stroke: var(--amber); }
.header-phone small { display: block; margin-bottom: 4px; color: #b7c2cc; font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.nav-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: transparent; }
.nav-toggle span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); }

svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; }
.hero { position: relative; min-height: 720px; overflow: hidden; background: #d7e0e7; }
.hero__image { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 25, 43, .93) 0%, rgba(7, 25, 43, .86) 34%, rgba(7, 25, 43, .05) 70%); }
.hero__inner { display: flex; position: relative; min-height: 620px; align-items: center; padding: 65px 0 115px; }
.hero__copy { width: min(660px, 62%); }
.hero h1 { color: var(--white); }
.hero h1 span, .page-hero h1 span { color: var(--amber); }
.hero__lead { max-width: 590px; margin: 22px 0 29px; color: #e1e8ee; font-size: 1.08rem; line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
    transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 16px; }
.button--primary { background: var(--amber); color: var(--navy); }
.button--primary:hover { background: var(--amber-dark); }
.button--ghost { border-color: rgba(255, 255, 255, .34); color: var(--white); }
.button--light { background: var(--white); color: var(--navy); }
.button--outline-light { border-color: rgba(255, 255, 255, .35); color: var(--white); }
.button--full { width: 100%; cursor: pointer; }
.hero__note { display: flex; align-items: center; gap: 7px; margin-top: 28px; color: #d7e1e8; font-size: .82rem; font-weight: 600; }
.hero__note svg { width: 17px; stroke: var(--amber); }
.hero__stats { display: grid; position: absolute; right: 0; bottom: 0; left: 0; grid-template-columns: repeat(3, 1fr); background: var(--white); box-shadow: var(--shadow); }
.hero__stats div { display: flex; min-height: 100px; align-items: center; gap: 15px; padding: 0 30px; border-right: 1px solid var(--line); }
.hero__stats div:last-child { border-right: 0; }
.hero__stats strong { color: var(--amber-dark); font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif; font-size: 2.6rem; line-height: 1; text-transform: uppercase; }
.hero__stats span { color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .11em; line-height: 1.4; text-transform: uppercase; }

.section { padding: 108px 0; }
.section--soft { background: var(--soft); }
.section--intro { padding-block: 105px; }
.history-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 72px; align-items: center; }
.history-image { position: relative; }
.history-image::after { position: absolute; right: -15px; bottom: -15px; width: 55%; height: 58%; border-right: 5px solid var(--amber); border-bottom: 5px solid var(--amber); content: ""; }
.history-image img { position: relative; z-index: 1; width: 100%; min-height: 400px; object-fit: cover; }
.history-image span { display: flex; position: absolute; z-index: 2; right: -28px; bottom: 26px; align-items: center; gap: 9px; padding: 15px 18px; background: var(--navy); color: var(--amber); font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif; font-size: 2.6rem; font-weight: 800; line-height: .85; text-transform: uppercase; }
.history-image small { color: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: .54rem; letter-spacing: .12em; line-height: 1.3; }
.history-copy > p:not(.eyebrow) { margin-top: 19px; color: #516477; font-size: .98rem; }
.competition { position: relative; min-height: 360px; overflow: hidden; background: var(--navy); }
.competition__slides, .competition__slides img, .competition__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.competition__slides img { opacity: 0; object-fit: cover; transition: opacity .8s ease; }
.competition__slides img.is-active { opacity: 1; }
.competition__shade { background: linear-gradient(90deg, rgba(7, 25, 43, .88), rgba(7, 25, 43, .48), rgba(7, 25, 43, .2)); }
.competition__content { display: flex; position: relative; z-index: 2; min-height: 360px; align-items: start; justify-content: center; flex-direction: column; }
.competition h2 { color: var(--white); text-shadow: 0 3px 18px rgba(0, 0, 0, .28); }
.competition h2 span { color: var(--amber); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 42px; }
.section-heading--center { justify-content: center; text-align: center; }
.text-link { color: var(--blue); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { color: var(--amber-dark); font-size: 1.3rem; }
.services-grid, .detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detail-grid { grid-template-columns: repeat(2, 1fr); }
.service-card { padding: 28px; border: 1px solid #e4eaee; background: var(--white); transition: .22s ease; }
.service-card:hover { border-color: rgba(246, 168, 0, .65); box-shadow: 0 14px 40px rgba(13, 35, 53, .08); transform: translateY(-5px); }
.icon-box { display: grid; width: 51px; height: 51px; margin-bottom: 20px; place-items: center; border-radius: 50%; background: #fff7e7; color: var(--amber-dark); }
.icon-box svg { width: 30px; height: 30px; stroke-width: 2.4; }
.service-card h3 { margin-bottom: 9px; font-size: 1.6rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 40px; }
.steps article { position: relative; padding-top: 26px; border-top: 3px solid var(--line); }
.steps article::before { position: absolute; top: -3px; left: 0; width: 65px; height: 3px; background: var(--amber); content: ""; }
.steps span { color: var(--amber-dark); font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif; font-size: 1.25rem; font-weight: 800; }
.steps h3 { margin: 10px 0; }
.steps p { margin: 0; color: var(--muted); font-size: .9rem; }

.pro-teaser { display: grid; min-height: 520px; grid-template-columns: 1fr 1fr; background: var(--navy); }
.pro-teaser img { width: 100%; height: 100%; object-fit: cover; }
.pro-teaser__content { display: flex; max-width: 590px; align-items: start; justify-content: center; flex-direction: column; padding: 68px 8vw 68px 65px; }
.pro-teaser h2, .bottom-cta h2, .section--navy h2 { color: var(--white); }
.pro-teaser p:not(.eyebrow) { margin: 20px 0 29px; color: #bbc7d1; }
.bottom-cta { padding: 78px 0 82px; background: linear-gradient(110deg, #164f78, #0d3553); text-align: center; }
.bottom-cta .button-row { justify-content: center; margin-top: 28px; }
.bottom-cta .eyebrow { color: #ffc449; }

.page-hero { padding: 105px 0 100px; overflow: hidden; background: linear-gradient(115deg, var(--navy), #123c5b); }
.page-hero .shell { position: relative; }
.page-hero .shell::after { position: absolute; top: -190px; right: 5%; width: 390px; height: 390px; border: 55px solid rgba(255, 255, 255, .035); border-radius: 50%; content: ""; }
.page-hero h1 { position: relative; z-index: 1; color: var(--white); font-size: clamp(4rem, 7vw, 6.2rem); }
.page-hero p:not(.eyebrow) { position: relative; z-index: 1; max-width: 660px; margin: 22px 0 0; color: #c4d0da; font-size: 1.05rem; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; box-shadow: var(--shadow); }
.benefits div { display: flex; align-items: center; gap: 16px; padding: 27px; background: var(--white); }
.benefits svg { width: 36px; flex: 0 0 36px; stroke: var(--amber-dark); stroke-width: 2.4; }
.benefits span { display: flex; flex-direction: column; }
.benefits strong { color: var(--navy); font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; }
.benefits small { margin-top: 4px; color: var(--muted); }

.split { display: grid; grid-template-columns: .95fr 1fr; gap: 75px; align-items: center; }
.split__image { position: relative; }
.split__image::after { position: absolute; right: -17px; bottom: -17px; width: 52%; height: 54%; border-right: 5px solid var(--amber); border-bottom: 5px solid var(--amber); content: ""; }
.split__image img { position: relative; z-index: 1; min-height: 420px; object-fit: cover; }
.split__copy > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); }
.check-list { margin: 0 0 27px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; color: #405366; font-size: .92rem; font-weight: 600; }
.check-list svg { width: 19px; height: 19px; stroke: var(--amber-dark); stroke-width: 5; }
.section--navy { background: var(--navy); }
.section--navy .eyebrow { color: var(--amber); }
.pro-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pro-benefits article { padding: 31px; border: 1px solid rgba(255, 255, 255, .12); }
.pro-benefits strong { color: var(--amber); font-family: "Arial Narrow", "Franklin Gothic Medium", Impact, sans-serif; font-size: 1.6rem; }
.pro-benefits h3 { margin: 12px 0 10px; color: var(--white); }
.pro-benefits p { margin: 0; color: #afbdc8; font-size: .88rem; }
.trust-section { text-align: center; }
.client-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.client-list span { display: grid; width: 184px; min-height: 108px; place-items: center; padding: 10px; border: 1px solid var(--line); background: var(--white); }
.client-list img { width: 100%; height: 88px; object-fit: contain; }

.contact-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 70px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-cards { display: grid; gap: 1px; margin-top: 29px; background: var(--line); border: 1px solid var(--line); }
.contact-cards > * { display: flex; align-items: center; gap: 14px; padding: 17px 18px; background: var(--white); }
.contact-cards svg { width: 26px; flex: 0 0 26px; stroke: var(--amber-dark); stroke-width: 2.4; }
.contact-cards span { display: flex; flex-direction: column; }
.contact-cards small { margin-bottom: 4px; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-cards strong { color: var(--navy); font-size: .89rem; line-height: 1.35; }
.form-card { padding: 34px; background: var(--soft); }
.form-card label { display: block; margin-bottom: 15px; }
.form-card label > span { display: block; margin-bottom: 5px; color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.form-card input:not([type="checkbox"]), .form-card textarea { width: 100%; border: 1px solid #d6e0e6; border-radius: 2px; background: var(--white); color: var(--ink); font: inherit; font-size: .9rem; outline: 0; padding: 11px 12px; }
.form-card input:not([type="checkbox"]):focus, .form-card textarea:focus { border-color: var(--amber-dark); box-shadow: 0 0 0 3px rgba(246, 168, 0, .13); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.checkbox { display: flex !important; align-items: start; gap: 8px; }
.checkbox input { margin-top: 4px; }
.checkbox span { color: var(--muted) !important; font-size: .72rem !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.honeypot { position: absolute; left: -9999px; }
.notice { padding: 12px 14px; font-size: .83rem; }
.notice--success { border-left: 4px solid #3b9b65; background: #eaf8ef; color: #1d6a3d; }
.notice--error { border-left: 4px solid #cc4b4b; background: #fff0f0; color: #922c2c; }
.prose { max-width: 850px; }
.prose h2 { margin-top: 34px; font-size: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); }

.site-footer { background: #061523; color: #9cabb7; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 70px; padding-block: 62px; }
.brand--footer { margin-bottom: 17px; color: var(--white); }
.brand--footer .brand__logo { width: 220px; height: 84px; }
.footer-grid p { max-width: 410px; margin: 0; color: #91a0ac; font-size: .86rem; }
.footer-grid h2 { margin-bottom: 16px; color: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; margin-bottom: 8px; color: #b7c3cc; font-size: .85rem; }
.footer-grid > div > a:hover, .footer-bottom a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-bottom .shell { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 20px; color: #788a98; font-size: .72rem; }
.footer-bottom a { margin-left: 20px; }

@media (max-width: 960px) {
    body.adom-meca-site.admin-bar .site-header { top: 46px; }
    .site-header__inner { min-height: 72px; }
    .nav-toggle { display: block; }
    .primary-nav { display: none; position: absolute; top: 72px; right: 0; left: 0; align-self: auto; flex-direction: column; padding: 10px 24px 15px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 25px rgba(13, 35, 53, .1); }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { min-height: 44px; padding: 0; }
    .primary-nav a::after { display: none; }
    .header-phone span { display: none; }
    .header-phone { padding: 10px; }
    .hero { min-height: 700px; }
    .hero__shade { background: linear-gradient(90deg, rgba(7, 25, 43, .96) 0%, rgba(7, 25, 43, .76) 62%, rgba(7, 25, 43, .28) 100%); }
    .hero__copy { width: min(680px, 83%); }
    .history-grid, .contact-grid, .split { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-teaser { grid-template-columns: .9fr 1.1fr; }
    .footer-grid { gap: 35px; }
}

@media (max-width: 720px) {
    .shell { width: min(100% - 32px, 620px); }
    h1 { font-size: clamp(4rem, 19vw, 5.8rem); }
    h2 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
    .section { padding: 78px 0; }
    .site-header__inner { gap: 11px; }
    .brand__logo { width: 161px; height: 52px; }
    .hero { min-height: 730px; }
    .hero__image { object-position: 63% center; }
    .hero__inner { min-height: 620px; align-items: start; padding-top: 88px; }
    .hero__copy { width: 100%; }
    .hero__lead { max-width: 500px; font-size: .98rem; }
    .button { min-height: 48px; font-size: .68rem; }
    .hero__stats { grid-template-columns: 1fr; }
    .hero__stats div { min-height: 55px; padding: 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
    .hero__stats strong { width: 72px; font-size: 1.9rem; }
    .hero__stats span { font-size: .62rem; }
    .history-grid, .services-grid, .detail-grid, .steps, .pro-teaser, .split, .pro-benefits, .benefits, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .section--intro { padding-top: 91px; }
    .history-grid { gap: 39px; }
    .history-image img { min-height: 300px; }
    .history-image span { right: -6px; bottom: 18px; }
    .competition, .competition__content { min-height: 300px; }
    .section-heading { display: block; margin-bottom: 28px; }
    .section-heading .text-link { display: inline-block; margin-top: 15px; }
    .steps { gap: 30px; margin-top: 15px; }
    .pro-teaser { min-height: auto; }
    .pro-teaser img { height: 260px; }
    .pro-teaser__content { padding: 55px 24px 64px; }
    .page-hero { padding-block: 79px 72px; }
    .page-hero h1 { font-size: clamp(3.8rem, 18vw, 5.3rem); }
    .benefits { gap: 1px; }
    .split { gap: 38px; }
    .split__image img { min-height: 280px; }
    .contact-grid { gap: 32px; }
    .form-card { padding: 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { gap: 32px; padding-block: 48px; }
    .footer-bottom .shell { min-height: 72px; align-items: start; justify-content: center; flex-direction: column; gap: 4px; padding-block: 12px; }
    .footer-bottom a { margin: 0 15px 0 0; }
}
