:root {
    --navy: #071d3f;
    --navy-2: #0d2d5c;
    --gold: #c89018;
    --gold-2: #e0af3f;
    --ink: #13213a;
    --muted: #647086;
    --line: #dde5ef;
    --paper: #f8fafc;
    --white: #ffffff;
    --teal: #1f9d92;
    --danger: #b42318;
    --shadow: 0 18px 55px rgba(7, 29, 63, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}

body::selection {
    background: rgba(200, 144, 24, 0.28);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 20;
    width: min(1180px, calc(100% - 32px));
    min-height: 88px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 10px 14px 10px 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(221, 229, 239, 0.9);
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(7, 29, 63, 0.08);
    backdrop-filter: blur(18px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.brand img {
    width: 226px;
    height: 116px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--navy);
    background: rgba(200, 144, 24, 0.12);
    transform: translateY(-1px);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-2) 58%, #164b83);
    box-shadow: 0 12px 28px rgba(7, 29, 63, 0.22);
}

.btn.ghost {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(7, 29, 63, 0.14);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(7, 29, 63, 0.18);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: 48px;
    padding: 136px max(24px, calc((100vw - 1180px) / 2)) 92px;
    background:
        linear-gradient(110deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.82)),
        repeating-linear-gradient(90deg, rgba(7, 29, 63, 0.05) 0 1px, transparent 1px 92px),
        repeating-linear-gradient(0deg, rgba(200, 144, 24, 0.08) 0 1px, transparent 1px 92px);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, var(--white));
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg span {
    position: absolute;
    height: 2px;
    width: 35vw;
    min-width: 320px;
    background: linear-gradient(90deg, transparent, rgba(200, 144, 24, 0.72), transparent);
    transform: rotate(-18deg);
    animation: routeSweep 8s linear infinite;
}

.hero-bg span:nth-child(1) {
    top: 24%;
    left: -20%;
}

.hero-bg span:nth-child(2) {
    top: 53%;
    left: 8%;
    animation-delay: -2.8s;
}

.hero-bg span:nth-child(3) {
    top: 72%;
    left: 45%;
    animation-delay: -5.1s;
}

.hero-slider,
.hero-panel,
.slider-controls {
    position: relative;
    z-index: 2;
}

.hero-slider {
    min-height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1,
.page-hero h1 {
    max-width: 820px;
    margin-bottom: 22px;
    color: var(--navy);
    font-size: 4.05rem;
    line-height: 1;
    letter-spacing: 0;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-panel {
    display: grid;
    gap: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 0px solid rgba(221, 229, 239, 0.9);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.hero-panel > img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: contain;
    padding: 12px;
    background: var(--white);
    border: 0px solid var(--line);
    border-radius: 8px;
}

.route-card {
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy), #103a74);
    color: var(--white);
}

.route-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.route-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.08rem;
}

.route-line {
    position: relative;
    height: 8px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
}

.route-line i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 38%;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    animation: loadRoute 3.8s ease-in-out infinite;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-metrics span {
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.84rem;
}

.hero-metrics strong {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1;
}

.slider-controls {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 1.5rem;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    background: rgba(7, 29, 63, 0.18);
}

.slider-dots button.active {
    background: var(--gold);
}

.section,
.split-section,
.cta-band,
.service-list,
.contact-layout,
.article {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.intro-band {
    padding-top: 36px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.cta-band h2 {
    color: var(--navy);
    font-size: 2.7rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.cta-band p:not(.eyebrow) {
    color: var(--muted);
}

.feature-grid,
.blog-grid,
.industry-grid,
.stats-grid,
.values-grid {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.blog-card,
.industry-card {
    position: relative;
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(7, 29, 63, 0.06);
    overflow: hidden;
}

.feature-card::before,
.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal), var(--navy-2));
}

.feature-card h3,
.blog-card h3,
.blog-card h2,
.industry-card h2 {
    color: var(--navy);
    line-height: 1.15;
}

.feature-card p,
.blog-card p,
.industry-card p {
    color: var(--muted);
}

.icon-mark {
    width: 42px;
    height: 42px;
    display: inline-block;
    margin-bottom: 22px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 44%, var(--white) 44% 56%, transparent 56%),
        linear-gradient(0deg, transparent 44%, var(--white) 44% 56%, transparent 56%),
        linear-gradient(135deg, var(--gold), var(--navy-2));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
    padding: 92px 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 900;
}

