:root{
    --tesvik-primary:#0b3b78;
    --tesvik-secondary:#ff7a00;
    --tesvik-dark:#071a2f;
    --tesvik-text:#1d2939;
    --tesvik-muted:#667085;
    --tesvik-border:#dbe4ee;
    --tesvik-bg:#f4f7fb;
    --tesvik-white:#ffffff;
    --tesvik-success:#0f9d58;
    --tesvik-danger:#d92d20;
    --tesvik-shadow:0 15px 40px rgba(15, 23, 42, 0.08);
    --tesvik-radius:24px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:#fff;
    color:var(--tesvik-text);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.tesvik-page{
    width:100%;
    overflow:hidden;
}

.tesvik-container{
    width:min(1280px, calc(100% - 32px));
    margin:auto;
}

/* HERO */

.tesvik-hero{
    position:relative;
    padding:80px 0;
    background:
    radial-gradient(circle at top left, rgba(255,122,0,.15), transparent 30%),
    linear-gradient(135deg,#071a2f 0%, #0b3b78 100%);
    overflow:hidden;
}

.tesvik-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:40px 40px;
    opacity:.35;
}

.tesvik-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.tesvik-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:24px;
    backdrop-filter:blur(10px);
}

.tesvik-hero-content h1{
    color:#fff;
    font-size:clamp(2.4rem,5vw,4.3rem);
    line-height:1.08;
    font-weight:900;
    margin-bottom:24px;
    letter-spacing:-1px;
}

.tesvik-hero-content p{
    color:rgba(255,255,255,.88);
    font-size:1.08rem;
    line-height:1.9;
    max-width:720px;
}

.tesvik-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:34px;
}

.tesvik-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:0 28px;
    border-radius:18px;
    font-weight:800;
    transition:.3s ease;
}

.tesvik-btn.primary{
    background:var(--tesvik-secondary);
    color:#fff;
    box-shadow:0 12px 35px rgba(255,122,0,.35);
}

.tesvik-btn.primary:hover{
    transform:translateY(-3px);
}

.tesvik-btn.secondary{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    backdrop-filter:blur(12px);
}

.tesvik-btn.secondary:hover{
    background:rgba(255,255,255,.14);
}

.tesvik-hero-note{
    margin-top:28px;
    padding:20px;
    border-radius:20px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    line-height:1.8;
    font-size:.96rem;
    backdrop-filter:blur(10px);
}

.tesvik-hero-image{
    position:relative;
}

.tesvik-hero-image img{
    width:100%;
    border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
    object-fit:cover;
}

/* SECTION */

.tesvik-info,
.tesvik-content,
.tesvik-faq{
    padding:90px 0;
}

.tesvik-section-head{
    text-align:center;
    max-width:860px;
    margin:0 auto 60px;
}

.tesvik-section-head span{
    display:inline-block;
    margin-bottom:14px;
    color:var(--tesvik-secondary);
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.tesvik-section-head h2{
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.15;
    margin-bottom:18px;
    color:var(--tesvik-dark);
    font-weight:900;
}

.tesvik-section-head p{
    color:var(--tesvik-muted);
    line-height:1.9;
    font-size:1.05rem;
}

/* CARDS */

.tesvik-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.tesvik-cards article{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--tesvik-border);
    box-shadow:var(--tesvik-shadow);
    transition:.35s ease;
}

.tesvik-cards article:hover{
    transform:translateY(-8px);
}

.tesvik-cards img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.tesvik-cards article h3{
    font-size:1.35rem;
    padding:26px 26px 10px;
    color:var(--tesvik-dark);
    font-weight:800;
}

.tesvik-cards article p{
    padding:0 26px 28px;
    color:var(--tesvik-muted);
    line-height:1.8;
}

/* CALCULATOR */

.tesvik-calculator-section{
    padding:90px 0;
    background:var(--tesvik-bg);
}

.tesvik-calc-grid{
    display:grid;
    grid-template-columns:1fr .92fr;
    gap:32px;
    align-items:start;
}

.tesvik-form-card,
.tesvik-result-card{
    background:#fff;
    border-radius:32px;
    padding:40px;
    border:1px solid var(--tesvik-border);
    box-shadow:var(--tesvik-shadow);
}

