:root {
    --navy: #0E1B3D;
    --blue: #4AA3E0;
    --blue-soft: #BFE0F5;
    --grey: #F4F6F9;
    --grey-border: #E6EAF1;
    --white: #fff;
}

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

html,
body {
    background: var(--white);
    color: var(--navy);
    font-family: 'Manrope', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased
}

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

.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px
}


/* â”€â”€â”€â”€â”€ Top nav â”€â”€â”€â”€â”€ */

nav.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0 10px;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px
}

.burger span:nth-child(2) {
    width: 18px
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--navy)
}

.nav-right .acc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600
}

.nav-right .avatar {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--blue-soft);
    border: 1px solid var(--grey-border)
}

.nav-right .divider {
    width: 1px;
    height: 22px;
    background: var(--grey-border)
}

.cart {
    position: relative;
    display: flex;
    align-items: center
}

.cart svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2
}

.cart .badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center
}


/* â”€â”€â”€â”€â”€ Hero â”€â”€â”€â”€â”€ */

.hero {
    position: relative;
    padding: 20px 0 8px;
    min-height: 560px;
}

.hero-word {
    font-weight: 900;
    font-size: clamp(120px, 18.5vw, 270px);
    line-height: .82;
    letter-spacing: -.045em;
    color: var(--navy);
    text-align: center;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    margin-top: 30px;
}


/* technical sparkle markers */

.mark {
    position: absolute;
    color: var(--blue);
    font-weight: 700;
    z-index: 3;
    pointer-events: none
}

.mark.plus {
    font-size: 18px
}

.mark.plus::before {
    content: "+"
}

.m1 {
    top: 70px;
    left: 6%
}

.m2 {
    top: 130px;
    right: 10%
}

.m3 {
    bottom: 120px;
    left: 14%
}

.m4 {
    top: 40px;
    left: 48%
}

.m5 {
    bottom: 200px;
    right: 6%
}


/* person â€” overlaps the wordmark, left-of-center */

.person {
    position: absolute;
    left: 52%;
    bottom: -20px;
    transform: translateX(-62%);
    height: 640px;
    z-index: 4;
    pointer-events: none;
    filter: drop-shadow(0 30px 40px rgba(14, 27, 61, .12));
}


/* Fence â€” overlaps right side of the wordmark */

.fence {
    position: absolute;
    right: -2%;
    top: 110px;
    width: 640px;
    max-width: 52vw;
    z-index: 2;
    filter: drop-shadow(0 30px 50px rgba(14, 27, 61, .18));
    transform: rotate(-2deg);
}


/* size pills like 30ml/50ml/100ml */

.sizes {
    position: absolute;
    right: 40px;
    top: 330px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.sizes .pill {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.sizes .pill.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy)
}


/* Shop-Now */

.shop-now {
    position: absolute;
    left: 0;
    bottom: 18px;
    font-size: 17px;
    font-weight: 700;
    z-index: 5;
    border-bottom: 1.5px solid var(--navy);
    padding-bottom: 4px;
}


/* â”€â”€â”€â”€â”€ Bento â”€â”€â”€â”€â”€ */

.bento {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 1.45fr 1.25fr;
    gap: 16px;
    margin-top: 20px;
    padding-bottom: 60px;
}

.tile {
    border-radius: 24px;
    padding: 26px;
    min-height: 260px;
    position: relative;
    overflow: visible
}

.tile.white {
    overflow: hidden
}

.bento {
    align-items: stretch
}

.tile.blue .person-bento {
    position: absolute;
    right: -48px;
    bottom: -0px;
    height: calc(100% + 18%);
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 24px 30px rgba(14, 27, 61, .25));
}

.tile.blue .bluecontent {
    position: relative;
    z-index: 1;
    max-width: 55%
}

.tile.dark {
    background: var(--navy);
    color: var(--white)
}

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

.tile.white {
    background: var(--white);
    border: 1px solid var(--grey-border)
}

.tile .check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 600
}

.tile .check::before {
    content: "";
    flex: 0 0 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--blue);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.6 6.8z'/></svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2 18.6 6.8z'/></svg>") center/contain no-repeat;
    margin-top: 2px;
}

.tile.blue .check::before {
    background: var(--white)
}

.tile .hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px
}

.tile .hashtags .tag {
    background: rgba(74, 163, 224, .18);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(74, 163, 224, .35);
}

.tile.blue .foot-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    background-image: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .18), transparent 60%);
}

.tile.blue .big-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    margin-top: 18px
}

.tile.blue .big-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 10px;
    opacity: .9
}

.tile.white h2 {
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}

