
:root {
    --primary: #059669;
    --primary-light: #10b981;
    --primary-dark: #047857;
    --primary-bg: #ecfdf5;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px -10px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px -15px rgba(5, 150, 105, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    --page-max-width: 1200px;
    --page-padding-x: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    
    overflow-x: hidden;
}

header.site-menu {
    box-shadow: 0px 0px 13px 0px #00000021;
}

main {
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.hero {
    max-width: 1200px;
    margin: 4rem auto;
    margin-bottom: 5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-bg);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    width: fit-content;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4/5;
    max-height: 520px;
    width: 100%;
    background: #e2e8f0;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.hero-img-card:hover img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.floating-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.cta-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

/* --- TAB SWITCHER --- */
.guide-section {
    max-width: 1200px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
    scroll-margin-top: 160px;
}

.section-header {
    text-align: center;
    margin-bottom: 42px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 62px;
}

.tabs {
    background: var(--border-color);
    padding: 0.35rem;
    border-radius: 999px;
    display: inline-flex;
    gap: 0.25rem;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tab-btn.active {
    background: var(--bg-card);
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

/* --- STEPS GRID --- */
.steps-container {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    animation: fadeIn 0.4s ease forwards;
}

.steps-container.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f1f5f9;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    z-index: -1;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: var(--primary-bg);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-badge {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- TRUST BANNER (EXEMPEL 1) --- */
.trust-banner-wrapper {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 60px auto 5rem;
}

.trust-banner {
    background: #0f5132;
    color: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item i {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #6ee7b7;
}

.trust-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.9rem;
    color: #d1fae5;
}

/* --- RESPONSIV DESIGN --- */
@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; gap: 3rem; }
    .hero-img-card { max-height: 450px; }
    .steps-container { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
    .hero { margin: 1.5rem auto; }
    .tabs { width: 100%; display: flex; }
    .tab-btn { flex: 1; justify-content: center; padding: 0.75rem 1rem; }
    .trust-banner { padding: 32px 20px; }
}









/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

/* TABLET / SMALL LAPTOP */
@media (max-width: 992px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
        margin-bottom: 4rem;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-img-card {
        max-height: 450px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    main {
        line-height: 1.55;
    }

    /* HERO */
    .hero {
        width: 100%;
        margin: 1.5rem auto 3rem;
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-content {
        gap: 1.15rem;
    }

    .tag {
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .tag svg {
        width: 15px;
        height: 15px;
    }

    .hero-title {
        font-size: clamp(2.15rem, 10vw, 2.75rem);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        max-width: 100%;
    }

    /* HERO BUTTONS */
    .hero-content > div:last-child {
        width: 100%;
        gap: 0.65rem !important;
        margin-top: 0.25rem !important;
    }

    .cta-btn {
        min-height: 46px;
        padding: 0.7rem 1.15rem;
        font-size: 0.9rem;
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }

    /* HERO IMAGE */
    .hero-img-card {
        aspect-ratio: 4 / 5;
        max-height: none;
        border-radius: 18px;
    }

    .floating-badge {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.85rem;
        gap: 0.75rem;
        border-radius: 12px;
    }

    .floating-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .floating-icon svg {
        width: 21px;
        height: 21px;
    }

    .floating-text h4 {
        font-size: 0.85rem;
    }

    .floating-text p {
        font-size: 0.72rem;
        line-height: 1.4;
    }


    /* =====================================================
       GUIDE SECTION
       ===================================================== */

    .guide-section {
        width: 100%;
        margin: 3rem auto 4rem;
        padding: 0 1rem;
        
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        line-height: 1.15;
        margin-bottom: 0.7rem;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }


    /* =====================================================
       TABS
       ===================================================== */

    .tabs-wrapper {
        width: 100%;
        margin-bottom: 2rem;
    }

    .tabs {
        width: 100%;
        display: flex;
        padding: 0.25rem;
        gap: 0.15rem;
    }

    .tab-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
        gap: 0.35rem;
        white-space: nowrap;
    }

    .tab-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }


    /* =====================================================
       STEP CARDS
       ===================================================== */

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }

    .step-number {
        font-size: 2.5rem;
        top: 0.9rem;
        right: 1rem;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1.25rem;
        border-radius: 13px;
    }

    .step-icon svg {
        width: 25px;
        height: 25px;
    }

    .step-title {
        font-size: 1.15rem;
        line-height: 1.3;
        margin-bottom: 0.65rem;
    }

    .step-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .step-badge {
        margin-top: 1.5rem;
        padding-top: 1rem;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .step-badge svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }


    /* =====================================================
       TRUST BANNER
       ===================================================== */

    .trust-banner-wrapper {
        width: 100%;
        padding: 0 1rem;
        margin: 3rem auto 3rem;
    }

    .trust-banner {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }

    .trust-grid {
        gap: 2rem;
    }

    .trust-item i {
        font-size: 1.9rem;
        margin-bottom: 0.75rem;
    }

    .trust-item h4 {
        font-size: 1.05rem;
        margin-bottom: 0.45rem;
    }

    .trust-item p {
        font-size: 0.85rem;
        line-height: 1.55;
    }
}


/* =========================================================
   SMALL PHONES — 375px
   ========================================================= */

@media (max-width: 375px) {

    .hero {
        padding: 0 0.875rem;
        margin-top: 1.25rem;
    }

    .hero-title {
        font-size: 2.05rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .cta-btn {
        font-size: 0.85rem;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .floating-badge {
        padding: 0.7rem;
    }

    .floating-icon {
        width: 38px;
        height: 38px;
    }

    .floating-text h4 {
        font-size: 0.8rem;
    }

    .floating-text p {
        font-size: 0.68rem;
    }

    .guide-section {
        padding: 0 0.875rem;
    }

    .tab-btn {
        font-size: 0.78rem;
        padding: 0.65rem 0.35rem;
    }

    .tab-btn svg {
        width: 15px;
        height: 15px;
    }

    .step-card {
        padding: 1.5rem 1.1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.87rem;
    }

    .trust-banner-wrapper {
        padding: 0 0.875rem;
    }

    .trust-banner {
        padding: 1.75rem 1rem;
    }
}


/* =========================================================
   VERY SMALL PHONES — 320px
   ========================================================= */

@media (max-width: 340px) {

    .hero {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .cta-btn {
        width: 100%;
        flex: 1 1 100%;
        min-height: 44px;
    }

    .floating-badge {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.6rem;
        gap: 0.55rem;
    }

    .floating-icon {
        width: 36px;
        height: 36px;
    }

    .floating-text h4 {
        font-size: 0.76rem;
    }

    .floating-text p {
        font-size: 0.65rem;
    }

    .section-header h2 {
        font-size: 1.65rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .tab-btn {
        font-size: 0.72rem;
        gap: 0.25rem;
    }

    .tab-btn svg {
        width: 14px;
        height: 14px;
    }

    .step-card {
        padding: 1.4rem 1rem;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.1rem;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-description {
        font-size: 0.84rem;
    }

    .step-badge {
        font-size: 0.74rem;
    }

    .trust-banner {
        padding: 1.5rem 0.9rem;
    }

    .trust-item h4 {
        font-size: 1rem;
    }

    .trust-item p {
        font-size: 0.82rem;
    }
}