/* =========================================================
   Pust Ren Luft — delt stilark
   Palett: dyp marine / teal / cyan / is
   Font: Sora (display) + Manrope (brødtekst)
   ========================================================= */

:root {
    /* Farger */
    --navy:      #0d3b54;
    --navy-900:  #082a3d;
    --navy-700:  #0a3349;
    --teal:      #2a9fc4;
    --teal-600:  #2389ab;
    --teal-700:  #1d7691;
    --cyan:      #7fd1e0;
    --cyan-soft: #a9e1ec;
    --ice:       #eaf6fa;
    --ice-deep:  #d8eef4;

    --ink:       #0f2935;
    --body:      #44616d;
    --muted:     #7d97a1;
    --line:      #e2eef2;

    --bg:        #ffffff;
    --bg-soft:   #f3fafc;

    --radius:    18px;
    --radius-sm: 12px;
    --radius-lg: 28px;

    --shadow-sm: 0 2px 14px rgba(13, 59, 84, 0.06);
    --shadow:    0 18px 50px -22px rgba(13, 59, 84, 0.30);
    --shadow-lg: 0 40px 80px -34px rgba(13, 59, 84, 0.42);

    --maxw: 1240px;
    --gut: clamp(20px, 5vw, 64px);

    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--body);
    background: var(--bg);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
    font-weight: 700;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--gut);
}

/* ============ Eyebrow / seksjonsoverskrift ============ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-600);
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--teal), var(--cyan));
}
.eyebrow.center { justify-content: center; }

.section-head {
    max-width: 640px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-top: 16px;
}
.section-head p {
    margin-top: 18px;
    color: var(--body);
    font-size: 17px;
}

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section.soft { background: var(--bg-soft); }

/* ============ Knapper ============ */
.btn {
    --bg: var(--navy);
    --fg: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--fg);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary { --bg: linear-gradient(120deg, var(--teal), var(--teal-700)); }
.btn--dark { --bg: var(--navy); }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ice-deep);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-700); box-shadow: none; }
.btn--light { background: #fff; color: var(--navy); }
.btn--block { width: 100%; justify-content: center; }

/* arrow shift */
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ============ Bølge-bakgrunn (subtil, animert) ============ */
.air-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.air-bg svg { position: absolute; width: 160%; left: -30%; }
.air-bg .w1 { top: 12%; opacity: .55; animation: drift 26s linear infinite; }
.air-bg .w2 { top: 34%; opacity: .4;  animation: drift 34s linear infinite reverse; }
.air-bg .w3 { top: 60%; opacity: .3;  animation: drift 44s linear infinite; }

@keyframes drift {
    from { transform: translateX(0); }
    to   { transform: translateX(-18%); }
}

/* fine linjer-tekstur som kan legges på en seksjon */
.lines-texture::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
            180deg,
            transparent 0,
            transparent 38px,
            rgba(42, 159, 196, 0.05) 39px,
            rgba(42, 159, 196, 0.05) 40px
    );
    pointer-events: none;
}

