/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #101c2c;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.eyebrow {
    color: #1a76ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2.2px;
    margin-bottom: 16px;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid #e2e8ef;
}

.nav {
    width: min(1500px, 96%);
    min-height: 82px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        auto
        minmax(260px, 1fr);

    align-items: center;

    gap: 25px;
}

.brand img {
    width: 205px;
}

.site-nav {
    display: flex;
    align-items: center;

    gap: 32px;
}

.site-nav a {
    text-decoration: none;

    color: #566375;

    font-size: 14px;
    font-weight: 800;
}

.site-nav a:hover {
    color: #101c2c;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;
}

.call-button,
.offer-button {
    padding: 11px 18px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 900;

    white-space: nowrap;
}

.call-button {
    color: #1678ff;

    border: 1px solid #cfd8e4;
}

.offer-button {
    background: #101c2c;
    color: white;
}

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 28px;
    color: #101c2c;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;

    display: grid;
    grid-template-columns: 1.12fr 0.88fr;

    background: #f7f9fc;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-copy {
    display: flex;
    align-items: center;

    padding: 90px 6vw;

    background: #ffffff;
}

.hero-inner {
    max-width: 650px;
}

.hero h1 {
    font-size: clamp(56px, 5vw, 78px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 28px;
}

.hero h1 span {
    display: block;

    color: #1678ff;

    margin-top: 8px;
}

.hero-text {
    max-width: 600px;

    color: #687688;

    font-size: 18px;

    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-call,
.hero-offer {
    display: inline-block;

    padding: 14px 23px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 900;
}

.hero-call {
    background: #1678ff;
    color: white;
}

.hero-offer {
    border: 1px solid #cfd8e4;
    color: #101c2c;
}


/* =========================
   SERVICE STRIP
========================= */


.service-strip {
    padding: 95px 0;
    background: #101c2c;
    color: white;
}

.strip-label {
    margin-bottom: 30px;

    color: #6f8fb3;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.service-list {
    border-top: 1px solid #304157;
}

.service-list a {
    position: relative;

    display: grid;
    grid-template-columns: 80px 1fr;

    align-items: center;

    padding: 24px 0;

    border-bottom: 1px solid #304157;

    text-decoration: none;
    color: white;

    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 800;

    /* De ser ikke lenger ut / oppfører seg som lenker */
    pointer-events: none;
    cursor: default;
}

.service-list a span {
    color: #2390ff;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Fjernet pilen helt */
.service-list a::after {
    display: none;
}

/* Ingen hover-effekt */
.service-list a:hover {
    color: white;
}


/* =========================
   ABOUT
========================= */

.about {
    padding: 125px 0;

    background: #ffffff;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 120px;
}

.about-heading h2 {
    max-width: 620px;

    font-size: clamp(46px, 4.5vw, 65px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.about-copy {
    max-width: 560px;

    color: #687688;

    font-size: 18px;
}

.about-copy .lead {
    color: #101c2c;

    font-size: 24px;

    line-height: 1.4;

    font-weight: 700;

    margin-bottom: 30px;
}

.about-copy p + p {
    margin-top: 22px;
}


/* =========================
   WORK FEATURE
========================= */

.work-feature {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 720px;

    background: #eef3f9;
}

.work-image {
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.work-panel {
    padding: 90px 8vw;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.work-panel h2 {
    max-width: 580px;

    font-size: clamp(44px, 4vw, 62px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.work-panel > p:not(.eyebrow) {
    max-width: 560px;

    color: #687688;

    font-size: 18px;
}

.work-values {
    margin-top: 55px;
}

.work-values div {
    display: grid;

    grid-template-columns: 70px 1fr;

    padding: 18px 0;

    border-top: 1px solid #ced8e5;
}

.work-values div:last-child {
    border-bottom: 1px solid #ced8e5;
}

.work-values span {
    color: #1678ff;

    font-size: 13px;

    font-weight: 900;
}

.work-values strong {
    font-size: 18px;
}


/* =========================
   DETAIL SECTION
========================= */

.detail-section {
    padding: 120px 0;

    background: #ffffff;
}

.detail-grid {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 100px;

    align-items: center;
}

.detail-image {
    overflow: hidden;

    border-radius: 4px;
}

.detail-image img {
    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.detail-copy h2 {
    max-width: 600px;

    font-size: clamp(42px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.detail-copy > p:not(.eyebrow) {
    max-width: 520px;

    color: #687688;

    font-size: 18px;
}

.detail-copy a {
    display: inline-block;

    margin-top: 32px;

    color: #1678ff;

    text-decoration: none;

    font-weight: 900;
}


/* =========================
   PROCESS / TIMELINE
========================= */

.process {
    padding: 125px 0;

    background: #101c2c;

    color: white;
}

.process-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 110px;
}

.process-heading {
    position: sticky;

    top: 135px;

    align-self: start;
}

.process-heading h2 {
    max-width: 480px;

    font-size: clamp(45px, 4vw, 60px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 22px;
}

.process-heading > p:not(.eyebrow) {
    color: #92a3b8;

    max-width: 420px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";

    position: absolute;

    left: 28px;

    top: 30px;
    bottom: 30px;

    width: 1px;

    background: #304157;
}

.timeline-step {
    position: relative;

    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 35px;

    padding: 0 0 70px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1678ff;

    color: white;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1px;
}

.timeline-content {
    padding-top: 5px;
}

.timeline-content h3 {
    font-size: 26px;

    margin-bottom: 10px;
}

.timeline-content p {
    max-width: 560px;

    color: #9fb0c3;

    font-size: 17px;
}


/* =========================
   CALLOUT
========================= */

.callout {
    padding: 65px 0;

    background: #1678ff;

    color: white;
}

.callout-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.callout-inner p {
    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

    opacity: 0.8;
}

.callout-inner h2 {
    max-width: 700px;

    font-size: clamp(34px, 3vw, 48px);

    line-height: 1.08;
}

.callout-actions {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}

.callout-actions a {
    padding: 13px 19px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 900;
}

.callout-actions a:first-child {
    background: white;

    color: #101c2c;
}

.callout-actions a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.55);

    color: white;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 125px 0;

    background: #f4f7fb;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.contact-intro h2 {
    max-width: 550px;

    font-size: clamp(44px, 4vw, 60px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 500px;

    color: #687688;

    font-size: 18px;
}

.contact-meta {
    margin-top: 50px;
}

.contact-meta div {
    padding: 17px 0;

    border-top: 1px solid #ccd7e3;
}

.contact-meta div:last-child {
    border-bottom: 1px solid #ccd7e3;
}

.contact-meta span {
    display: block;

    color: #8795a6;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 4px;
}

.contact-meta strong {
    font-size: 18px;
}


/* FORM */

.contact-form {
    padding: 45px;

    background: white;

    border: 1px solid #dce4ee;

    border-radius: 4px;
}

.field-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.field-row > div {
    display: flex;

    flex-direction: column;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.contact-form label {
    margin-top: 5px;

    color: #445365;

    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 14px 15px;

    border: none;

    border-bottom: 1px solid #bdc9d7;

    background: #f9fbfd;

    color: #101c2c;

    font: inherit;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #1678ff;
}

.contact-form textarea {
    min-height: 145px;

    resize: vertical;
}

.contact-form button {
    margin-top: 18px;

    align-self: flex-start;

    padding: 14px 24px;

    border: none;

    border-radius: 8px;

    background: #101c2c;

    color: white;

    font-size: 15px;

    font-weight: 900;

    cursor: pointer;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #07111f;

    color: white;

    padding-top: 70px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 55px;
}

.footer-brand img {
    width: 210px;

    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 340px;

    color: #8496aa;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-links a {
    color: #8496aa;

    text-decoration: none;
}

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 7px;

    color: #8496aa;
}

.footer-contact strong {
    color: white;

    font-size: 20px;

    margin-bottom: 6px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding: 20px 5%;

    border-top: 1px solid #19283b;

    color: #64758a;

    font-size: 13px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .nav {
        grid-template-columns: 1fr auto auto;
    }

    .site-nav {
        display: none;

        position: absolute;

        top: 75px;
        left: 3%;
        right: 3%;

        padding: 10px;

        background: white;

        border: 1px solid #dce4ee;

        box-shadow: 0 20px 50px rgba(16, 28, 44, 0.16);

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 13px;
    }

    .menu-toggle {
        display: block;
    }


    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;

        min-height: 500px;
    }

    .hero-copy {
        padding: 75px 7%;
    }


    .about-grid,
    .detail-grid,
    .process-layout,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .work-feature {
        grid-template-columns: 1fr;
    }

    .work-image {
        min-height: 520px;
    }


    .process-heading {
        position: static;
    }


    .callout-inner {
        align-items: flex-start;

        flex-direction: column;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .container {
        width: 92%;
    }


    /* HEADER */

    .nav {
        width: 94%;

        min-height: 70px;

        grid-template-columns: 1fr auto auto;

        gap: 9px;
    }

    .brand img {
        width: 145px;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        font-size: 25px;
    }


    /* HERO */

    .hero-image {
        min-height: 390px;
    }

    .hero-copy {
        padding: 58px 4%;
    }

    .hero h1 {
        font-size: clamp(43px, 12vw, 58px);

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-call,
    .hero-offer {
        text-align: center;
    }


    /* SERVICES */

    .service-strip {
        padding: 75px 0;
    }

    .service-list a {
        grid-template-columns: 50px 1fr;

        padding: 20px 35px 20px 0;

        font-size: 22px;
    }


    /* ABOUT */

    .about {
        padding: 85px 0;
    }

    .about-grid {
        gap: 35px;
    }


    /* WORK */

    .work-image {
        min-height: 390px;
    }

    .work-panel {
        padding: 75px 4%;
    }

    .work-values div {
        grid-template-columns: 55px 1fr;
    }


    /* DETAILS */

    .detail-section {
        padding: 85px 0;
    }

    .detail-grid {
        gap: 40px;
    }


    /* PROCESS */

    .process {
        padding: 90px 0;
    }

    .process-layout {
        gap: 50px;
    }

    .timeline::before {
        left: 23px;
    }

    .timeline-step {
        grid-template-columns: 48px 1fr;

        gap: 22px;

        padding-bottom: 52px;
    }

    .timeline-number {
        width: 48px;
        height: 48px;
    }

    .timeline-content h3 {
        font-size: 22px;
    }


    /* CALLOUT */

    .callout {
        padding: 55px 0;
    }

    .callout-actions {
        width: 100%;

        flex-direction: column;
    }

    .callout-actions a {
        text-align: center;
    }


    /* CONTACT */

    .contact {
        padding: 85px 0;
    }

    .contact-grid {
        gap: 45px;
    }

    .contact-form {
        padding: 25px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-form button {
        width: 100%;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 4px;

        text-align: center;
    }

}

.process-call {
    display: inline-block;
    margin-top: 32px;

    color: #3da0ff;
    text-decoration: none;

    font-weight: 900;
}

.process-call:hover {
    color: white;
}