:root {
    --white: #ffffff;
    --off: #f3f8fd;
    --surface: #e8f3fb;
    --border: #ccdff0;
    --text: #0c1d2e;
    --muted: #527490;
    --star-big: #1a6fb5;
    --star-mid: #5bbfea;
    --star-sml: #a8daf5;
    --navy: #0f3a6e;
    --blue: #1a6fb5;
    --sky: #5bbfea;
    --light-blue: #a8daf5;

    --grad: linear-gradient(135deg, var(--sky) 0%, var(--blue) 55%, var(--navy) 100%);

    --radius: 12px;
    --nav-h: 70px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

#intro-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #0c1d2e 0%, #0f3a6e 60%, #1a6fb5 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

#intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 191, 234, 0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#burst-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
}

.burst-s {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.b-s1,
.b-s5 {
    color: var(--light-blue);
}

.b-s2,
.b-s6 {
    color: var(--sky);
}

.b-s3,
.b-s7 {
    color: #fff;
}

.b-s4,
.b-s8 {
    color: var(--star-mid);
}

#logo-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.li-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: scale(0.9);
}

.li-prima {
    display: flex;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 14vw, 120px);
    line-height: 0.88;
    letter-spacing: 6px;
    color: #ffffff;
    text-shadow:
        0 0 50px rgba(255, 255, 255, 0.2),
        0 2px 0 rgba(0, 0, 0, 0.15);
}

.li-prima span {
    display: block;
    transform: translateY(-50px);
    opacity: 0;
}

.li-reng {
    display: flex;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 7vw, 60px);
    line-height: 0.9;
    letter-spacing: 8px;
    color: var(--sky);
}

.li-reng span {
    display: block;
    transform: translateY(50px);
    opacity: 0;
}

.li-stars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
}

.li-star {
    flex-shrink: 0;
}

.ls-big {
    width: 64px;
    height: 64px;
    fill: var(--star-big);
    filter: drop-shadow(0 0 10px rgba(26, 111, 181, 0.5));
}

.ls-mid {
    width: 44px;
    height: 44px;
    fill: var(--star-mid);
    filter: drop-shadow(0 0 8px rgba(91, 191, 234, 0.5));
}

.ls-sml {
    width: 30px;
    height: 30px;
    fill: var(--star-sml);
    filter: drop-shadow(0 0 6px rgba(168, 218, 245, 0.4));
}

#intro-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.45);
    opacity: 0;
    transform: translateY(10px);
}

.site-hidden {
    opacity: 0;
    pointer-events: none;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    z-index: 100;
    transform: translateY(-100%);
    transition: transform 0.55s ease;
    box-shadow: 0 2px 20px rgba(26, 111, 181, 0.07);
}

#navbar.nb-visible {
    transform: translateY(0);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nl-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nl-prima {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nl-reng {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--navy);
}

.nl-stars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.nl-star {
    flex-shrink: 0;
}

.nls-big {
    width: 20px;
    height: 20px;
    fill: var(--star-big);
}

.nls-mid {
    width: 14px;
    height: 14px;
    fill: var(--star-mid);
}

.nls-sml {
    width: 9px;
    height: 9px;
    fill: var(--star-sml);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--muted);
    position: relative;
    transition: color 0.2s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--blue);
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--grad);
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(26, 111, 181, 0.28);
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(26, 111, 181, 0.35);
}

#hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #ffffff 0%, #eef6fd 50%, #d6ecf8 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(var(--nav-h) + 60px) 7vw 80px;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hb1 {
    width: 500px;
    height: 500px;
    background: rgba(91, 191, 234, 0.15);
    top: -80px;
    right: -60px;
}

.hb2 {
    width: 340px;
    height: 340px;
    background: rgba(168, 218, 245, 0.18);
    bottom: -60px;
    left: 8%;
}

.hb3 {
    width: 260px;
    height: 260px;
    background: rgba(26, 111, 181, 0.08);
    top: 35%;
    left: 42%;
}

.hero-content {
    max-width: 560px;
    z-index: 1;
    opacity: 0;
    transform: translateY(28px);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 191, 234, 0.12);
    border: 1px solid rgba(91, 191, 234, 0.4);
    color: var(--blue);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(58px, 9vw, 108px);
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 28px;
}

