.whats-inside {
    padding: 60px 40px 80px;
    background: var(--theme-palette-color-7, #FAF9F6);
    margin-bottom: 0;
}

.whats-inside__inner {
    max-width: 820px;
    margin: 0 auto;
}

.whats-inside__card {
    background: var(--theme-palette-color-8, #ffffff);
    border: 1px solid var(--fw-border, #E5E3DF);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
}

/* Visual column (dark background) */
.whats-inside__visual {
    background: var(--theme-palette-color-3, #2D2D2D);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.whats-inside__visual::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--fw-charcoal-light, #3D3D3D);
}

.whats-inside__image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Decorative document mockup */
.whats-inside__doc {
    width: 160px;
    height: 210px;
    background: var(--theme-palette-color-7, #FAF9F6);
    border-radius: 4px;
    padding: 28px 14px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.whats-inside__doc::before {
    content: 'FREYMWORK';
    font-family: var(--fw-font-mono, 'JetBrains Mono', monospace);
    font-size: 5px;
    letter-spacing: 0.12em;
    color: var(--fw-text-tertiary, #AAAAAA);
    position: absolute;
    top: 12px;
    left: 14px;
}

.whats-inside__doc-title {
    font-family: var(--fw-font-serif, 'Lora', Georgia, serif);
    font-size: 10px;
    font-weight: 700;
    color: var(--theme-palette-color-3, #2D2D2D);
    line-height: 1.3;
}

.whats-inside__doc-subtitle {
    font-family: var(--fw-font-sans, 'Inter', sans-serif);
    font-size: 5.5px;
    color: var(--fw-text-secondary, #777777);
    margin-top: 4px;
    line-height: 1.4;
}

.whats-inside__doc-divider {
    width: 20px;
    height: 1.5px;
    background: var(--theme-palette-color-1, #C8922A);
    margin: 8px 0;
    border-radius: 1px;
}

.whats-inside__doc-dots {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.whats-inside__doc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.whats-inside__doc-dot--green { background: #2d8a4e; }
.whats-inside__doc-dot--yellow { background: #c49a1a; }
.whats-inside__doc-dot--red { background: #c44a2d; }

.whats-inside__doc-lines {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.whats-inside__doc-lines span {
    height: 2px;
    background: var(--theme-palette-color-9, #F0EEEA);
    border-radius: 1px;
    display: block;
}

.whats-inside__doc-lines span:nth-child(1) { width: 100%; }
.whats-inside__doc-lines span:nth-child(2) { width: 85%; }
.whats-inside__doc-lines span:nth-child(3) { width: 92%; }
.whats-inside__doc-lines span:nth-child(4) { width: 70%; }
.whats-inside__doc-lines span:nth-child(5) { width: 88%; }

/* Content column */
.whats-inside__content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.whats-inside__title {
    font-family: var(--fw-font-serif, 'Lora', Georgia, serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    color: var(--theme-palette-color-3, #2D2D2D);
}

.whats-inside__desc {
    font-size: 0.88rem;
    color: var(--fw-text-secondary, #777777);
    line-height: 1.7;
    margin-bottom: 8px;
}

.whats-inside__list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.whats-inside__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--theme-palette-color-4, #555555);
    line-height: 1.5;
}

.whats-inside__check {
    color: var(--theme-palette-color-1, #C8922A);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .whats-inside {
        padding: 40px 20px 60px;
    }

    .whats-inside__card {
        grid-template-columns: 1fr;
    }

    .whats-inside__visual {
        padding: 32px;
    }

    .whats-inside__visual::after {
        display: none;
    }
}