.tile.white p {
    font-size: 13px;
    color: #5a6478;
    line-height: 1.55;
    max-width: 90%
}

.tile.white .pretitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px
}

.tile.dark .quote {
    background: var(--blue);
    color: var(--navy);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 120px;
    margin-bottom: 16px;
}

.tile.dark .quote small {
    display: block;
    font-weight: 600;
    opacity: .75;
    margin-top: 2px
}

.tile.dark .foot-img {
    position: absolute;
    right: -30px;
    top: -41px;
    width: 270px;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .35));
    transform: rotate(8deg);
    z-index: 5;
}


/* USP bar */

.usp-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    padding: 18px 0;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
}

.usp-bar span {
    display: flex;
    align-items: center;
    gap: 8px
}

.usp-bar span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 999px;
    display: inline-block
}


/* ═════════════ SECTION 2 — Kategorien ═════════════ */

.section {
    padding: 140px 0 60px
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px
}

.section-kicker {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--blue);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue)
}

.section-title {
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: .88;
    color: var(--navy);
}

.section-sub {
    max-width: 320px;
    font-size: 14px;
    color: #5a6478;
    line-height: 1.6;
    padding-bottom: 14px
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 220px;
    gap: 16px;
}

.cat {
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    min-height: 0;
}

.cat:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(14, 27, 61, .25)
}

.cat.lead {
    grid-column: span 2;
    grid-row: span 1;
    background: var(--navy);
    color: var(--white)
}

.cat.mid {
    background: var(--white);
    border: 1px solid var(--grey-border);
    color: var(--navy)
}

.cat.wide {
    grid-column: span 2;
    background: var(--grey);
    border: 1px solid var(--grey-border);
    color: var(--navy)
}

.cat.accent {
    background: var(--blue);
    color: var(--white)
}

.cat .cat-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .7
}

.cat.lead .cat-label,
.cat.accent .cat-label {
    opacity: .85
}

.cat h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin-top: 8px;
    max-width: 60%
}

.cat.lead h3 {
    font-size: 44px;
    max-width: 55%
}

.cat.mid h3 {
    font-size: 22px
}

.cat-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    z-index: 2
}

.cat-pill {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    background: rgba(74, 163, 224, .18);
    color: var(--blue);
    border: 1px solid rgba(74, 163, 224, .35);
}

.cat.mid .cat-pill {
    background: rgba(74, 163, 224, .12)
}

.cat.accent .cat-pill {
    background: rgba(255, 255, 255, .22);
    color: var(--white);
    border-color: rgba(255, 255, 255, .4)
}

.cat-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    transition: transform .3s ease;
}

.cat.lead .cat-arrow {
    background: var(--blue)
}

.cat.accent .cat-arrow {
    background: var(--white);
    color: var(--blue)
}

.cat:hover .cat-arrow {
    transform: translate(4px, -4px) rotate(-8deg)
}

.cat-img {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(14, 27, 61, .25));
}

.cat.lead .cat-img {
    right: -40px;
    bottom: -20px;
    width: 55%;
    transform: rotate(-3deg)
}

.cat.mid .cat-img {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 55%
}

.cat.wide .cat-img {
    right: 40px;
    bottom: -10px;
    width: 180px;
    transform: rotate(6deg)
}

.cat-placeholder {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 45%;
    height: 75%;
    border-radius: 20px;
    background: repeating-linear-gradient(45deg, rgba(74, 163, 224, .08) 0 10px, transparent 10px 20px), rgba(74, 163, 224, .05);
    border: 1.5px dashed rgba(74, 163, 224, .35);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--blue);
}


/* ═════════════ SECTION 3 — Beliebteste Produkte ═════════════ */

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

.prod {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

.prod:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px -20px rgba(14, 27, 61, .2);
}

.prod-media {
    position: relative;
    height: 220px;
    border-radius: 14px;
    background: var(--grey);
    overflow: hidden;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
}

.prod-media img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(14, 27, 61, .15));
}

.prod-media .ph {
    width: 75%;
    height: 70%;
    border-radius: 14px;
    background: repeating-linear-gradient(45deg, rgba(74, 163, 224, .08) 0 10px, transparent 10px 20px), rgba(74, 163, 224, .05);
    border: 1.5px dashed rgba(74, 163, 224, .35);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--blue);
}

.prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 6px 11px;
    border-radius: 999px;
}

.prod-badge.dark {
    background: var(--navy)
}

.prod-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--grey-border);
    display: grid;
    place-items: center;
    color: var(--navy);
}

.prod-fav svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.prod-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: 6px;
}

.prod h3 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: var(--navy);
    margin-bottom: 10px;
    min-height: 40px;
}

