/* ============================================
   FRISØRØKONOMEN – LANDINGSSIDE
   Hagland Finans
   ============================================ */

/* --- VARIABLER --- */
:root {
    --fo-gold:        #c8a96e;
    --fo-gold-light:  #e8d5b0;
    --fo-cream:       #f5efe4;
    --fo-cream-dark:  #ede3d3;
    --fo-dark:        #2a2422;
    --fo-dark-mid:    #3d3330;
    --fo-text:        #3a3330;
    --fo-text-light:  #7a6e68;
    --fo-white:       #ffffff;

    --fo-font-display: 'Cormorant Garamond', Georgia, serif;
    --fo-font-body:    'Jost', sans-serif;

    --fo-max-width: 1100px;
    --fo-section-pad: 100px 24px;
}

/* --- RESET / BASE --- */
.frisorokonomen-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.frisorokonomen-page {
    font-family: var(--fo-font-body);
    color: var(--fo-text);
    background: var(--fo-cream);
    -webkit-font-smoothing: antialiased;
}

/* --- CONTAINER --- */
.fo-container {
    max-width: var(--fo-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- LABELS --- */
.fo-label {
    display: block;
    font-family: var(--fo-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fo-gold);
    margin-bottom: 16px;
}

.fo-label--light {
    color: var(--fo-gold-light);
}

/* --- HEADINGS --- */
.fo-heading {
    font-family: var(--fo-font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--fo-dark);
    margin-bottom: 48px;
}

.fo-heading--light {
    color: var(--fo-white);
}

/* ============================================
   HERO
   ============================================ */
.fo-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('assets/img/frisorokonomen-hero.png');
    background-size: cover;
    background-position: center;
}

.fo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(200, 169, 110, 0.55) 0%,
        rgba(42, 36, 34, 0.45) 100%
    );
}

.fo-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    animation: fo-fadeUp 1.2s ease both;
}

.fo-hero__logo {
    width: 580px;        /* Økt fra 280px */
    max-width: 70vw;
    margin-bottom: 40px;
    filter: brightness(0) invert(1);
}

.fo-hero__tagline {
    font-family: var(--fo-font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.fo-hero__hagland {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.85;
}

.fo-hero__hagland-logo {
    height: 52px;        /* Økt fra 36px */
    width: auto;         /* Sikrer riktige proporsjoner */
    filter: brightness(0) invert(1);
}

.fo-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    animation: fo-bounce 2s infinite;
    z-index: 2;
}

/* ============================================
   INTRO
   ============================================ */
.fo-intro {
    padding: var(--fo-section-pad);
    background: var(--fo-cream);
}

.fo-intro__inner {
    max-width: 800px;
}

.fo-intro__pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--fo-gold-light);
}

.fo-pillar {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--fo-gold-light);
    animation: fo-fadeUp 0.8s ease both;
}

.fo-pillar__number {
    font-family: var(--fo-font-display);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--fo-gold);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 28px;
}

.fo-pillar p {
    font-family: var(--fo-font-display);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--fo-dark);
    line-height: 1.4;
}

/* ============================================
   FORDELER
   ============================================ */
.fo-benefits {
    padding: var(--fo-section-pad);
    background: var(--fo-cream-dark);
}

.fo-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fo-benefit-card {
    background: var(--fo-white);
    padding: 40px 32px;
    border-bottom: 3px solid var(--fo-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fo-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(42, 36, 34, 0.1);
}

.fo-benefit-card__icon {
    font-size: 1.8rem;
    color: var(--fo-gold);
    margin-bottom: 20px;
    display: block;
}

.fo-benefit-card h3 {
    font-family: var(--fo-font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--fo-dark);
    margin-bottom: 12px;
}

.fo-benefit-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--fo-text-light);
}

/* ============================================
   TJENESTER
   ============================================ */
.fo-services {
    padding: var(--fo-section-pad);
    background: var(--fo-dark);
}