.hw {
    display: block;
}

h1 em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    max-width: 450px;
    margin-bottom: 42px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--grad);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26, 111, 181, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 111, 181, 0.38);
}

.btn-primary.full {
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
}

.btn-outline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    padding: 14px 30px;
    border-radius: 50px;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
    opacity: 0;
    transform: translateX(40px);
}

.hero-logo-card {
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px 36px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(26, 111, 181, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
}

.hlc-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.hlc-prima {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 5px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hlc-reng {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 6px;
    color: var(--navy);
    line-height: 1;
}

.hlc-stars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

.hlc-star {
    flex-shrink: 0;
}

.hlc-big {
    width: 44px;
    height: 44px;
    fill: var(--star-big);
    filter: drop-shadow(0 2px 6px rgba(26, 111, 181, 0.35));
}

.hlc-mid {
    width: 30px;
    height: 30px;
    fill: var(--star-mid);
    filter: drop-shadow(0 2px 4px rgba(91, 191, 234, 0.4));
}

.hlc-sml {
    width: 20px;
    height: 20px;
    fill: var(--star-sml);
}

.hero-stats {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(26, 111, 181, 0.08);
}

.hs-item {
    text-align: center;
    flex: 1;
}

.hs-n {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-l {
    display: block;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hs-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.fsp {
    position: absolute;
    pointer-events: none;
    animation: floatStar 4s ease-in-out infinite;
}

.fsp1 {
    width: 28px;
    height: 28px;
    top: 18%;
    left: 4%;
    animation-delay: 0s;
}

.fsp2 {
    width: 18px;
    height: 18px;
    top: 72%;
    left: 2%;
    animation-delay: 1.3s;
}

.fsp3 {
    width: 22px;
    height: 22px;
    top: 12%;
    right: 37%;
    animation-delay: 0.7s;
}

.fsp4 {
    width: 14px;
    height: 14px;
    bottom: 14%;
    right: 36%;
    animation-delay: 2s;
}

@keyframes floatStar {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(25deg);
    }
}

section {
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 6vw;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.section-label.center {
    text-align: center;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1;
    color: var(--text);
    margin-bottom: 22px;
}

h2.center {
    text-align: center;
}

h2 em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 0.88em;
}

.section-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 52px;
}

.section-sub.center {
    text-align: center;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

#om {
    background: var(--off);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.om-visual {
    position: relative;
}

.om-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 36px rgba(26, 111, 181, 0.08);
    position: relative;
    overflow: hidden;
}

.om-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad);
}

.om-card-logo {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.om-cl-prima {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 5px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.om-cl-reng {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 6px;
    color: var(--navy);
    line-height: 1.1;
}

.om-cl-stars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-top: 10px;
}

.om-cl-stars svg:nth-child(1) {
    width: 36px;
    height: 36px;
}

.om-cl-stars svg:nth-child(2) {
    width: 24px;
    height: 24px;
}

.om-cl-stars svg:nth-child(3) {
    width: 16px;
    height: 16px;
}

.om-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--text);
    line-height: 1.55;
}

.om-float-badge {
    position: absolute;
    bottom: -14px;
    right: 16px;
    background: #fff;
    border: 1.5px solid var(--sky);
    color: var(--blue);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(91, 191, 234, 0.2);
}

.om-text p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 14px;
}

.om-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.badge {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1.5px solid var(--border);
    color: var(--blue);
    padding: 7px 14px;
    border-radius: 50px;
    transition: border-color 0.2s, background 0.2s;
}

.badge:hover {
    border-color: var(--sky);
    background: rgba(91, 191, 234, 0.07);
}

#ydelser {
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 34px 28px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover {
    border-color: var(--sky);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 111, 181, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.sc-star-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s;
}

.sc-star-wrap svg {
    width: 22px;
    height: 22px;
    fill: var(--star-big);
    transition: transform 0.3s;
}

.service-card:hover .sc-star-wrap {
    background: var(--grad);
}

.service-card:hover .sc-star-wrap svg {
    fill: #fff;
    transform: rotate(45deg);
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
}