.prod-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.prod-specs span {
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
    background: var(--grey);
    border: 1px solid var(--grey-border);
    padding: 5px 9px;
    border-radius: 999px;
}

.prod-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--grey-border);
}

.prod-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1;
}

.prod-price small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #5a6478;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.prod-price .vat {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #8892a6;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 3px;
}

.prod-cta {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 700;
    transition: background .3s ease, transform .3s ease;
}

.prod:hover .prod-cta {
    background: var(--blue);
    transform: translate(3px, -3px) rotate(-8deg)
}


/* ═════════════ SECTION 3.5 — Video / Komplettsystem ═════════════ */

.video-section {
    background: var(--navy);
    border-radius: 24px;
    padding: 60px;
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(74, 163, 224, .1), transparent 55%);
    pointer-events: none;
}

.video-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #080e1e;
    cursor: pointer;
    z-index: 1;
}

.video-wrap video,
.video-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

.video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(14, 27, 61, .45);
    transition: background .3s ease;
    z-index: 2;
}

.video-wrap:hover .video-play {
    background: rgba(14, 27, 61, .25)
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: var(--blue);
    display: grid;
    place-items: center;
    transition: transform .3s ease;
    box-shadow: 0 12px 40px rgba(74, 163, 224, .4);
}

.video-wrap:hover .video-play-btn {
    transform: scale(1.08)
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: rgba(74, 163, 224, .18);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(74, 163, 224, .35);
    backdrop-filter: blur(8px);
}

.video-info {
    position: relative;
    z-index: 1;
    color: #fff
}

.video-info .section-kicker {
    color: var(--blue);
    margin-bottom: 18px
}

.video-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1;
    margin-bottom: 22px;
}

.video-info .lead {
    font-size: 14px;
    line-height: 1.6;
    color: #8892b0;
    margin-bottom: 34px;
    max-width: 90%;
}

.video-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px
}

.video-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.video-benefit .icon {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(74, 163, 224, .12);
    border: 1px solid rgba(74, 163, 224, .25);
    display: grid;
    place-items: center;
    color: var(--blue);
}

.video-benefit .icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.video-benefit h4 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    margin-bottom: 3px;
}

.video-benefit p {
    font-size: 12px;
    color: #8892b0;
    line-height: 1.5;
    margin: 0
}

.video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.video-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 163, 224, .35)
}


/* ═════════════ SECTION 4 — Warum Bauzaunwelt ═════════════ */

.why {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.chapter {
    border-top: 1px solid var(--grey-border);
    padding: 36px 0;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    cursor: pointer;
    transition: opacity .3s ease;
}

.chapter:last-child {
    border-bottom: 1px solid var(--grey-border)
}

.chapter.inactive {
    opacity: .35
}

.chapter-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: .1em;
    padding-top: 6px;
}

.chapter h4 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.015em;
    margin-bottom: 10px
}

.chapter p {
    font-size: 14px;
    color: #5a6478;
    line-height: 1.6;
    max-width: 90%
}

.chapter .stat {
    display: inline-block;
    margin-top: 18px;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.02em;
}

.chapter .stat small {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 2px
}

.why-stage {
    position: sticky;
    top: 40px;
    background: var(--navy);
    border-radius: 24px;
    min-height: 560px;
    padding: 40px;
    color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stage-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2
}

.stage-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue)
}

.stage-visual {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 170px;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.stage-visual svg {
    width: 80%;
    max-width: 520px;
    height: auto
}

.stage-quote {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.01em;
    max-width: 62%;
}

.stage-quote .big {
    display: block;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--blue);
    line-height: .95;
    margin-bottom: 10px
}

.stage-caption {
    position: absolute;
    right: 40px;
    bottom: 44px;
    z-index: 2;
    text-align: right;
    max-width: 45%;
}

.stage-caption .t1 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .16em;
    text-transform: uppercase;
    line-height: 1.2;
}

.stage-caption .t2 {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: .1em;
    margin-top: 6px;
    line-height: 1.3;
}


/* Trust-Leiste */

.trust-bar {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--grey-border);
    border: 1px solid var(--grey-border);
    border-radius: 20px;
    overflow: hidden;
}

.trust-item {
    background: var(--white);
    padding: 32px 24px;
    text-align: left;
}

.trust-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1
}

.trust-num span {
    color: var(--blue)
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #5a6478;
    margin-top: 10px
}


/* ═════════════ Responsive ═════════════ */