.fo-services__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fo-services__list {
    list-style: none;
    border-top: 1px solid rgba(200, 169, 110, 0.3);
}

.fo-services__list li {
    padding: 28px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fo-services__list-title {
    font-family: var(--fo-font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--fo-white);
}

.fo-services__list-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.fo-services__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fo-services__quote {
    font-family: var(--fo-font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--fo-gold-light);
    line-height: 1.5;
    text-align: center;
    padding: 48px;
    border: 1px solid rgba(200, 169, 110, 0.3);
    position: relative;
}

.fo-services__quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--fo-gold);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 16px;
    font-family: var(--fo-font-display);
    line-height: 1;
}

/* ============================================
   TRE STEG
   ============================================ */
.fo-steps {
    padding: var(--fo-section-pad);
    background: var(--fo-cream);
}

.fo-steps__grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.fo-step {
    flex: 1;
    padding: 40px 32px;
    background: var(--fo-white);
    border-top: 3px solid var(--fo-gold);
}

.fo-step__num {
    font-family: var(--fo-font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--fo-gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.fo-step h3 {
    font-family: var(--fo-font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--fo-dark);
    margin-bottom: 12px;
}

.fo-step p {
    font-size: 0.875rem;
    color: var(--fo-text-light);
    line-height: 1.7;
}

.fo-step__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 1.5rem;
    color: var(--fo-gold);
    opacity: 0.5;
    padding-top: 60px;
    flex-shrink: 0;
}

/* ============================================
   TILBUD
   ============================================ */
.fo-offer {
    padding: var(--fo-section-pad);
    background: var(--fo-cream-dark);
}

.fo-offer__inner {
    text-align: center;
}

.fo-offer__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--fo-gold-light);
    border: 2px solid var(--fo-gold-light);
}

.fo-offer-card {
    background: var(--fo-white);
    padding: 48px 32px;
    text-align: left;
}

.fo-offer-card--highlight {
    background: var(--fo-dark);
}

.fo-offer-card--highlight h3,
.fo-offer-card--highlight p {
    color: var(--fo-white);
}

.fo-offer-card--highlight p {
    color: rgba(255,255,255,0.65);
}

.fo-offer-card h3 {
    font-family: var(--fo-font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--fo-dark);
    margin-bottom: 12px;
}

.fo-offer-card p {
    font-size: 0.875rem;
    color: var(--fo-text-light);
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.fo-cta {
    padding: var(--fo-section-pad);
    background: var(--fo-dark-mid);
    text-align: center;
}

.fo-cta__inner {
    max-width: 600px;
    margin: 0 auto;
}

.fo-cta__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.fo-btn {
    display: inline-block;
    background: var(--fo-gold);
    color: var(--fo-dark);
    font-family: var(--fo-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 0;
    transition: background 0.3s ease, color 0.3s ease;
    margin-bottom: 60px;
}

.fo-btn:hover {
    background: var(--fo-gold-light);
    color: var(--fo-dark);
}

.fo-cta__hagland {
    opacity: 0.4;
}

.fo-cta__hagland-logo {
    height: 32px;
}

/* ============================================
   ANIMASJONER
   ============================================ */
@keyframes fo-fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fo-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   RESPONSIV – TABLET
   ============================================ */
@media (max-width: 900px) {
    .fo-benefits__grid {
        grid-template-columns: 1fr;
    }

    .fo-services__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fo-services__visual {
        display: none;
    }

    .fo-steps__grid {
        flex-direction: column;
    }

    .fo-step__divider {
        padding: 8px 0;
        transform: rotate(90deg);
    }

    .fo-offer__cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIV – MOBIL
   ============================================ */
@media (max-width: 600px) {
    :root {
        --fo-section-pad: 64px 20px;
    }

    .fo-hero__logo {
        width: 200px;
    }

    .fo-pillar {
        flex-direction: column;
        gap: 8px;
    }

    .fo-steps__grid {
        gap: 2px;
    }

    .fo-step {
        padding: 28px 20px;
    }
}