#hvorfor {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.promise-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 30px 22px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.promise-item:hover {
    border-color: var(--sky);
    box-shadow: 0 10px 30px rgba(26, 111, 181, 0.1);
    transform: translateY(-3px);
}

.pi-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.promise-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 8px;
}

.promise-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
}

#kontakt {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 26px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    border-color: var(--sky);
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(26, 111, 181, 0.12);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.cc-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 4px;
    transition: background 0.3s, color 0.3s;
}

.cc-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.contact-card:hover .cc-icon-wrap {
    background: var(--grad);
    color: #fff;
}

.cc-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.cc-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
    word-break: break-word;
    transition: color 0.2s;
}

a.cc-value:hover {
    color: var(--blue);
}

.contact-cta {
    margin-top: 20px;
}

.cta-strip {
    background: var(--navy);
    border-radius: 24px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 191, 234, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.csl-prima {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 5px;
    color: #fff;
}

.csl-reng {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 6px;
    color: var(--sky);
}

.cta-strip-stars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.cta-strip-stars svg:nth-child(1) {
    width: 30px;
    height: 30px;
}

.cta-strip-stars svg:nth-child(2) {
    width: 20px;
    height: 20px;
}

.cta-strip-stars svg:nth-child(3) {
    width: 13px;
    height: 13px;
}

.cta-strip p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    flex: 1;
    min-width: 200px;
}

.cta-strip .btn-primary {
    flex-shrink: 0;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-strip .btn-primary:hover {
    background: var(--sky);
    color: #fff;
    box-shadow: 0 10px 28px rgba(91, 191, 234, 0.35);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-strip {
        padding: 36px 32px;
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 24px;
    }
}

footer {
    background: var(--navy);
    text-align: center;
    padding: 60px 5vw;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.fl-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fl-prima {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 6px;
    color: #fff;
    line-height: 1;
}

.fl-reng {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 7px;
    color: var(--sky);
    line-height: 1.1;
}

.fl-stars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.fl-stars svg:nth-child(1) {
    width: 32px;
    height: 32px;
    fill: var(--star-big);
}

.fl-stars svg:nth-child(2) {
    width: 22px;
    height: 22px;
    fill: var(--star-mid);
}

.fl-stars svg:nth-child(3) {
    width: 15px;
    height: 15px;
    fill: var(--star-sml);
}

.footer-tag {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.footer-copy {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.2);
}

#modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 29, 46, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#modal-overlay.modal-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: 24px;
    padding: 44px 44px 40px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 30px 80px rgba(12, 29, 46, 0.3);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(.22, .61, .36, 1), opacity 0.35s ease;
    opacity: 0;
    max-height: 90vh;
    overflow-y: auto;
}

#modal-overlay.modal-visible .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--off);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.modal-close:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.modal-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.ml-prima {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ml-reng {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--navy);
}

.modal-stars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.modal-stars svg:nth-child(1) {
    width: 22px;
    height: 22px;
}

.modal-stars svg:nth-child(2) {
    width: 15px;
    height: 15px;
}

.modal-stars svg:nth-child(3) {
    width: 10px;
    height: 10px;
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 4px;
}

.modal-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mf-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mf-group label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.mf-group input,
.mf-group select,
.mf-group textarea {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    resize: none;
    appearance: none;
}

.mf-group input::placeholder,
.mf-group textarea::placeholder {
    color: #aac3d8;
}

.mf-group input:focus,
.mf-group select:focus,
.mf-group textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(91, 191, 234, 0.15);
}

#modal-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(91, 191, 234, 0.1);
    border: 1.5px solid var(--sky);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

.modal-success-hidden {
    display: none !important;
}

@media (max-width: 560px) {
    .modal-box {
        padding: 32px 24px 28px;
    }

    .mf-row {
        grid-template-columns: 1fr;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--off);
}

::-webkit-scrollbar-thumb {
    background: var(--sky);
    border-radius: 3px;
}

@media (max-width:1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .kontakt-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kontakt-form {
        padding: 28px;
    }
}

@media (max-width:768px) {
    nav {
        display: none;
    }

    .hero-right {
        display: none;
    }

    #hero {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}