@media (max-width:1100px) {
    .bento {
        grid-template-columns: 1fr 1fr
    }
    .fence {
        width: 480px;
        top: 160px
    }
    .person {
        height: 520px
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto
    }
    .cat.lead,
    .cat.wide {
        grid-column: span 2
    }
    .prod-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .video-section {
        grid-template-columns: 1fr;
        padding: 40px 36px
    }
    .why {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .why-stage {
        position: static;
        min-height: 420px
    }
    .trust-bar {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:700px) {
    .hero-word {
        font-size: 28vw
    }
    .fence {
        width: 70vw;
        top: 40%
    }
    .person {
        height: 70vh
    }
    .bento {
        grid-template-columns: 1fr
    }
    .sizes {
        top: auto;
        bottom: 10px;
        right: 20px
    }
    .usp-bar {
        flex-wrap: wrap;
        gap: 10px
    }
    .cat-grid {
        grid-template-columns: 1fr
    }
    .cat.lead,
    .cat.wide {
        grid-column: span 1
    }
    .prod-grid {
        grid-template-columns: 1fr
    }
    .trust-bar {
        grid-template-columns: 1fr
    }
    .video-section {
        padding: 32px 24px
    }
    .section {
        padding: 90px 0 40px
    }
}


/* ═════════════ SECTION 5 — Content / SEO ═════════════ */

.content {
    background: var(--grey);
    border-radius: 24px;
    padding: 70px 60px;
    margin-top: 100px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.content-left .section-kicker {
    margin-bottom: 16px
}

.content-left h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: .95;
    color: var(--navy);
}

.content-left .lead {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6478;
    margin-top: 24px;
    max-width: 85%;
}

.content-right {
    column-count: 2;
    column-gap: 40px
}

.content-right h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    margin-top: 0;
    break-after: avoid;
}

.content-right h3:not(:first-child) {
    margin-top: 22px
}

.content-right p {
    font-size: 13px;
    line-height: 1.65;
    color: #5a6478;
    margin-bottom: 0;
    break-inside: avoid-column;
}

.content-right p+p {
    margin-top: 14px
}

@media (max-width:1100px) {
    .content {
        padding: 50px 36px
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
    .content-right {
        column-count: 1
    }
}

@media (max-width:700px) {
    .content {
        padding: 40px 24px;
        margin-top: 60px
    }
}


/* ═════════════ FOOTER ═════════════ */

.footer {
    background: var(--navy);
    color: #c9d2e6;
    border-radius: 24px;
    margin: 120px 0 40px;
    padding: 70px 60px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(74, 163, 224, .12), transparent 50%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .f-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 22px
}

.footer .f-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: #8892b0;
    max-width: 340px;
    margin-bottom: 24px
}

.footer .f-hotline {
    background: rgba(74, 163, 224, .12);
    border: 1px solid rgba(74, 163, 224, .25);
    border-radius: 14px;
    padding: 16px 18px;
    max-width: 320px;
}

.footer .f-hotline .label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .f-hotline .label::before {
    content: "";
    width: 16px;
    height: 1.5px;
    background: var(--blue)
}

.footer .f-hotline .num {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.01em;
    margin-top: 8px;
    line-height: 1;
}

.footer .f-hotline .hours {
    font-size: 11px;
    color: #8892b0;
    margin-top: 6px
}

.footer h4 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #fff;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer ul li {
    margin-bottom: 10px
}

.footer ul a {
    font-size: 13px;
    color: #8892b0;
    transition: color .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer ul a:hover {
    color: var(--blue)
}

.footer .f-addr {
    font-size: 13px;
    line-height: 1.65;
    color: #8892b0;
}

.footer .f-addr strong {
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 6px
}

.footer .f-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px
}

.footer .f-contact {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 12px;
    color: #8892b0;
    line-height: 1.45;
}

.footer .f-contact .tag {
    flex: 0 0 auto;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(74, 163, 224, .15);
    color: var(--blue);
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(74, 163, 224, .3);
    min-width: 58px;
    text-align: center;
}

.footer .f-contact .num {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: block
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 26px;
    margin-top: 26px;
    font-size: 11px;
    color: #8892b0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.footer-bottom .legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.footer-bottom .legal a {
    color: #8892b0;
    transition: color .2s ease
}

.footer-bottom .legal a:hover {
    color: var(--blue)
}

.footer-bottom .copy {
    color: #606c88
}

.footer-bottom .copy strong {
    color: #fff;
    font-weight: 700
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    color: #c9d2e6;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.footer-socials a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.footer-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

@media (max-width:1100px) {
    .footer {
        padding: 50px 36px 24px
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }
    .footer .f-brand {
        grid-column: 1/-1
    }
}

@media (max-width:700px) {
    .footer {
        padding: 40px 24px 20px;
        margin: 60px 0 20px
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }
}