.tesvik-mini-title{
    display:inline-block;
    margin-bottom:16px;
    color:var(--tesvik-secondary);
    font-size:.9rem;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.tesvik-form-card h2,
.tesvik-result-card h2{
    font-size:2rem;
    line-height:1.2;
    margin-bottom:30px;
    color:var(--tesvik-dark);
    font-weight:900;
}

.tesvik-field{
    margin-bottom:22px;
}

.tesvik-field label{
    display:block;
    margin-bottom:10px;
    font-weight:700;
    color:var(--tesvik-dark);
}

.tesvik-field input,
.tesvik-field select{
    width:100%;
    height:60px;
    border-radius:18px;
    border:1px solid var(--tesvik-border);
    background:#fff;
    padding:0 18px;
    font-size:1rem;
    color:var(--tesvik-text);
    transition:.25s ease;
}

.tesvik-field input:focus,
.tesvik-field select:focus{
    outline:none;
    border-color:var(--tesvik-primary);
    box-shadow:0 0 0 4px rgba(11,59,120,.08);
}

.tesvik-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.tesvik-submit{
    width:100%;
    min-height:64px;
    border:none;
    border-radius:20px;
    background:linear-gradient(135deg,var(--tesvik-primary),#1252a3);
    color:#fff;
    font-size:1.05rem;
    font-weight:900;
    cursor:pointer;
    transition:.3s ease;
    margin-top:10px;
    box-shadow:0 20px 40px rgba(11,59,120,.25);
}

.tesvik-submit:hover{
    transform:translateY(-3px);
}

.tesvik-disclaimer{
    margin-top:22px;
    color:var(--tesvik-muted);
    font-size:.92rem;
    line-height:1.8;
}

/* RESULTS */

.tesvik-status{
    background:#f8fafc;
    border:1px solid var(--tesvik-border);
    padding:18px;
    border-radius:18px;
    margin-bottom:24px;
    line-height:1.7;
    font-weight:600;
}

.tesvik-result-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.tesvik-result-list div{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:20px;
    border-radius:20px;
    background:#f8fbff;
    border:1px solid #e3edf8;
}

.tesvik-result-list span{
    color:var(--tesvik-muted);
    line-height:1.6;
}

.tesvik-result-list strong{
    font-size:1.15rem;
    color:var(--tesvik-dark);
    font-weight:900;
    text-align:right;
}

.tesvik-warning{
    margin-top:26px;
    padding:20px;
    border-radius:18px;
    background:#fff8f2;
    border:1px solid #ffd8b2;
    color:#8b5e1a;
    line-height:1.8;
}

.tesvik-whatsapp{
    margin-top:28px;
    width:100%;
    min-height:58px;
    border-radius:18px;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    transition:.3s ease;
}

.tesvik-whatsapp:hover{
    transform:translateY(-3px);
}

/* CONTENT */

.tesvik-content-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.tesvik-content article{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--tesvik-border);
    box-shadow:var(--tesvik-shadow);
}

.tesvik-content article img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.tesvik-content article h2{
    padding:28px 28px 16px;
    font-size:1.8rem;
    line-height:1.3;
    color:var(--tesvik-dark);
    font-weight:900;
}

.tesvik-content article p{
    padding:0 28px 20px;
    line-height:1.9;
    color:var(--tesvik-muted);
}

/* FAQ */

.tesvik-faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
    max-width:980px;
    margin:auto;
}

.tesvik-faq-list details{
    background:#fff;
    border-radius:22px;
    border:1px solid var(--tesvik-border);
    padding:24px 26px;
    box-shadow:var(--tesvik-shadow);
}

.tesvik-faq-list summary{
    cursor:pointer;
    list-style:none;
    font-size:1.08rem;
    font-weight:800;
    color:var(--tesvik-dark);
}

.tesvik-faq-list p{
    margin-top:18px;
    line-height:1.9;
    color:var(--tesvik-muted);
}

/* CTA */

.tesvik-cta{
    padding:0 0 100px;
}

.tesvik-cta .tesvik-container{
    background:linear-gradient(135deg,#071a2f,#0b3b78);
    border-radius:36px;
    padding:40px;
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:40px;
    align-items:center;
    overflow:hidden;
    position:relative;
}

.tesvik-cta img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
}

.tesvik-cta span{
    display:inline-block;
    margin-bottom:16px;
    color:#ffb067;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.tesvik-cta h2{
    color:#fff;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.15;
    margin-bottom:22px;
    font-weight:900;
}

.tesvik-cta p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:30px;
    font-size:1.03rem;
}

.tesvik-cta a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:0 28px;
    border-radius:18px;
    background:var(--tesvik-secondary);
    color:#fff;
    font-weight:900;
    transition:.3s ease;
}

.tesvik-cta a:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media (max-width:1100px){

    .tesvik-hero-grid,
    .tesvik-calc-grid,
    .tesvik-content-grid,
    .tesvik-cta .tesvik-container{
        grid-template-columns:1fr;
    }

    .tesvik-hero-image{
        order:-1;
    }

    .tesvik-cards{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .tesvik-hero{
        padding:60px 0;
    }

    .tesvik-info,
    .tesvik-content,
    .tesvik-faq,
    .tesvik-calculator-section{
        padding:70px 0;
    }

    .tesvik-form-card,
    .tesvik-result-card{
        padding:26px;
        border-radius:24px;
    }

    .tesvik-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .tesvik-hero-content h1{
        font-size:2.3rem;
    }

    .tesvik-section-head h2,
    .tesvik-form-card h2,
    .tesvik-result-card h2,
    .tesvik-content article h2{
        font-size:1.8rem;
    }

    .tesvik-cards img,
    .tesvik-content article img{
        height:220px;
    }

    .tesvik-cta .tesvik-container{
        padding:26px;
        border-radius:28px;
    }

    .tesvik-result-list div{
        flex-direction:column;
        align-items:flex-start;
    }

    .tesvik-result-list strong{
        text-align:left;
    }
}

@media (max-width:480px){

    .tesvik-container{
        width:min(100% - 20px, 1280px);
    }

    .tesvik-hero-content h1{
        font-size:2rem;
    }

    .tesvik-btn,
    .tesvik-submit,
    .tesvik-whatsapp{
        width:100%;
    }

    .tesvik-hero-actions{
        flex-direction:column;
    }
}