/* ============================================================
   Zeiset Studios — global stylesheet
   ============================================================ */

:root {
    --blue: #324bc6;
    --blue-600: #23349b;
    --blue-deep: #0d0db2;
    --blue-tint: #ebedf6;
    --blue-soft: #f1f3fb;
    --ink: #15171c;
    --muted: #5b5f6b;
    --line: #e3e6f0;
    --white: #ffffff;
    --shadow-sm: 0 6px 18px rgba(20, 25, 80, 0.07);
    --shadow-lg: 0 24px 60px rgba(20, 25, 80, 0.13);
    --radius: 18px;
    --radius-sm: 10px;
    --heading: 'Alexandria', 'Segoe UI', Arial, sans-serif;
    --serif: 'Alexandria', 'Segoe UI', Arial, sans-serif;
    --sans: 'Alexandria', 'Segoe UI', Arial, sans-serif;
    --brand: 'Alexandria', 'Segoe UI', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-block;
    font-family: var(--brand);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    line-height: 1.2;
}

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

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

.btn-primary:hover {
    background: var(--blue-600);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: #000;
}

.btn-sm {
    padding: 11px 20px;
    font-size: 12px;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

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

.brand img {
    height: 40px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    font-family: var(--brand);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.nav-link.is-active {
    color: var(--blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 96px 0 100px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 28%, rgba(255, 255, 255, 0) 62%),
        url('../images/hero.png') center / cover no-repeat,
        var(--white);
}

.hero-inner {
    text-align: center;
    max-width: 940px;
}

.hero h1 {
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(44px, 7.2vw, 86px);
    line-height: 1.06;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.hero h1 em {
    font-weight: 700;
    font-style: italic;
    color: var(--blue);
}

.hero-sub {
    margin: 28px auto 0;
    max-width: 620px;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.55;
    color: var(--muted);
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-media {
    margin: 72px auto 0;
    max-width: 1160px;
}

.hero-media img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
}

/* ---------- Section headings ---------- */

.section {
    padding: 96px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    font-family: var(--brand);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(32px, 4.4vw, 48px);
    line-height: 1.15;
    color: var(--ink);
}

.section-title em {
    font-weight: 700;
    font-style: italic;
    color: var(--blue);
}

.section-lead {
    margin-top: 18px;
    font-weight: 400;
    font-size: 18px;
    color: var(--muted);
}

/* ---------- Standout (blue headline) ---------- */

.standout {
    padding: 100px 0;
    background: var(--blue-soft);
    border-bottom: 1px solid var(--line);
}

.standout-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: var(--blue);
    max-width: 880px;
    margin: 0 auto 46px;
    text-align: center;
}

.standout-grid {
    display: block;
    max-width: 860px;
    margin: 0 auto;
}

.standout-grid p {
    font-weight: 350;
    font-size: 17px;
    color: var(--ink);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 22px;
}

.standout-grid p:last-child {
    margin-bottom: 0;
}

/* ---------- Services cards ---------- */

.services-section {
    background: var(--white);
}

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

.service-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.14);
}

.services-row-2 .service-card-wide:hover .service-card-media {
    transform: translateX(40px);
    overflow: visible;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
}

.service-card:hover .service-card-media {
    transform: translateX(0) translateY(14px);
    overflow: visible;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
}

.service-card-body {
    padding: 26px 28px 30px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--blue-deep);
}

.service-card p {
    margin-top: 10px;
    font-weight: 400;
    font-size: 15.5px;
    color: var(--muted);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--brand);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue);
}

.service-card-link::after {
    content: '→';
    transition: transform 0.25s ease;
}

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

.services-row-2 {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.services-row-2 .service-card-wide {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: stretch;
}

.services-row-2 .service-card-wide .service-card-media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 260px;
}

.services-row-2 .service-card-wide .service-card-media img {
    object-fit: contain;
}

.services-row-2 .service-card-wide .service-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.see-all-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
        var(--blue-deep);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.see-all-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.see-all-card h3 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.25;
}

.see-all-card .btn {
    margin-top: 6px;
}

/* ---------- Questions ---------- */

.questions {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 28%, rgba(255, 255, 255, 0.45) 55%, rgba(255, 255, 255, 0.92) 100%),
        url('../images/services.png') center / cover no-repeat;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.questions .section-title {
    color: var(--blue-deep);
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.question-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.question-item:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}

.question-num {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 30px;
    color: var(--blue);
    opacity: 0.55;
    line-height: 1;
}

.question-item h3 {
    margin-top: 14px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--ink);
}

.question-item p {
    margin-top: 10px;
    font-weight: 400;
    font-size: 15.5px;
    color: var(--muted);
}

/* ---------- Brands ---------- */

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

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 40px 48px;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    line-height: 0;
}

.brand-logo img {
    height: auto;
    width: 100%;
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.06);
}

/* ---------- Page head (inner pages) ---------- */

.page-head {
    position: relative;
    overflow: hidden;
    padding: 80px 0 72px;
    text-align: center;
    background:
        radial-gradient(900px 420px at 50% -20%, rgba(50, 75, 198, 0.08), transparent 60%),
        var(--white);
    border-bottom: 1px solid var(--line);
}

.page-head .page-title-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    max-width: 90vw;
    opacity: 0.85;
    pointer-events: none;
}

.page-head h1 {
    position: relative;
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(38px, 5.4vw, 62px);
    line-height: 1.12;
    color: var(--ink);
}

.page-head p {
    position: relative;
    margin: 18px auto 0;
    max-width: 620px;
    font-weight: 400;
    font-size: 19px;
    color: var(--muted);
}