.section > .wrap { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
    .air-bg .w1, .air-bg .w2, .air-bg .w3 { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============ Topbar ============ */
.topbar {
    background: var(--navy-900);
    color: #cfe6ee;
    font-size: 13.5px;
}
.topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 44px;
    padding-block: 7px;
}
.topbar .ti { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar .ti span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .ti svg { width: 15px; height: 15px; color: var(--cyan); }
.topbar .socials { display: flex; gap: 14px; }
.topbar .socials a { color: #9fc4d2; transition: color .2s; }
.topbar .socials a:hover { color: #fff; }
.topbar .socials svg { width: 15px; height: 15px; }

/* ============ Header / nav ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 78px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand .mark {
    width: 50px; height: auto;
    display: flex; align-items: center;
    flex: none;
}
.brand .mark svg { width: 50px; height: auto; display: block; }
.brand-logo-img { height: 48px; width: auto; display: block; }
.brand-logo-img--footer { height: 52px; }
.brand small { display:block; font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); }

.nav-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
    list-style: none;
    padding: 0; margin-block: 0;
}
.nav-links a {
    display: block;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    border-radius: 9px;
    white-space: nowrap;
    transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--teal-700); background: var(--ice); }
.nav-links a.active { color: var(--teal-700); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
    align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 9px;
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s;
}
.nav-cart:hover { background: var(--ice); }
.nav-cart svg { width: 20px; height: 20px; }
.nav-cart .cart-count {
    position: absolute; top: 2px; right: 2px;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--teal); color: #fff;
    font-size: 10px; font-weight: 700;
    border-radius: 50%;
}
.nav-cart .cart-count[data-count="0"] { display: none; }

/* ============ Footer ============ */
.site-footer {
    position: relative;
    background: var(--navy-900);
    color: #b6d2dc;
    overflow: hidden;
}
.site-footer .air-bg svg path { stroke: rgba(127, 209, 224, 0.25) !important; }
.footer-cta {
    position: relative;
    z-index: 2;
    margin-top: -1px;
}
.footer-cta .card {
    background: linear-gradient(120deg, var(--teal), var(--teal-700));
    border-radius: var(--radius-lg);
    padding: clamp(34px, 5vw, 58px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(40px);
}
.footer-cta .card h2 { color: #fff; font-size: clamp(26px, 3.4vw, 40px); }
.footer-cta .card p { color: rgba(255,255,255,0.86); margin-top: 8px; }

.footer-main { position: relative; z-index: 1; padding-top: clamp(90px, 11vw, 140px); padding-bottom: 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.4fr;
    gap: 40px;
}
.footer-grid h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    letter-spacing: 0;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-grid a { color: #9fc0cc; font-size: 15px; transition: color .2s; }
.footer-grid a:hover { color: var(--cyan); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: var(--cyan); }
.footer-brand p { color: #9fc0cc; font-size: 15px; margin-top: 18px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #cfe6ee;
    transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-contact-item { margin-bottom: 16px; }
.footer-contact-item span { display: block; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 3px; }
.footer-contact-item strong { color: #fff; font-weight: 600; font-size: 15px; font-family: var(--font-body); }
.footer-bottom {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-block: 22px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 14px; color: #84a4b0;
}
.footer-bottom-menu { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footer-bottom-menu li:not(:last-child)::after { content: "·"; margin-left: 8px; }
.footer-bottom-menu a { color: inherit; }
.footer-bottom-menu a:hover { color: #fff; }

/* ============ Generelle kort ============ */
.card-surface {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* placeholder-bilde */
.ph {
    position: relative;
    background:
            radial-gradient(120% 120% at 20% 10%, rgba(127,209,224,.35), transparent 55%),
            linear-gradient(135deg, #dbeef5, #c4e4ee);
    overflow: hidden;
}
.ph::after {
    content: attr(data-label);
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: var(--font-body);
    font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(13,59,84,.4);
}
.ph svg.air-mark { position: absolute; inset: 0; margin: auto; width: 46%; height: 46%; opacity: .5; color: var(--navy); }

/* ekte foto i samme ramme som plassholderne */
img.hero-img, img.about-img, img.svc-img { width: 100%; object-fit: cover; display: block; }
iframe.map { width: 100%; height: 100%; border: 0; display: block; }
img.team-photo { width: 100%; aspect-ratio: 1/1.1; object-fit: cover; display: block; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 18px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-block: clamp(48px, 7vw, 92px); background: linear-gradient(180deg, var(--ice) 0%, #fff 70%); }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
}
.hero-copy h1 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    margin-top: 20px;
}
.hero-symbol {
    display: block;
    width: clamp(64px, 8vw, 92px);
    height: auto;
    margin-bottom: 6px;
}
.hero-sub {
    display: block;
    margin-top: 14px;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.18;
    background: linear-gradient(110deg, var(--teal), var(--navy));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}.grad {
     background: linear-gradient(110deg, var(--teal), var(--navy));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }
.hero-copy > p {
    margin-top: 22px;
    font-size: clamp(17px, 1.4vw, 19px);
    max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.avatars { display: flex; }
.avatars .av {
    width: 42px; height: 42px; border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    box-shadow: var(--shadow-sm);
}
.avatars .av:first-child { margin-left: 0; }
.hero-trust .stars { color: #f5b400; letter-spacing: 2px; font-size: 15px; }
.hero-trust span { font-size: 14px; color: var(--body); }

.hero-visual { position: relative; }
.hero-img {
    aspect-ratio: 4 / 4.4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.float-card {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    background: #fff;
    padding: 13px 18px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.float-card .ic {
    width: 40px; height: 40px; flex: none;
    display: grid; place-items: center;
    border-radius: 11px;
    background: var(--ice);
    color: var(--teal-700);
}
.float-card .ic.green { background: #e3f6ee; color: #1f9e6f; }
.float-card .ic svg { width: 20px; height: 20px; }
.float-card strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--ink); }
.float-card span { font-size: 13px; color: var(--muted); }
.fc-1 { bottom: 9%; left: -7%; animation: bob 6s ease-in-out infinite; }
.fc-2 { top: 8%; right: -6%; animation: bob 7s ease-in-out infinite 0.6s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .fc-1, .fc-2 { animation: none; } }

/* =========================================================
   MERKER
   ========================================================= */
.brands { padding-block: 44px; border-bottom: 1px solid var(--line); }
.brands-title { text-align: center; font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-bottom: 30px; }
.brands-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.brand-logo { height: 58px; display: flex; align-items: center; justify-content: center; padding: 4px; }
.brand-logo img { max-height: 46px; max-width: 100%; width: auto; object-fit: contain; opacity: .68; transition: opacity .25s ease, transform .25s ease; }
.brand-logo img:hover { opacity: 1; transform: translateY(-2px); }

/* =========================================================
   TJENESTER
   ========================================================= */
.services-top {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 30px; margin-bottom: 46px; flex-wrap: wrap;
}
.services-intro { max-width: 380px; color: var(--body); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.s-img { aspect-ratio: 16 / 11; }
.s-body { padding: 26px 26px 30px; position: relative; }
.s-num {
    position: absolute; top: -26px; right: 22px;
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px;
    box-shadow: var(--shadow);
}
.s-body h3 { font-size: 22px; margin-bottom: 12px; }
.s-body p { font-size: 15.5px; }
.s-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 18px;
    font-weight: 700; font-size: 14px; color: var(--teal-700);
}
.s-link svg { width: 16px; height: 16px; transition: transform .2s; }
.s-link:hover svg { transform: translateX(4px); }

/* =========================================================
   HVORFOR OSS
   ========================================================= */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 52px;
}
.why-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.why-ic {
    width: 56px; height: 56px; border-radius: 15px;
    display: grid; place-items: center;
    background: var(--ice); color: var(--teal-700);
    margin-bottom: 20px;
}
.why-ic svg, .why-ic img { width: 27px; height: 27px; object-fit: contain; }
.why-item h4 { font-size: 19px; margin-bottom: 10px; }
.why-item p { font-size: 15px; }
.why-grid--4 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-inline: auto; margin-top: 46px; }
@media (max-width: 620px) { .why-grid--4 { grid-template-columns: 1fr; } }
.why-image { max-width: 860px; margin: 40px auto 0; }
.why-image img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }

/* =========================================================
   OM / STATS
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.about-visual { position: relative; }
.about-img { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); height: auto; }
.stat-card {
    position: absolute; bottom: -28px; right: -10px;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 22px 26px; display: flex; gap: 30px; border: 1px solid var(--line);
}
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--teal-700); line-height: 1; }
.stat span { font-size: 13px; color: var(--muted); margin-top: 6px; display: block; }
.about-copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 16px; }
.about-copy > p { margin-top: 20px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 13px; font-weight: 600; color: var(--ink); }
.check-list svg { width: 17px; height: 17px; flex: none; color: #fff; background: var(--teal); border-radius: 50%; padding: 5px; box-sizing: content-box; }

/* Ventilasjon+ seksjon */
.ventplus-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 5vw, 64px); align-items: stretch; }
.ventplus-visual { display: flex; }
.ventplus-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.ventplus-copy .brandline { display: flex; align-items: center; gap: 10px; }
.ventplus-copy h2 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 6px; }
.ventplus-copy h2 .plus { color: var(--teal); }
.ventplus-copy > p { margin-top: 18px; max-width: 540px; }
.ventplus-copy .lead-hi { color: var(--teal-700); font-weight: 700; }
.fordeler-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); margin: 30px 0 6px; }
.fordeler-list { list-style: none; padding: 0; margin: 0; }
.fordeler-list li { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fordeler-list li:last-child { border-bottom: 0; }
.fordeler-list .f-ic { width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff; }
.fordeler-list .f-ic svg, .fordeler-list .f-ic img { width: 23px; height: 23px; object-fit: contain; }
.fordeler-list span { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }

/* speilvendt variant + rik fordels-liste */
.ventplus-grid--flip { grid-template-columns: 1.15fr 0.85fr; }
.ventplus-grid--flip .ventplus-copy { order: 1; }
.ventplus-grid--flip .ventplus-visual { order: 2; }
.fordeler-list--rich li { align-items: flex-start; padding: 11px 0; gap: 13px; }
.fordeler-list--rich .f-ic { width: 40px; height: 40px; border-radius: 11px; margin-top: 2px; }
.fordeler-list--rich .f-ic svg, .fordeler-list--rich .f-ic img { width: 19px; height: 19px; object-fit: contain; }
.fordeler-list--rich .f-txt { display: flex; flex-direction: column; gap: 2px; }
.fordeler-list--rich .f-txt strong { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.fordeler-list--rich .f-txt span { font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: var(--body); line-height: 1.45; }
.ventplus-btn { margin-top: 28px; }
@media (max-width: 900px) { .ventplus-grid { grid-template-columns: 1fr; } .ventplus-visual { max-width: 460px; } .ventplus-img { height: auto; } .ventplus-grid--flip { grid-template-columns: 1fr; } .ventplus-grid--flip .ventplus-visual { order: -1; } }

/* =========================================================
   OMTALER
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 28px; margin: 0; box-shadow: var(--shadow-sm);
}
.t-stars { color: #f5b400; letter-spacing: 2px; margin-bottom: 16px; }
.testi blockquote { margin: 0; font-size: 16px; color: var(--ink); line-height: 1.65; }
.testi figcaption { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.t-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--teal)); flex: none; }
.testi figcaption strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 15px; }
.testi figcaption small { color: var(--muted); font-size: 13px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.faq-intro h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 16px; }
.faq-intro p { margin: 18px 0 28px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q {
    width: 100%; text-align: left; cursor: pointer;
    background: none; border: 0;
    font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink);
    padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-ic { position: relative; width: 18px; height: 18px; flex: none; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--teal-700); border-radius: 2px; transition: transform .25s; }
.faq-ic::before { top: 8px; left: 0; width: 18px; height: 2.5px; }
.faq-ic::after { left: 8px; top: 0; width: 2.5px; height: 18px; }
.faq-item.open .faq-ic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { padding: 0 24px 24px; font-size: 15.5px; }

/* =========================================================
   BLOGG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.b-img { aspect-ratio: 16 / 10; }
.b-body { padding: 24px 26px 28px; }
.b-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-700); background: var(--ice); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.b-body h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.b-body p { font-size: 15px; }
.b-body .s-link { margin-top: 16px; }

/* =========================================================
   PRODUKTER
   ========================================================= */
.svc-banner {
    display: flex; align-items: center; gap: 14px;
    background: var(--ice); border-radius: var(--radius-sm);
    padding: 16px 22px; margin-top: 52px;
}
.svc-banner-icon {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; flex: none;
    border-radius: 50%; color: var(--teal-700);
}
.svc-banner-icon svg { width: 22px; height: 22px; }
.svc-banner p { color: var(--teal-700); font-weight: 700; font-size: 15px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 26px; }
.product-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .p-img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; background: var(--ice); display: block; height: auto; }
.product-body { padding: 28px 28px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 23px; margin-bottom: 10px; }
.product-body .p-desc { font-size: 15.5px; }
.product-check { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.product-check li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.product-check svg { width: 15px; height: 15px; flex: none; color: #fff; background: var(--teal); border-radius: 50%; padding: 4px; box-sizing: content-box; }
.price-row {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line);
}
.price { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); line-height: 1; }
.price small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: var(--muted); letter-spacing: .02em; margin-top: 5px; }
.product-note { font-size: 13px; color: var(--muted); margin-top: 16px; line-height: 1.5; }

/* =========================================================
   Responsiv
   ========================================================= */
@media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 480px; }
    .faq-grid { grid-template-columns: 1fr; }
    .services-grid, .why-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
    .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .services-grid, .why-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
    .brands-row { grid-template-columns: repeat(3, 1fr); }
    .fc-1 { left: 2%; } .fc-2 { right: 2%; }
    .stat-card { right: 0; left: 0; justify-content: center; }
}
@media (max-width: 860px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; margin-left: 0; }
    .nav-cart { margin-left: auto; }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 78px; left: 0; right: 0;
        flex-direction: column;
        background: #fff;
        padding: 14px var(--gut) 22px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        gap: 2px;
    }
    .topbar .ti span.hide-sm { display: none; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    body { font-size: 16px; }
}

/* =========================================================
   UNDERSIDER — sidebanner
   ========================================================= */
.page-hero {
    position: relative;
    background: linear-gradient(180deg, var(--ice) 0%, #fff 100%);
    padding-block: clamp(50px, 7vw, 86px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.page-hero .air-bg svg { width: 160%; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.breadcrumb a { color: var(--teal-700); }
.breadcrumb span { color: var(--ice-deep); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; max-width: 760px; }
.page-hero p { margin-top: 18px; max-width: 560px; font-size: 18px; }

/* =========================================================
   ARBEID — før / etter
   ========================================================= */
.ba-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 32px);
    max-width: 900px;
    margin: 0 auto 14px;
}
.ba-col-label {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 12px 18px; border-radius: 999px;
}
.ba-col-label.before { background: var(--ice); color: var(--navy); }
.ba-col-label.after { background: linear-gradient(120deg, var(--teal), var(--teal-700)); color: #fff; }
.ba-col-label svg { width: 17px; height: 17px; }

.ba-case { max-width: 900px; margin: 0 auto; }
.ba-case + .ba-case { margin-top: clamp(30px, 5vw, 54px); }
.ba-case-title {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink);
    margin-bottom: 16px;
}
.ba-case-title .n {
    width: 34px; height: 34px; flex: none; border-radius: 10px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: #fff; font-size: 15px; font-weight: 700;
}
.ba-case-title small { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--muted); margin-left: auto; }
.ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 2.4vw, 24px);
    align-items: stretch;
}
.ba-slot {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    background: var(--ice);
}
.ba-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-slot .tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--font-body); font-weight: 700; font-size: 12px;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 13px; border-radius: 999px;
    backdrop-filter: blur(6px);
}
.ba-slot .tag.before { background: rgba(13,59,84,.72); color: #fff; }
.ba-slot .tag.after { background: rgba(42,159,196,.9); color: #fff; }
.ba-slot .ph { position: absolute; inset: 0; }

@media (max-width: 620px) {
    .ba-header { display: none; }
    .ba-pair { grid-template-columns: 1fr; }
}

/* =========================================================
   OM OSS — feature-strip, video, intro-quote
   ========================================================= */
.intro-quote {
    margin-top: 26px;
    padding: 22px 26px;
    border-left: 4px solid var(--teal);
    background: var(--ice);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.intro-quote strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 18px; margin-bottom: 4px; }
.intro-quote span { font-size: 15.5px; color: var(--body); }

.feature-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 54px;
    padding: 30px 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.feature-strip .fs-item {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
    padding: 8px 14px;
    position: relative;
}
.feature-strip .fs-item + .fs-item::before {
    content: ""; position: absolute; left: 0; top: 12px; bottom: 12px; width: 1px; background: var(--line);
}
.feature-strip .fs-ic {
    width: 52px; height: 52px; border-radius: 14px; flex: none;
    display: grid; place-items: center;
    background: var(--ice); color: var(--teal-700);
}
.feature-strip .fs-ic svg, .feature-strip .fs-ic img { width: 25px; height: 25px; object-fit: contain; }
.feature-strip .fs-item span {
    font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink);
}

.video-block { max-width: 940px; margin: 0 auto; }
.video-frame {
    position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy-900);
}
.video-frame video, .video-frame iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.video-frame .video-ph {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
    background:
            radial-gradient(120% 120% at 30% 20%, rgba(127,209,224,.28), transparent 55%),
            linear-gradient(135deg, #0d3b54, #082a3d);
    color: #fff; text-align: center; padding: 24px;
}
.video-frame .play-btn {
    width: 78px; height: 78px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,.5);
}
.video-frame .play-btn svg { width: 30px; height: 30px; margin-left: 4px; color: #fff; }
.video-frame .video-ph p { font-size: 15px; color: #bcdcea; max-width: 360px; }
.video-frame .video-ph strong { font-family: var(--font-display); font-size: 20px; color: #fff; }

@media (max-width: 760px) {
    .feature-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .feature-strip .fs-item + .fs-item::before { display: none; }
}
@media (max-width: 420px) {
    .feature-strip { grid-template-columns: 1fr; }
}

/* tjeneste-rader (vekslende) */
.svc-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px);
    align-items: center;
}
.svc-row + .svc-row { margin-top: clamp(48px, 7vw, 96px); }
.svc-row .ph { aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.svc-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.svc-row.flip .svc-text { order: 2; }
.svc-tag {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-700);
    background: var(--ice); padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.svc-text h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; }
.svc-features { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 13px; }
.svc-features li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 15.5px; }
.svc-features svg { width: 16px; height: 16px; flex: none; color: #fff; background: var(--teal); border-radius: 50%; padding: 5px; box-sizing: content-box; }

/* prosess */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.process-step { position: relative; padding-top: 8px; }
.process-step .pnum {
    width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 20px;
}
.process-step h4 { font-size: 19px; margin-bottom: 10px; }
.process-step p { font-size: 15px; }
.process-step:not(:last-child)::after {
    content: ""; position: absolute; top: 35px; left: 70px; right: -12px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--ice-deep) 0 6px, transparent 6px 12px);
}

/* verdier */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.values-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .values-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .values-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .values-grid--5 { grid-template-columns: 1fr; } }
.value-card { padding: 32px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.value-card .vic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: var(--ice); color: var(--teal-700); margin-bottom: 20px; }
.value-card .vic svg, .value-card .vic img { width: 27px; height: 27px; object-fit: contain; }
.value-card h4 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 15px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.team-card { text-align: center; }
.team-card .ph { aspect-ratio: 1/1.1; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.team-card h4 { font-size: 18px; margin-bottom: 3px; }
.team-card span { font-size: 14px; color: var(--teal-700); font-weight: 600; }

/* statband */
.statband { background: var(--navy); position: relative; overflow: hidden; color: #fff; }
.statband .air-bg svg path { stroke: rgba(127,209,224,.3) !important; }
.statband .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.statband .sb { text-align: center; }
.statband .sb strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 52px); color: #fff; line-height: 1; }
.statband .sb span { display: block; margin-top: 10px; color: #a9d2de; font-size: 15px; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { padding: 30px 28px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.contact-card .cic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--ice); color: var(--teal-700); margin-bottom: 18px; }
.contact-card .cic svg, .contact-card .cic img { width: 24px; height: 24px; object-fit: contain; }
.contact-card h4 { font-size: 18px; margin-bottom: 8px; }
.contact-card p { font-size: 15px; }
.contact-card a { color: var(--teal-700); font-weight: 600; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
    font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--bg-soft);
    transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,159,196,.12); background: #fff;
}
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.contact-form .wpcf7-response-output { font-family: var(--font-body); font-size: 15px; line-height: 1.5; margin: 20px 0 !important; padding: 12px 16px !important; border-radius: 12px; }
.contact-form .wpcf7-not-valid-tip { font-size: 15px !important; }
.contact-form .wpcf7-spinner { display: none !important; }
.contact-side .map { aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 26px; overflow: hidden; }
.contact-side .info-list { display: grid; gap: 18px; }
.contact-side .info-item { display: flex; gap: 15px; align-items: flex-start; }
.contact-side .info-item .ii { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--ice); color: var(--teal-700); }
.contact-side .info-item .ii svg, .contact-side .info-item .ii img { width: 21px; height: 21px; object-fit: contain; }
.contact-side .info-item strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 15px; margin-bottom: 2px; }
.contact-side .info-item span { font-size: 14.5px; color: var(--body); }
.form-success { display: none; padding: 16px 18px; background: #e3f6ee; color: #1a7a55; border-radius: 12px; font-weight: 600; font-size: 15px; margin-bottom: 20px; }
.form-success.show { display: block; }

@media (max-width: 980px) {
    .svc-row { grid-template-columns: 1fr; }
    .svc-row.flip .svc-text { order: 0; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step::after { display: none; }
    .values-grid, .team-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
    .statband .wrap { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .values-grid, .team-grid, .contact-cards, .process-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .statband .wrap { grid-template-columns: 1fr 1fr; }
}

/* ============ WooCommerce Cart-blokk ============ */
.wp-block-woocommerce-cart {
    font-family: var(--font-body);
    color: var(--body);
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gut);
    padding-block: clamp(32px, 5vw, 56px);
}
.wp-block-woocommerce-cart h1,
.wp-block-woocommerce-cart h2,
.wp-block-woocommerce-cart h3 {
    font-family: var(--font-display);
    color: var(--ink);
}

/* Produktnavn og -bilde skal ikke være klikkbare lenker (går uansett bare til forsiden) */
.wc-block-components-product-name {
    color: var(--ink) !important;
    text-decoration: none !important;
    pointer-events: none;
    cursor: default;
}
.wc-block-cart-item__image,
.wc-block-cart-item__image a {
    pointer-events: none;
    cursor: default;
}

/* "Fortsett til betaling"-knappen i sidebaren, i samme stil som resten av knappene */
.wc-block-cart__submit-button,
.wp-block-woocommerce-cart .wp-block-button__link {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    background: linear-gradient(120deg, var(--teal), var(--teal-700)) !important;
    color: #fff !important;
    border-radius: 999px !important;
    border: 0 !important;
    padding: 15px 26px !important;
    transition: transform .25s ease, box-shadow .25s ease;
}
.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-cart .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============ WooCommerce Checkout-blokk ============ */
.wp-block-woocommerce-checkout {
    font-family: var(--font-body);
    color: var(--body);
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gut);
    padding-block: clamp(32px, 5vw, 56px);
}
.wp-block-woocommerce-checkout h1,
.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-checkout h3 {
    font-family: var(--font-display);
    color: var(--ink);
}

/* Skjemafelter i samme stil som kontaktskjemaet */
.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-combobox input,
.wp-block-woocommerce-checkout select {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--ink) !important;
    border: 1.5px solid var(--line) !important;
    border-radius: 12px !important;
    background: var(--bg-soft) !important;
    transition: border-color .2s, box-shadow .2s;
}
.wc-block-components-text-input input:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-components-combobox input:focus {
    outline: none !important;
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 4px rgba(42,159,196,.12) !important;
    background: #fff !important;
}
.wc-block-components-text-input label,
.wp-block-woocommerce-checkout label {
    font-family: var(--font-body);
    color: var(--ink);
}

/* "Bestill"-knappen i samme stil som resten av knappene */
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-checkout .wp-block-button__link {
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    background: linear-gradient(120deg, var(--teal), var(--teal-700)) !important;
    color: #fff !important;
    border-radius: 999px !important;
    border: 0 !important;
    padding: 15px 26px !important;
    transition: transform .25s ease, box-shadow .25s ease;
}
.wc-block-components-checkout-place-order-button:hover,
.wp-block-woocommerce-checkout .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Prisene i handlekurv og "Order summary" er for store som standard */
.wp-block-woocommerce-cart .wc-block-components-formatted-money-amount,
.wp-block-woocommerce-checkout .wc-block-components-formatted-money-amount,
.wc-block-components-order-summary-item__total-price {
    font-size: 16px !important;
    font-weight: 700 !important;
}

body.woocommerce-order-received .woocommerce-order {
	width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: var(--gut);
	padding-block: clamp(50px, 7vw, 86px);
}