/* =========================================================
   TØRSLEFF – /tm-no-tm-no/ (isolert)
   Matcher layouten i skjermbildene
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --gray-top: #dedada;
    --gray-mid: #bfb9b8;
    --gray-section: #a9a9a9;
    --pink: #e06575;
    --pink-hover: #f08a97;
    --pink-bg: #f2b5bc;

    --text-strong: rgba(0, 0, 0, .78);
    --text-body: rgba(0, 0, 0, .62);
    --shadow: 0 2px 0 rgba(0, 0, 0, .12);
}

body.tm-method {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #ffffff;
    color: var(--text-strong);
}

.tm-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* =========================================================
   TOP STRIP (logo)
   ========================================================= */
.wix-top {
    background: var(--gray-top);
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.wix-logo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 16px 12px;
    display: flex;
    justify-content: flex-start;
}

.wix-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

/* =========================================================
   HERO
   ========================================================= */
.tm-hero {
    background: #ffffff;
    padding: 34px 0 22px;
}

.tm-hero-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 70px;
    align-items: start;
}

.tm-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.tm-hero-text h1 {
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -0.3px;
    font-size: clamp(34px, 1.7vw, 54px);
    line-height: 1.08;
    color: var(--text-strong);
}

.tm-hero-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-body);
}

/* =========================================================
   LEAD (midtstilt tekst)
   ========================================================= */
.tm-lead {
    background: #ffffff;
    padding: 54px 0 40px;
}

.tm-lead-inner {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.tm-lead-inner p {
    margin: 0;
    font-size: 28px;
    line-height: 1.45;
    color: var(--text-body);
    letter-spacing: -0.1px;
}

/* =========================================================
   LINJE (midtstilt)
   ========================================================= */
.tm-line {
    background: #ffffff;
    padding: 22px 0 34px;
}

.tm-line-inner {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.tm-line-inner p {
    margin: 0;
    font-size: 26px;
    line-height: 1.45;
    color: rgba(0, 0, 0, .55);
}

/* =========================================================
   GRÅ SEKSJON + CTA-KNAPPER
   ========================================================= */
.tm-gray {
    background: var(--gray-section);
    padding: 54px 0 44px;
}

.tm-gray-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: start;
}

.tm-gray-text h2 {
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    font-size: clamp(34px, 1.4vw, 52px);
    line-height: 1.06;
    color: var(--text-strong);
}

.tm-gray-text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(0, 0, 0, .55);
}

.tm-gray-img {
    width: 100%;
    height: auto;
    display: block;
    background: rgba(255, 255, 255, .2);
}

/* CTA row */
.tm-cta-row {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
}

.tm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: var(--shadow);
    font-weight: 500;
    font-size: 20px;
}

.tm-cta:hover {
    background: var(--pink-hover);
}

/* =========================================================
   ROSA SITATBLOKK
   ========================================================= */
.tm-pink {
    background: var(--pink-bg);
    padding: 60px 0 70px;
}

.tm-pink-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.tm-pink-lead {
    margin: 0 0 14px;
    font-size: 18px;
    color: rgba(0, 0, 0, .55);
}

.tm-quote {
    margin: 0;
    font-size: 34px;
    line-height: 1.35;
    color: rgba(0, 0, 0, .55);
    letter-spacing: -0.2px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1020px) {
    .tm-hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tm-gray-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tm-lead-inner p {
        font-size: 22px;
    }

    .tm-line-inner p {
        font-size: 22px;
    }

    .tm-quote {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .tm-cta {
        width: 100%;
        max-width: 360px;
    }
}