.crumbs {
    position: relative;
    margin-top: 22px;
    font-family: var(--brand);
    font-weight: 400;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.crumbs a {
    color: var(--blue);
}

.crumbs a:hover {
    text-decoration: underline;
}

/* ---------- Prose ---------- */

.prose {
    max-width: 820px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 17.5px;
    color: var(--ink);
}

.prose p + p {
    margin-top: 20px;
}

.prose strong {
    font-weight: 700;
}

/* ---------- About ---------- */

.about-section {
    padding: 84px 0;
}

.about-questions {
    margin-top: 46px;
    background: var(--blue-tint);
    border-radius: var(--radius);
    padding: 40px;
}

.about-questions h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 26px;
    color: var(--blue-deep);
    margin-bottom: 20px;
}

.about-questions ol {
    list-style: none;
    counter-reset: q;
    display: grid;
    gap: 14px;
}

.about-questions li {
    counter-increment: q;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-weight: 400;
    font-size: 17px;
}

.about-questions li::before {
    content: counter(q);
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-deep);
    color: var(--white);
    font-family: var(--brand);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Contact ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    padding: 84px 0;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 14px;
}

.contact-info > p {
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 34px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.contact-item-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h3 {
    font-family: var(--brand);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-item a,
.contact-item span {
    display: block;
    margin-top: 4px;
    font-weight: 400;
    font-size: 18px;
    color: var(--ink);
}

.contact-item a:hover {
    color: var(--blue);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 6px;
}

.contact-form .form-note {
    font-weight: 400;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 26px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-family: var(--brand);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 15px;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(50, 75, 198, 0.14);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #a7aab5;
}

.form-success {
    display: none;
    background: #e7f6ec;
    border: 1px solid #b7e3c3;
    color: #1d6b34;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 15.5px;
}

/* ---------- Service detail ---------- */

.service-detail {
    padding: 84px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
}

.service-detail h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    margin: 34px 0 14px;
    color: var(--ink);
}

.service-detail h2:first-child {
    margin-top: 0;
}

.service-detail ul {
    list-style: none;
    margin-top: 8px;
    display: grid;
    gap: 12px;
}

.service-detail ul li {
    position: relative;
    padding-left: 28px;
    font-weight: 400;
    font-size: 16.5px;
}

.service-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-weight: 700;
}

.service-sidebar {
    position: sticky;
    top: 110px;
    background: var(--blue-deep);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px;
}

.service-sidebar h3 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
}

.service-sidebar p {
    opacity: 0.85;
    font-weight: 400;
    font-size: 15.5px;
    margin-bottom: 24px;
}

.service-sidebar .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.service-sidebar .sidebar-links {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 22px;
    display: grid;
    gap: 10px;
}

.service-sidebar .sidebar-links a {
    font-family: var(--brand);
    font-weight: 400;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.service-sidebar .sidebar-links a:hover {
    opacity: 1;
}

/* ---------- CTA ---------- */

.site-cta {
    padding: 92px 0;
    background:
        radial-gradient(900px 460px at 50% 120%, rgba(50, 75, 198, 0.14), transparent 60%),
        var(--white);
    border-top: 1px solid var(--line);
}

.cta-inner {
    text-align: center;
}

.cta-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(32px, 4.4vw, 48px);
    color: var(--ink);
}

.cta-text {
    margin: 16px auto 0;
    max-width: 520px;
    font-weight: 400;
    font-size: 18px;
    color: var(--muted);
}

.site-cta .btn-outline {
    border-color: var(--blue);
    color: var(--blue);
}

.site-cta .btn-outline:hover {
    background: var(--blue-soft);
    border-color: var(--blue-600);
}

.cta-actions {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--white);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 56px 24px;
}

.footer-brand img {
    height: 34px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
    background: var(--blue-soft);
    border-color: var(--blue);
}

.footer-social img {
    max-height: 20px;
    width: auto;
}

.footer-band {
    background: var(--blue-deep);
    color: var(--white);
    padding: 46px 0 42px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav a {
    font-family: var(--brand);
    font-weight: 400;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-meta {
    text-align: center;
    margin-top: 26px;
    font-weight: 400;
    font-size: 15.5px;
    opacity: 0.85;
}

.footer-meta a:hover {
    text-decoration: underline;
}

.footer-sep {
    margin: 0 10px;
    opacity: 0.5;
}

.footer-copy {
    text-align: center;
    margin-top: 18px;
    font-weight: 400;
    font-size: 13.5px;
    opacity: 0.6;
}

/* ---------- Reveal animation ---------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Keep hover lifts snappy after the reveal animation ends */
.reveal.is-visible.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reveal.is-visible.see-all-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reveal.is-visible.question-item:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease, border-color 0.25s ease;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .services-row-2 {
        grid-template-columns: 1fr;
    }

    .services-row-2 .service-card-wide {
        grid-template-columns: 1fr 1.4fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    .standout-grid p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .questions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 24px 32px;
    }

    .brand-logo img {
        max-height: 70px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 84px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        padding: 18px 24px 26px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-130%);
        transition: transform 0.35s ease;
        z-index: 99;
    }

    .site-nav.is-open {
        transform: translateY(0);
    }

    .nav-link,
    .nav-cta {
        display: block;
        padding: 13px 12px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        padding-top: 64px;
        padding-bottom: 64px;
        display: block;
    }

    .hero-media {
        margin-top: 52px;
    }

    .section {
        padding: 72px 0;
    }

    .standout {
        padding: 72px 0;
    }

    .services-row-2 .service-card-wide {
        grid-template-columns: 1fr;
    }

    .services-row-2 .service-card-wide .service-card-media {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .questions-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 18px 24px;
    }

    .brand-logo img {
        max-height: 56px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 26px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}
