:root {
    --bg: #050708;
    --bg-deep: #020303;
    --bg-soft: #090d0f;
    --panel: #0d1113;
    --panel-2: #111719;
    --line: rgba(255,255,255,.09);
    --line-strong: rgba(255,255,255,.16);
    --text: #f4f5f1;
    --muted: #9aa3a2;
    --muted-2: #707978;
    --accent: #b7ef00;
    --accent-bright: #caff21;
    --danger: #ff6d6d;
    --radius: 5px;
    --container: 1240px;
    --font-display: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
    --font-body: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 82% 0, rgba(26,48,51,.13), transparent 33%),
        var(--bg);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.container {
    width: min(calc(100% - 54px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 18px;
    top: 18px;
    transform: translateY(-150%);
    padding: 10px 14px;
    color: #050708;
    background: var(--accent);
    font-weight: 900;
}
.skip-link:focus { transform: none; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(4,6,7,.94);
    backdrop-filter: blur(16px);
}
.site-header.is-scrolled { background: rgba(2,3,4,.985); }
.header-inner {
    min-height: 68px;
    display: grid;
    grid-template-columns: 175px 1fr 210px;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-grid;
    width: max-content;
    line-height: 1;
}
.brand-lockup { display: inline-flex; align-items: center; height: 37px; }
.brand-main {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -.075em;
}
.brand-lens {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    margin: 5px 0 0 6px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}
.brand-lens::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    right: -7px;
    bottom: -4px;
    background: var(--accent);
    transform: rotate(48deg);
    transform-origin: left center;
}
.brand-sub {
    margin-top: -2px;
    padding-left: 4px;
    color: var(--accent);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.site-nav {
    height: 68px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(26px, 3.2vw, 52px);
}
.nav-link {
    position: relative;
    display: grid;
    place-items: center;
    color: #c5cbca;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 11px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width .2s ease;
}
.nav-link:hover,
.nav-link.is-active { color: var(--accent); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 46px; }
.menu-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .025em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: #080a0b;
    background: linear-gradient(110deg, var(--accent), var(--accent-bright));
    box-shadow: 0 12px 36px rgba(183,239,0,.16);
}
.button-primary:hover { box-shadow: 0 14px 42px rgba(183,239,0,.26); }
.button-outline,
.button-ghost {
    color: var(--text);
    border-color: rgba(255,255,255,.26);
    background: rgba(0,0,0,.18);
}
.button-outline { border-color: rgba(183,239,0,.45); }
.button-outline:hover,
.button-ghost:hover { color: var(--accent); border-color: var(--accent); }
.header-cta { justify-self: end; min-width: 196px; }

/* Home hero */
.home-hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, #050708 0%, #070a0b 44%, #081014 100%);
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    background:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, transparent, black 48%, black);
}
.home-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, #050708 0%, rgba(5,7,8,.98) 34%, rgba(5,7,8,.68) 55%, rgba(5,7,8,.08) 80%),
        linear-gradient(to top, #050708 0%, transparent 34%);
}
.home-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    align-items: center;
}
.hero-copy-block {
    position: relative;
    z-index: 4;
    max-width: 680px;
    padding: 42px 0 60px;
}
.eyebrow {
    margin: 0 0 23px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.hero-copy-block h1 {
    margin: 0;
    color: #f3f4f0;
    font-family: var(--font-display);
    font-size: clamp(56px, 5.3vw, 78px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: .98;
    text-transform: uppercase;
}
.hero-copy-block h1 span { color: var(--accent); }
.hero-copy {
    max-width: 540px;
    margin: 24px 0 0;
    color: #c9cfce;
    font-size: clamp(15px, 1.12vw, 18px);
    line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hero-investigation {
    position: absolute;
    z-index: 1;
    top: 0;
    right: -16px;
    bottom: 0;
    width: min(58vw, 790px);
    background-image:
        linear-gradient(90deg, rgba(5,7,8,1) 0%, rgba(5,7,8,.4) 18%, rgba(5,7,8,0) 42%),
        linear-gradient(to top, rgba(5,7,8,.98), transparent 28%),
        url('../img/hero-investigation.png');
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    background-position: center, center, center;
    filter: saturate(.72) contrast(1.06) brightness(.88);
}
.hero-investigation::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 62% 35%, transparent 0 25%, rgba(0,0,0,.18) 67%, rgba(0,0,0,.55) 100%);
}
.hero-scanline {
    position: absolute;
    inset: 0;
    opacity: .12;
    background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.025) 3px 4px);
}
.trust-strip {
    position: relative;
    z-index: 5;
    min-height: 104px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(8,11,12,.86);
    backdrop-filter: blur(14px);
    transform: translateY(-18px);
}
.trust-strip article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 25px;
}
.trust-strip article + article { border-left: 1px solid var(--line); }
.trust-icon,
.home-service-icon,
.process-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--accent);
    border: 1px solid rgba(183,239,0,.2);
    border-radius: 50%;
    background: rgba(183,239,0,.04);
}
.trust-icon { width: 52px; height: 52px; font-size: 25px; }
.trust-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1;
    text-transform: uppercase;
}
.trust-strip small {
    display: block;
    margin-top: 7px;
    color: #9aa3a2;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Shared home sections */
.section-dark { background: #07090a; }
.home-services,
.home-about,
.team-section,
.home-process,
.home-contact { position: relative; }
.home-services { padding: 52px 0 66px; }
.home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 30px;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.kicker:not(.plain)::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.home-section-head h2,
.home-about-copy h2,
.center-heading h2,
.compact-cta h2,
.legal-method-card h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.05;
}
.home-section-head p,
.home-about-copy > p {
    max-width: 590px;
    margin: 14px 0 0;
    color: var(--muted);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.text-link span { font-size: 20px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.home-service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.home-service-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 30% 0, rgba(255,255,255,.035), transparent 40%),
        linear-gradient(145deg, #111617, #090c0d);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.home-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(183,239,0,.45);
    background: linear-gradient(145deg, #141a1b, #090c0d);
}
.home-service-icon { width: 54px; height: 54px; margin-bottom: 25px; font-size: 26px; }
.home-service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.03;
    text-transform: uppercase;
}
.home-service-card p { margin: 13px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.home-service-card > a {
    margin-top: auto;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.home-service-card > a span { margin-left: 7px; }

/* About */
.home-about {
    padding: 64px 0 0;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 75% 30%, rgba(44,51,39,.12), transparent 35%),
        #07090a;
}
.home-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    align-items: stretch;
    min-height: 350px;
    border: 1px solid var(--line);
    background: #090c0d;
}
.home-about-copy { padding: 40px 44px; }
.feature-list { display: grid; gap: 14px; margin: 24px 0 27px; padding: 0; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 12px; color: #c8cecd; font-size: 14px; }
.feature-list li span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--accent);
    border-radius: 50%;
    background: rgba(183,239,0,.07);
    font-size: 15px;
}
.home-about-visual {
    min-height: 350px;
    background-image:
        linear-gradient(90deg, #090c0d 0%, transparent 23%),
        linear-gradient(to top, rgba(4,5,6,.62), transparent 40%),
        url('../img/about-investigation-desk.png');
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: saturate(.72) contrast(1.08) brightness(.82);
}
.capability-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -1px;
    border: 1px solid var(--line);
    background: #090c0d;
}
.capability-strip article { padding: 24px 30px; text-align: center; }
.capability-strip article + article { border-left: 1px solid var(--line); }
.capability-strip strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 21px;
    line-height: 1;
    text-transform: uppercase;
}
.capability-strip span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Team */
.team-section { padding: 66px 0 48px; }
.center-heading { text-align: center; }
.center-heading h2 { font-size: clamp(34px, 3.2vw, 48px); }
.team-grid {
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 32px auto 0;
}
.team-card {
    min-height: 225px;
    display: grid;
    grid-template-columns: 42% 58%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0c1011;
}
.team-portrait {
    position: relative;
    display: grid;
    place-items: end center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 28%, #343a3b 0 11%, transparent 12%),
        radial-gradient(ellipse at 50% 100%, #272c2d 0 45%, transparent 46%),
        linear-gradient(140deg, #1a1f20, #060809);
}
.team-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.36), transparent 55%);
}
.team-portrait span {
    position: relative;
    z-index: 1;
    padding-bottom: 16px;
    color: rgba(255,255,255,.1);
    font-family: var(--font-display);
    font-size: 68px;
    font-weight: 900;
}
.team-copy { padding: 29px 27px; }
.team-name {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}
.team-copy small {
    display: block;
    margin-top: 6px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.team-copy p { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.team-quote { margin: 24px 0 0; text-align: center; color: #c7cdcc; font-size: 13px; }
.team-quote span { margin-right: 10px; color: var(--accent); font-family: Georgia, serif; font-size: 34px; vertical-align: middle; }

/* Process */
.home-process { padding: 50px 0 70px; }
.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.process-line::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183,239,0,.55) 10%, rgba(183,239,0,.55) 90%, transparent);
}
.process-line article { position: relative; z-index: 1; text-align: center; }
.process-icon { width: 56px; height: 56px; margin: 0 auto 14px; background: #0d1112; font-size: 22px; }
.process-line strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1;
}
.process-line h3 {
    margin: 8px 0 8px;
    font-family: var(--font-display);
    font-size: 17px;
    text-transform: uppercase;
}
.process-line p { max-width: 250px; margin: 0 auto; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Contact CTA */
.home-contact { padding: 0 0 66px; }
.compact-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 90% 50%, rgba(183,239,0,.08), transparent 28%),
        #111516;
}
.compact-cta h2 { font-size: 33px; }
.compact-cta p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }

/* Inner pages */
.page-hero {
    position: relative;
    padding: 78px 0 58px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 26%, rgba(40,68,72,.16), transparent 31%),
        linear-gradient(110deg, #050708, #0a0e10);
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent, black 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: .98;
    text-transform: uppercase;
}
.page-hero p { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 16px; }
.page-hero-services { background: linear-gradient(105deg, #050708 0%, #0a1012 64%, #07090a 100%); }
.section { padding: 70px 0; }
.section-muted { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.section-head {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 480px);
    align-items: end;
    gap: 42px;
    margin-bottom: 36px;
}
.section-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(36px, 3.8vw, 58px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1;
    text-transform: uppercase;
}
.section-intro { margin: 0; color: var(--muted); font-size: 15px; }

.services-list-section { background: #07090a; }
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-detail-card {
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding: 30px 32px 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #111617, #080b0c);
    transition: transform .22s ease, border-color .22s ease;
}
.service-detail-card:hover { transform: translateY(-4px); border-color: rgba(183,239,0,.45); }
.service-detail-number {
    position: absolute;
    right: 20px;
    top: 8px;
    color: rgba(255,255,255,.045);
    font-family: var(--font-display);
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
}
.service-detail-card h2 {
    position: relative;
    max-width: 76%;
    margin: 24px 0 13px;
    font-family: var(--font-display);
    font-size: 27px;
    line-height: 1.05;
    text-transform: uppercase;
}
.service-detail-card p { position: relative; margin: 0 0 23px; color: var(--muted); font-size: 14px; }
.service-detail-card a {
    position: relative;
    margin-top: auto;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.legal-method-section { padding-top: 0; background: #07090a; }
.legal-method-card {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.2fr) auto;
    align-items: center;
    gap: 36px;
    padding: 34px;
    border: 1px solid rgba(183,239,0,.25);
    background: linear-gradient(120deg, rgba(183,239,0,.055), #0d1112 40%);
}
.legal-method-card h2 { font-size: 34px; }
.legal-method-card p { margin: 0; color: var(--muted); }

/* Existing page layouts */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card {
    position: relative;
    min-height: 250px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #111617, #080b0c);
}
.service-card .number { position: absolute; right: 15px; top: 3px; color: rgba(255,255,255,.045); font-family: var(--font-display); font-size: 76px; font-weight: 900; }
.service-card h3 { position: relative; margin: 55px 0 11px; font-family: var(--font-display); font-size: 21px; line-height: 1.04; text-transform: uppercase; }
.service-card p { position: relative; margin: 0; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.process-step { min-height: 220px; padding: 24px; border: 1px solid var(--line); background: var(--panel); }
.process-step > span { color: var(--accent); font-family: var(--font-display); font-size: 28px; font-weight: 900; }
.process-step h3 { margin: 46px 0 9px; font-family: var(--font-display); font-size: 21px; text-transform: uppercase; }
.process-step p { margin: 0; color: var(--muted); }
.split-grid { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.about-panel {
    min-height: 430px;
    border: 1px solid var(--line);
    background-image: linear-gradient(to top, rgba(4,5,6,.8), transparent), url('../img/about-investigation-desk.png');
    background-size: cover;
    background-position: center;
}
.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #c7cdcc; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.principle { padding: 23px; border-top: 2px solid var(--accent); background: var(--panel); }
.principle h3 { margin: 0 0 9px; font-family: var(--font-display); font-size: 20px; text-transform: uppercase; }
.principle p { margin: 0; color: var(--muted); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 38px; }
.content-card { padding: 27px; border: 1px solid var(--line); background: var(--panel); }
.content-card + .content-card { margin-top: 15px; }
.content-card h2, .content-card h3 { margin-top: 0; font-family: var(--font-display); text-transform: uppercase; }
.content-card h2 { font-size: 29px; }
.content-card h3 { font-size: 21px; }
.content-card p:last-child { margin-bottom: 0; }
.sidebar-card { position: sticky; top: 96px; padding: 24px; border-left: 3px solid var(--accent); background: var(--panel); }
.sidebar-card h2 { margin: 0 0 10px; font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.sidebar-card p { color: var(--muted); }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button {
    width: 100%;
    min-height: 62px;
    display: grid;
    grid-template-columns: 1fr 36px;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border: 0;
    color: var(--text);
    background: transparent;
    text-align: left;
    cursor: pointer;
}
.accordion-button strong { font-size: 15px; }
.accordion-button span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); color: var(--accent); font-size: 20px; transition: transform .2s ease; }
.accordion-item.is-open .accordion-button span { transform: rotate(45deg); }
.accordion-panel { padding: 0 52px 19px 0; color: var(--muted); }

/* Forms */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr); gap: 22px; align-items: start; }
.form-card { padding: clamp(23px, 3vw, 36px); border: 1px solid var(--line); background: var(--panel); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 45px;
    padding: 11px 13px;
    border: 1px solid #313b3d;
    border-radius: 3px;
    outline: none;
    color: var(--text);
    background: #070a0b;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(183,239,0,.08); }
.form-field textarea { min-height: 135px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 13px; }
.checkbox input { margin-top: 5px; accent-color: var(--accent); }
.form-errors { margin: 0 0 20px; padding: 16px 18px; border-left: 3px solid var(--danger); background: rgba(255,109,109,.08); }
.form-errors strong { display: block; margin-bottom: 7px; }
.form-errors ul { margin: 0; padding-left: 20px; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
.info-stack { display: grid; gap: 15px; }
.info-box { padding: 22px; border: 1px solid var(--line); background: var(--panel); }
.info-box h2 { margin: 0 0 10px; font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.info-box p { margin: 0; color: var(--muted); }
.success-card { max-width: 800px; margin: 0 auto; padding: 44px; text-align: center; border: 1px solid rgba(183,239,0,.36); background: radial-gradient(circle at 50% 0, rgba(183,239,0,.1), transparent 40%), var(--panel); }
.success-icon { width: 60px; height: 60px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; color: #050708; background: var(--accent); font-size: 31px; font-weight: 900; }
.case-reference { display: inline-block; margin: 15px 0 24px; padding: 9px 15px; border: 1px solid var(--line); color: var(--accent); background: #06090a; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 800; }

/* Legacy CTA */
.cta-band { position: relative; overflow: hidden; padding: 48px; border: 1px solid rgba(183,239,0,.3); color: #070909; background: linear-gradient(120deg, var(--accent), var(--accent-bright)); }
.cta-band h2 { max-width: 760px; margin: 0 0 13px; font-family: var(--font-display); font-size: clamp(36px, 4vw, 58px); line-height: .96; text-transform: uppercase; }
.cta-band p { max-width: 650px; margin: 0 0 22px; }
.cta-band .button { border-color: #070909; color: #070909; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #030505; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 42px;
    padding-top: 44px;
    padding-bottom: 38px;
}
.brand-footer { margin-bottom: 11px; }
.footer-brand-column p { max-width: 360px; margin: 0; color: var(--muted); font-size: 13px; }
.footer-grid h2 { margin: 0 0 13px; color: var(--accent); font-family: var(--font-display); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 7px; }
.footer-grid a:not(.brand) { color: var(--muted); font-size: 12px; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 17px; padding-bottom: 17px; border-top: 1px solid var(--line); color: #717a79; font-size: 11px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .58s ease, transform .58s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
    .header-inner { grid-template-columns: 155px 1fr 188px; }
    .site-nav { gap: 25px; }
    .header-cta { min-width: 178px; padding-inline: 15px; }
    .home-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); }
    .hero-copy-block h1 { font-size: clamp(58px, 6.5vw, 82px); }
    .home-service-grid { grid-template-columns: repeat(3, 1fr); }
    .home-service-card { min-height: 250px; }
    .trust-strip article { padding: 20px; }
    .trust-icon { width: 46px; height: 46px; }
    .trust-strip strong { font-size: 19px; }
    .legal-method-card { grid-template-columns: 1fr 1.3fr; }
    .legal-method-card .button { grid-column: 1 / -1; justify-self: start; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
    .container { width: min(calc(100% - 36px), var(--container)); }
    .header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
    .site-nav {
        position: fixed;
        inset: 68px 0 auto;
        height: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 18px 24px;
        border-bottom: 1px solid var(--line);
        background: #050708;
    }
    .site-nav.is-open { display: flex; }
    .nav-link { min-height: 52px; place-items: center start; border-bottom: 1px solid var(--line); }
    .nav-link::after { display: none; }
    .header-cta { display: none; }
    .menu-toggle { display: grid; place-items: center; gap: 5px; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: transparent; }
    .menu-toggle span:not(.sr-only) { width: 21px; height: 2px; background: var(--text); transition: transform .2s ease, opacity .2s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    body.menu-open { overflow: hidden; }

    .home-hero { min-height: auto; }
    .home-hero-inner { min-height: 610px; grid-template-columns: 1fr; }
    .hero-copy-block { max-width: 620px; padding: 70px 0 170px; }
    .hero-investigation { width: 68%; opacity: .68; }
    .home-hero-shade { background: linear-gradient(90deg, #050708 0%, rgba(5,7,8,.92) 52%, rgba(5,7,8,.22) 100%), linear-gradient(to top, #050708 0%, transparent 36%); }
    .trust-strip { grid-template-columns: repeat(2, 1fr); transform: translateY(-22px); }
    .trust-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
    .trust-strip article:nth-child(4) { border-top: 1px solid var(--line); }
    .home-section-head,
    .home-about-grid,
    .compact-cta,
    .section-head,
    .split-grid,
    .contact-layout,
    .content-grid { grid-template-columns: 1fr; }
    .home-section-head { align-items: start; gap: 20px; }
    .home-section-head .text-link { justify-self: start; }
    .home-service-grid { grid-template-columns: repeat(2, 1fr); }
    .home-about-grid { min-height: auto; }
    .home-about-visual { min-height: 360px; }
    .capability-strip { grid-template-columns: repeat(2, 1fr); }
    .capability-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
    .capability-strip article:nth-child(4) { border-top: 1px solid var(--line); }
    .process-line { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .process-line::before { display: none; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .team-grid { max-width: 700px; grid-template-columns: 1fr; }
    .legal-method-card { grid-template-columns: 1fr; }
    .legal-method-card .button { grid-column: auto; }
    .sidebar-card { position: static; }
    .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
    body { font-size: 14px; }
    .container { width: min(calc(100% - 26px), var(--container)); }
    .brand-main { font-size: 34px; }
    .brand-lens { width: 16px; height: 16px; }
    .home-hero-inner { min-height: 585px; }
    .hero-copy-block { padding: 58px 0 195px; }
    .eyebrow { margin-bottom: 18px; font-size: 10px; }
    .hero-copy-block h1 { font-size: clamp(48px, 13.5vw, 62px); line-height: .96; }
    .hero-copy { max-width: 94%; margin-top: 18px; font-size: 14px; }
    .hero-actions { display: grid; gap: 11px; margin-top: 22px; }
    .hero-actions .button { width: 100%; }
    .hero-investigation { right: -80px; width: 118%; height: 360px; top: auto; bottom: 0; opacity: .58; background-position: center; }
    .home-hero-shade { background: linear-gradient(to bottom, #050708 0%, rgba(5,7,8,.97) 50%, rgba(5,7,8,.45) 76%, #050708 100%); }
    .trust-strip { grid-template-columns: 1fr; transform: translateY(-18px); }
    .trust-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
    .trust-strip article { padding: 17px 20px; }
    .trust-icon { width: 43px; height: 43px; font-size: 22px; }
    .trust-strip strong { font-size: 18px; }
    .home-services { padding: 44px 0 56px; }
    .home-section-head h2,
    .home-about-copy h2,
    .center-heading h2,
    .compact-cta h2,
    .legal-method-card h2 { font-size: 34px; }
    .home-service-grid { grid-template-columns: 1fr; }
    .home-service-card { min-height: 230px; }
    .home-about { padding-top: 54px; }
    .home-about-copy { padding: 31px 24px; }
    .home-about-visual { min-height: 270px; }
    .capability-strip { grid-template-columns: 1fr; }
    .capability-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
    .team-section { padding: 56px 0 42px; }
    .team-card { grid-template-columns: 36% 64%; min-height: 210px; }
    .team-copy { padding: 24px 20px; }
    .process-line { grid-template-columns: 1fr; }
    .home-process { padding: 38px 0 54px; }
    .home-contact { padding-bottom: 50px; }
    .compact-cta { padding: 25px 22px; }
    .compact-cta .button { width: 100%; }
    .page-hero { padding: 60px 0 44px; }
    .page-hero h1 { font-size: 47px; }
    .section { padding: 55px 0; }
    .services-detail-grid,
    .card-grid,
    .process-grid,
    .principles,
    .form-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .service-detail-card { min-height: 255px; padding: 26px 23px; }
    .service-detail-card h2 { max-width: 86%; font-size: 22px; }
    .legal-method-card { padding: 27px 23px; }
    .about-panel { min-height: 320px; order: 2; }
    .form-field.full { grid-column: auto; }
    .cta-band { padding: 34px 23px; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   PATCH 03 - Kétoszlopos főoldal a jóváhagyott referencia alapján
   Bal oldal: fejléc + hero + bizalmi sáv + szolgáltatások
   Jobb oldal: rólunk + csapat + folyamat + CTA + mini footer
   ========================================================= */

@media (min-width: 1181px) {
    .home-page {
        background: #050708;
    }

    .home-page .site-header {
        position: absolute;
        inset: 0 auto auto 0;
        width: 62.5%;
        border-right: 1px solid var(--line);
        background: rgba(3, 5, 6, .95);
    }

    .home-page .site-header .container {
        width: calc(100% - 54px);
        max-width: none;
    }

    .home-page .header-inner {
        min-height: 68px;
        grid-template-columns: 118px minmax(0, 1fr) 154px;
        gap: 15px;
    }

    .home-page .brand-lockup { height: 32px; }
    .home-page .brand-main { font-size: 33px; }
    .home-page .brand-lens { width: 15px; height: 15px; margin-left: 5px; }
    .home-page .brand-sub { font-size: 6px; }
    .home-page .site-nav { height: 68px; gap: clamp(16px, 1.7vw, 31px); }
    .home-page .nav-link { font-size: 10px; }
    .home-page .nav-link:hover::after,
    .home-page .nav-link.is-active::after { width: 39px; }
    .home-page .header-cta {
        min-width: 150px;
        min-height: 38px;
        padding-inline: 13px;
        font-size: 10px;
    }

    .home-page > main {
        width: 100%;
        min-height: 100vh;
    }

    .home-layout {
        display: grid;
        grid-template-columns: minmax(0, 62.5%) minmax(390px, 37.5%);
        align-items: start;
        min-height: 100vh;
    }

    .home-main-column {
        min-width: 0;
        border-right: 1px solid var(--line);
        background: #050708;
    }

    .home-sidebar {
        min-width: 0;
        background:
            radial-gradient(circle at 76% 0, rgba(34, 48, 45, .12), transparent 24%),
            #07090a;
    }

    .home-page > .site-footer { display: none; }

    /* Bal oldali hero */
    .home-main-column .home-hero {
        min-height: 710px;
        padding-top: 68px;
        overflow: hidden;
        background: #050708;
    }

    .home-main-column .home-hero::before {
        opacity: .14;
        background-size: 44px 44px;
    }

    .home-main-column .home-hero-inner {
        width: 100%;
        min-height: 565px;
        padding: 0 28px;
        grid-template-columns: minmax(0, 53%) minmax(0, 47%);
        align-items: center;
    }

    .home-main-column .home-hero-shade {
        background:
            linear-gradient(90deg, #050708 0%, rgba(5,7,8,.98) 38%, rgba(5,7,8,.52) 62%, rgba(5,7,8,.04) 100%),
            linear-gradient(to top, #050708 0%, transparent 25%);
    }

    .home-main-column .hero-copy-block {
        max-width: none;
        padding: 48px 0 58px;
    }

    .home-main-column .eyebrow {
        margin-bottom: 25px;
        font-size: 10px;
        letter-spacing: .1em;
    }

    .home-main-column .hero-copy-block h1 {
        max-width: 620px;
        font-size: clamp(49px, 4.2vw, 70px);
        line-height: .98;
        letter-spacing: -.042em;
    }

    .home-main-column .hero-copy {
        max-width: 510px;
        margin-top: 22px;
        font-size: clamp(13px, .95vw, 16px);
        line-height: 1.65;
    }

    .home-main-column .hero-actions {
        gap: 13px;
        margin-top: 28px;
    }

    .home-main-column .hero-actions .button {
        min-height: 43px;
        padding-inline: 20px;
        font-size: 10px;
    }

    .home-main-column .hero-investigation {
        top: 68px;
        right: 0;
        bottom: 112px;
        width: 49%;
        background-size: cover, cover, cover;
        background-position: center, center, center 42%;
    }

    .home-main-column .trust-strip {
        width: calc(100% - 56px);
        min-height: 100px;
        margin: 0 28px;
        transform: none;
        background: rgba(8, 11, 12, .94);
    }

    .home-main-column .trust-strip article {
        gap: 13px;
        padding: 17px 15px;
    }

    .home-main-column .trust-icon {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }

    .home-main-column .trust-strip strong { font-size: 17px; }
    .home-main-column .trust-strip small { margin-top: 5px; font-size: 9px; }

    /* Bal oldali szolgáltatások */
    .home-main-column .home-services {
        padding: 44px 28px 52px;
        border-top: 1px solid var(--line);
    }

    .home-main-column .home-section-head {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 24px;
        margin-bottom: 26px;
    }

    .home-main-column .home-section-head h2 {
        font-size: clamp(30px, 2.6vw, 40px);
    }

    .home-main-column .home-section-head p {
        max-width: 520px;
        margin-top: 11px;
        font-size: 12px;
        line-height: 1.6;
    }

    .home-main-column .home-service-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }

    .home-main-column .home-service-card {
        min-height: 248px;
        padding: 20px 17px 17px;
    }

    .home-main-column .home-service-icon {
        width: 47px;
        height: 47px;
        margin-bottom: 22px;
        font-size: 22px;
    }

    .home-main-column .home-service-card h3 {
        font-size: clamp(16px, 1.3vw, 20px);
        line-height: 1.08;
    }

    .home-main-column .home-service-card p {
        margin: 12px 0 17px;
        font-size: 11px;
        line-height: 1.55;
    }

    .home-main-column .home-service-card > a { font-size: 9px; }

    /* Jobb oldali keskeny tartalmi oszlop */
    .home-sidebar .home-about {
        padding: 0;
        border-top: 0;
        background: transparent;
    }

    .home-sidebar .home-about-grid {
        min-height: 308px;
        grid-template-columns: minmax(0, 52%) minmax(0, 48%);
        border: 0;
        border-bottom: 1px solid var(--line);
        background: #080b0c;
    }

    .home-sidebar .home-about-copy {
        padding: 30px 23px 24px;
    }

    .home-sidebar .kicker {
        margin-bottom: 9px;
        font-size: 8px;
    }

    .home-sidebar .home-about-copy h2 {
        font-size: clamp(24px, 2vw, 33px);
        line-height: 1.02;
    }

    .home-sidebar .home-about-copy > p {
        margin-top: 13px;
        font-size: 10px;
        line-height: 1.55;
    }

    .home-sidebar .feature-list {
        gap: 10px;
        margin: 18px 0 0;
    }

    .home-sidebar .feature-list li {
        gap: 9px;
        font-size: 10px;
        line-height: 1.3;
    }

    .home-sidebar .feature-list li span {
        width: 21px;
        height: 21px;
        font-size: 12px;
    }

    .home-sidebar .home-about-visual {
        min-height: 308px;
        background-image:
            linear-gradient(90deg, #080b0c 0%, transparent 18%),
            linear-gradient(to top, rgba(4,5,6,.58), transparent 42%),
            url('../img/about-investigation-desk.png');
        background-position: center, center, 58% center;
    }

    .home-sidebar .capability-strip {
        margin: 0 14px;
        transform: translateY(-1px);
    }

    .home-sidebar .capability-strip article { padding: 17px 8px; }
    .home-sidebar .capability-strip strong { font-size: 14px; }
    .home-sidebar .capability-strip span { margin-top: 5px; font-size: 7px; }

    .home-sidebar .team-section {
        padding: 43px 14px 27px;
    }

    .home-sidebar .center-heading h2 {
        font-size: clamp(25px, 2.1vw, 34px);
        line-height: 1.05;
    }

    .home-sidebar .team-grid {
        width: 100%;
        max-width: none;
        gap: 9px;
        margin-top: 24px;
    }

    .home-sidebar .team-card {
        min-height: 177px;
        grid-template-columns: 44% 56%;
    }

    .home-sidebar .team-portrait span {
        padding-bottom: 11px;
        font-size: 49px;
    }

    .home-sidebar .team-copy { padding: 21px 16px; }
    .home-sidebar .team-name { font-size: 16px; }
    .home-sidebar .team-copy small { margin-top: 5px; font-size: 7px; }
    .home-sidebar .team-copy p { margin-top: 13px; font-size: 9px; line-height: 1.55; }
    .home-sidebar .team-quote { margin-top: 19px; font-size: 10px; }
    .home-sidebar .team-quote span { font-size: 27px; }

    .home-sidebar .home-process {
        padding: 31px 14px 38px;
        border-top: 1px solid rgba(255,255,255,.035);
    }

    .home-sidebar .process-line {
        gap: 8px;
        margin-top: 28px;
    }

    .home-sidebar .process-line::before {
        top: 21px;
        left: 11%;
        right: 11%;
    }

    .home-sidebar .process-icon {
        width: 43px;
        height: 43px;
        margin-bottom: 10px;
        font-size: 17px;
    }

    .home-sidebar .process-line strong { font-size: 17px; }
    .home-sidebar .process-line h3 { margin: 6px 0; font-size: 11px; }
    .home-sidebar .process-line p {
        max-width: 118px;
        font-size: 8px;
        line-height: 1.4;
    }

    .home-sidebar .home-contact {
        padding: 0 14px 25px;
    }

    .home-sidebar .compact-cta {
        gap: 17px;
        padding: 20px 22px;
    }

    .home-sidebar .compact-cta h2 { font-size: 23px; }
    .home-sidebar .compact-cta p { margin-top: 5px; font-size: 9px; }
    .home-sidebar .compact-cta .button {
        min-height: 39px;
        padding-inline: 16px;
        font-size: 9px;
    }

    .home-mini-footer {
        display: grid;
        grid-template-columns: 1.25fr repeat(3, 1fr);
        gap: 18px;
        padding: 26px 20px 23px;
        border-top: 1px solid var(--line);
        background: #030505;
    }

    .home-mini-footer .brand-main { font-size: 31px; }
    .home-mini-footer .brand-lens { width: 14px; height: 14px; }
    .home-mini-footer .brand-sub { font-size: 5px; }
    .home-mini-footer-brand small {
        display: block;
        margin-top: 12px;
        color: #6f7877;
        font-size: 7px;
    }

    .home-mini-footer > div:not(:first-child) {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .home-mini-footer strong {
        margin-bottom: 4px;
        color: var(--accent);
        font-family: var(--font-display);
        font-size: 8px;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .home-mini-footer a:not(.brand) {
        color: var(--muted);
        font-size: 8px;
    }

    .home-mini-footer a:hover { color: var(--accent); }
}

@media (max-width: 1180px) {
    .home-page .site-header {
        position: sticky;
        width: 100%;
    }

    .home-layout { display: block; }
    .home-main-column { border-right: 0; }
    .home-sidebar { border-top: 1px solid var(--line); }
    .home-page > .site-footer { display: none; }

    .home-main-column .home-hero { padding-top: 0; }
    .home-main-column .home-hero-inner,
    .home-main-column .trust-strip,
    .home-main-column .home-services,
    .home-sidebar .home-about,
    .home-sidebar .team-section,
    .home-sidebar .home-process,
    .home-sidebar .home-contact,
    .home-mini-footer {
        width: min(calc(100% - 54px), var(--container));
        margin-inline: auto;
    }

    .home-main-column .home-services { padding-inline: 0; }
    .home-sidebar .home-about { padding-top: 54px; }
    .home-sidebar .home-about-grid { border: 1px solid var(--line); }
    .home-sidebar .capability-strip { margin-inline: 0; }
    .home-sidebar .team-section { padding-inline: 0; }
    .home-sidebar .home-process { padding-inline: 0; }
    .home-sidebar .home-contact { padding-inline: 0; }
    .home-mini-footer { margin-top: 0; }
}

@media (max-width: 920px) {
    .home-mini-footer {
        grid-template-columns: 1.3fr repeat(2, 1fr);
    }

    .home-mini-footer > div:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 640px) {
    .home-main-column .home-hero-inner,
    .home-main-column .trust-strip,
    .home-main-column .home-services,
    .home-sidebar .home-about,
    .home-sidebar .team-section,
    .home-sidebar .home-process,
    .home-sidebar .home-contact,
    .home-mini-footer {
        width: min(calc(100% - 26px), var(--container));
    }

    .home-mini-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-mini-footer > div:last-child { grid-column: auto; }
}

/* PATCH 03 finomhangolás: a referencia arányaihoz közelebb */
@media (min-width: 1181px) {
    .home-main-column .hero-copy-block {
        width: 67%;
    }

    .home-main-column .hero-copy-block h1 {
        max-width: none;
        font-size: clamp(46px, 3.65vw, 59px);
    }

    .home-main-column .hero-copy-block h1 > .hero-line {
        display: block;
        width: max-content;
        white-space: nowrap;
        color: var(--text);
    }

    .home-main-column .hero-copy-block h1 > .hero-line b {
        color: var(--accent);
        font-weight: inherit;
    }

    .home-main-column .hero-investigation {
        top: 0;
        bottom: 0;
        width: 51%;
    }

    .home-sidebar .home-about-grid,
    .home-sidebar .home-about-visual {
        min-height: 280px;
    }

    .home-sidebar .home-about-copy {
        padding: 24px 21px 19px;
    }

    .home-sidebar .feature-list {
        gap: 8px;
        margin-top: 14px;
    }

    .home-sidebar .capability-strip article {
        padding-block: 14px;
    }

    .home-sidebar .team-section {
        padding-top: 34px;
        padding-bottom: 22px;
    }

    .home-sidebar .team-grid {
        margin-top: 20px;
    }

    .home-sidebar .team-card {
        min-height: 158px;
    }

    .home-sidebar .team-copy {
        padding: 17px 14px;
    }

    .home-sidebar .team-copy p {
        margin-top: 10px;
    }

    .home-sidebar .team-quote {
        margin-top: 14px;
    }

    .home-sidebar .home-process {
        padding-top: 26px;
        padding-bottom: 30px;
    }

    .home-sidebar .process-line {
        margin-top: 22px;
    }

    .home-sidebar .home-contact {
        padding-bottom: 18px;
    }

    .home-sidebar .compact-cta {
        padding-block: 17px;
    }
}

@media (max-width: 1180px) {
    .hero-copy-block h1 > .hero-line {
        display: block;
        white-space: normal;
        color: var(--text);
    }

    .hero-copy-block h1 > .hero-line b {
        color: var(--accent);
        font-weight: inherit;
    }
}

/* =========================================================
   PATCH 04 - Középre zárt főoldali keret
   A háttér továbbra is teljes szélességű, maga a kétoszlopos
   főoldal viszont nem nyúlik a monitor két széléig.
   ========================================================= */

.home-frame {
    width: min(calc(100% - 48px), 1680px);
    margin-inline: auto;
    overflow: hidden;
    border-inline: 1px solid rgba(255, 255, 255, .075);
    background: #050708;
    box-shadow: 0 0 70px rgba(0, 0, 0, .38);
}

@media (min-width: 1181px) {
    .home-page {
        background:
            radial-gradient(circle at 50% 0, rgba(35, 55, 52, .12), transparent 42%),
            #020404;
    }

    /* A fejléc ugyanahhoz a középre zárt kerethez igazodik,
       de továbbra is csak a bal főoszlop fölött fut. */
    .home-page .site-header {
        left: max(24px, calc((100vw - 1680px) / 2));
        width: min(calc(62.5vw - 30px), 1050px);
    }

    .home-page > main {
        padding-block: 0;
    }

    .home-layout {
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .home-frame {
        width: 100%;
        border-inline: 0;
        box-shadow: none;
    }
}
