.hero {
    width: 100%;
    background: var(--telia-plum);
    color: var(--telia-lavender);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero_textbox {
    width: 100%;
}

.hero_img_container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.hero_img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero_textbox h1 {
    font-family: "Telia Sans Heading", sans-serif;
    font-weight: 400;
    font-size: 50px;
    margin: 0;
}

.hero_textbox h2 {
    font-weight: 200;
    font-size: 20px;
    margin: 50px 0;
}

.hero_actions {
    display: flex;
    flex-direction: row;
}

.hero_actions a {
    color: white;
    background: var(--purple-primary);
    padding: 17px 20px;
    border-radius: 1000px;
    margin-right: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hero_actions a:nth-child(2) {
    background: transparent;
    color: var(--telia-lavender);
    border: 1px solid var(--telia-lavender);
}

.hero_actions a:nth-child(1):hover {
    background: #b76add;
    color: var(--telia-plum);
}

.hero_actions a:nth-child(2):hover {
    background: var(--purple-darker);
}



.about {
    background: var(--bg-gray);
}

.about_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.aboutcard {
    width: 100%;
    padding: 100px 0;
}

.aboutcard h3 {
    margin: 0 0 12px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;

    color: var(--purple-primary);
}

.aboutcard h2 {
    margin: 0 0 24px;

    font-size: 38px;
    line-height: 1.2;

    color: var(--text-primary);
}

.aboutcard p {
    margin: 0 0 40px;

    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;

    color: var(--text-secondary);
}

.aboutcard a {
    display: inline-block;

    background: transparent;
    color: var(--purple-darker);

    border: 1px solid var(--purple-darker);
    border-radius: 999px;

    padding: 15px 24px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: all 0.25s ease;
}

.aboutcard a:hover {
    background: var(--telia-lavender);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(78, 1, 116, 0.08);
}



.testcards {
    background: var(--bg-secondary);
}

.testcards_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    padding: 100px 0;
}

.testcard {
    position: relative;

    background: var(--purple-dark);

    padding: 35px;

    border-radius: 4px 16px 16px 16px;

    text-decoration: none;
    color: var(--text-on-dark);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

    overflow: hidden;
}

.testcard:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 32px rgba(38, 0, 56, 0.15);
}

.testcard h3 {
    margin: 0 0 16px;

    font-size: 24px;
    color: var(--text-on-dark);
}

.testcard p {
    margin: 0;

    line-height: 1.7;
    font-size: 16px;

    color: rgba(255,255,255,0.8);
}



.facts {
    background: var(--bg-gray);
    padding: 0 0;
}

.facts_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.facts_stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fact {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.facts_stats h2 {
    margin: 0 0 8px;

    font-size: 48px;
    font-weight: 700;
    line-height: 1;

    color: var(--text-primary);
}

.facts_stats p {
    margin: 0;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;

    color: var(--text-secondary);
}

.facts_img_container {
    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;
    border-radius: 0;
}

.facts_img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}



.status {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.status_content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.status_intro h3 {
    margin: 0 0 10px;
    color: var(--purple-primary);
    font-size: 14px;
    letter-spacing: 2px;
}

.status_intro h2 {
    margin: 0 0 20px;
    color: var(--text-primary);
    font-size: 42px;
}

.status_intro p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.status_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.status_card {
    display: flex;
    align-items: center;
    gap: 15px;

    background: white;
    border: 1px solid var(--border-light);
    border-radius: 18px;

    padding: 20px;

    transition: all 0.3s ease;
}

.status_card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-primary);
}

.status_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: var(--teal);

    box-shadow: 0 0 12px rgba(0, 132, 126, 0.5);
    flex-shrink: 0;
}

.status_card h4 {
    margin: 0 0 4px;
    color: var(--text-primary);
}

.status_card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}