.text-link::after {
    content: "→";
    color: var(--gold);
    transition: transform 0.25s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.process-stack {
    display: grid;
    gap: 14px;
}

.process-stack div,
.values-grid div {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.process-stack span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
}

.process-stack strong,
.values-grid strong {
    display: block;
    color: var(--navy);
    font-size: 1.18rem;
}

.process-stack p,
.values-grid span {
    color: var(--muted);
}

.dark-band {
    width: 100%;
    max-width: none;
    padding: 92px max(24px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(135deg, rgba(7, 29, 63, 0.98), rgba(13, 45, 92, 0.96)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px);
    color: var(--white);
}

.dark-band .section-heading h2,
.dark-band .feature-card h3 {
    color: var(--white);
}

.dark-band .section-heading p:not(.eyebrow),
.dark-band .feature-card p {
    color: rgba(255, 255, 255, 0.74);
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
    min-height: 160px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
    display: block;
    color: var(--gold-2);
    font-size: 3rem;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.feature-card.inverted {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.blog-card.large {
    min-height: 300px;
}

.blog-card time {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card a {
    margin-top: auto;
    color: var(--navy);
    font-weight: 900;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 92px;
    padding: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7ecd3, #eaf6f4);
    border: 1px solid rgba(200, 144, 24, 0.22);
}

.page-hero {
    padding: 168px max(24px, calc((100vw - 1180px) / 2)) 82px;
    background:
        linear-gradient(110deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.86)),
        repeating-linear-gradient(90deg, rgba(7, 29, 63, 0.05) 0 1px, transparent 1px 88px);
}

.page-hero.compact {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.values-grid {
    grid-template-columns: repeat(2, 1fr);
}

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

.timeline-list article {
    display: grid;
    grid-template-columns: 72px 0.42fr 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.timeline-list span,
.service-row > span {
    color: var(--gold);
    font-weight: 900;
}

.timeline-list h3,
.timeline-list p {
    margin: 0;
}

.timeline-list p {
    color: var(--muted);
}

.service-list {
    display: grid;
    gap: 16px;
    padding: 86px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(7, 29, 63, 0.05);
    scroll-margin-top: 120px;
}

.service-row h2 {
    color: var(--navy);
    margin-bottom: 8px;
}

.service-row p {
    margin: 0;
    color: var(--muted);
}

.service-row a {
    color: var(--navy);
    font-weight: 900;
}

.industry-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 26px;
    align-items: start;
    padding: 86px 0;
}

.contact-form,
.admin-form,
.contact-card,
.post-manager {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(7, 29, 63, 0.06);
}

.contact-form,
.admin-form {
    display: grid;
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 144, 24, 0.14);
}

.success-message {
    padding: 14px 16px;
    border: 1px solid rgba(31, 157, 146, 0.24);
    border-radius: 8px;
    color: #0b6b62;
    background: rgba(31, 157, 146, 0.1);
    font-weight: 800;
}

.error-message {
    padding: 14px 16px;
    border: 1px solid rgba(180, 35, 24, 0.22);
    border-radius: 8px;
    color: var(--danger);
    background: rgba(180, 35, 24, 0.08);
    font-weight: 800;
}

.contact-card {
    min-height: 420px;
}

.contact-card h2 {
    color: var(--navy);
}

.contact-card a {
    display: block;
    margin: 10px 0;
    color: var(--navy);
    font-weight: 900;
}

.contact-card a .fa,
.site-footer a .fa {
    width: 1.25em;
    margin-right: 8px;
    text-align: center;
}

.mini-map {
    position: relative;
    height: 170px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 8px;
    background:
        repeating-linear-gradient(90deg, rgba(7, 29, 63, 0.08) 0 1px, transparent 1px 36px),
        repeating-linear-gradient(0deg, rgba(7, 29, 63, 0.08) 0 1px, transparent 1px 36px),
        #f4f8fb;
}

.mini-map span {
    position: absolute;
    width: 72%;
    height: 2px;
    left: 10%;
    background: var(--gold);
    transform: rotate(-18deg);
    animation: routeSweep 5s linear infinite;
}

.mini-map span:nth-child(1) {
    top: 36%;
}

.mini-map span:nth-child(2) {
    top: 52%;
    animation-delay: -1.5s;
}

.mini-map span:nth-child(3) {
    top: 68%;
    animation-delay: -3s;
}

.article {
    max-width: 860px;
    padding: 160px 0 96px;
}

.article header {
    margin-bottom: 38px;
}

.article time {
    display: block;
    margin: 22px 0 12px;
    color: var(--gold);
    font-weight: 900;
}

.article h1 {
    color: var(--navy);
    font-size: 3.3rem;
    line-height: 1.04;
}

.article header p {
    color: var(--muted);
    font-size: 1.12rem;
}

.article-body {
    color: #29364c;
    font-size: 1.06rem;
}

.article-body h2,
.article-body h3 {
    color: var(--navy);
    margin-top: 34px;
}

.article-body a {
    color: var(--navy);
    font-weight: 900;
    text-decoration: underline;
}

.article-body ul {
    padding-left: 22px;
    color: #29364c;
}

.article-body li {
    margin: 8px 0;
}

.article-cta {
    margin-top: 44px;
    padding: 28px;
    border: 1px solid rgba(200, 144, 24, 0.22);
    border-radius: 8px;
    background: linear-gradient(135deg, #f7ecd3, #eaf6f4);
}

.article-cta h2 {
    margin-bottom: 12px;
}

.site-footer {
    padding: 62px max(24px, calc((100vw - 1180px) / 2)) 28px;
    color: rgba(255, 255, 255, 0.76);
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 34px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 18px;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

.js [data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease var(--stagger, 0ms), transform 0.7s ease var(--stagger, 0ms);
}

.js [data-animate="fade-up"] {
    transform: translateY(34px);
}

.js [data-animate="fade-right"] {
    transform: translateX(-34px);
}

.js [data-animate="fade-left"] {
    transform: translateX(34px);
}

.js [data-animate="scale-in"] {
    transform: scale(0.94);
}

.js [data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.admin-body {
    min-height: 100vh;
    background: var(--paper);
}

.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0;
}

.admin-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.admin-card img {
    width: 170px;
}

.admin-card h1 {
    margin-bottom: 8px;
    color: var(--navy);
}

.admin-card p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
}

.compact-form {
    max-width: 520px;
}

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

.form-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.manager-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.post-manager article {
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.post-manager span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.post-manager h3 {
    color: var(--navy);
    font-size: 1rem;
}

.post-manager article div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-manager a,
.post-manager button {
    border: 0;
    padding: 0;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    font-weight: 900;
}

.post-manager button {
    color: var(--danger);
}

@keyframes routeSweep {
    0% {
        opacity: 0;
        transform: translateX(-16%) rotate(-18deg);
    }
    20%,
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(56%) rotate(-18deg);
    }
}

@keyframes loadRoute {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(86%);
    }
    100% {
        transform: translateX(230%);
    }
}

@media (max-width: 1020px) {
    .site-header {
        grid-template-columns: 210px auto auto;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 13px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 124px;
    }

    .hero-slider {
        min-height: 500px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.25rem;
    }

    .feature-grid,
    .stats-grid,
    .blog-grid,
    .industry-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section,
    .contact-layout,
    .admin-grid {
        grid-template-columns: 1fr;
    }

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

    .service-row a {
        grid-column: 2;
    }
}

@media (max-width: 680px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        grid-template-columns: 1fr auto;
        min-height: 84px;
        padding: 10px 12px;
    }

    .brand img {
        width: 230px;
        height: 108px;
    }

    .hero {
        min-height: auto;
        padding: 108px 16px 92px;
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero h1,
    .page-hero h1,
    .article h1 {
        font-size: 2.35rem;
        line-height: 1.05;
    }

    .section-heading h2,
    .split-copy h2,
    .cta-band h2 {
        font-size: 2rem;
    }

    .hero-panel {
        padding: 16px;
    }

    .hero-panel {
        display: none;
    }

    .hero-metrics,
    .feature-grid,
    .stats-grid,
    .blog-grid,
    .industry-grid,
    .values-grid,
    .footer-grid,
    .form-split {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        left: 16px;
    }

    .section,
    .split-section,
    .service-list,
    .contact-layout {
        padding: 64px 0;
    }

    .page-hero {
        padding: 132px 16px 58px;
    }

    .timeline-list article,
    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row a {
        grid-column: auto;
    }

    .cta-band,
    .footer-bottom,
    .admin-card {
        flex-direction: column;
        display: flex;
        align-items: flex-start;
    }

    .article {
        padding-top: 132px;
    }
}

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
