/* Keep every homepage block aligned to the same content width. */
main > section > .container,
.plain-text-block-inner,
.iframe-desktop,
.iframe-container-wrapper {
    width: min(90%, 1200px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    box-sizing: border-box;
}

.tariffs-section .container {
    width: min(90%, 1200px);
}

.plain-text-block-inner {
    width: min(90%, 1200px);
}

.iframe-desktop,
.iframe-container-wrapper {
    overflow: hidden;
}

.tariffs-nav {
    justify-content: center;
}

.tariff-disclaimer {
    margin-bottom: 1.5rem;
    text-align: center;
}

.tariff-tab {
    border-radius: 10px;
}

.tariff-tab.is-active {
    color: #fff;
}

.tariff-card {
    width: 100%;
    border-radius: 16px;
    box-sizing: border-box;
}

.faq-section {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 72px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.faq-kicker {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(62, 109, 38, 0.08);
    color: var(--accent-color, #3e6d26);
    font-size: 0.875rem;
    font-weight: 700;
}

.faq-intro h2 {
    margin-bottom: 16px;
}

.faq-intro .section-description {
    margin-bottom: 24px;
    color: var(--text-light);
    text-align: left;
}

.faq-intro-card {
    padding: 24px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--bg-color);
    box-shadow: var(--shadow-light);
}

.faq-intro-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.faq-intro-card p {
    margin-bottom: 18px;
    color: var(--text-light);
}

.faq-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--bg-color);
    box-shadow: var(--shadow-light);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 18px;
    list-style: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-light);
}

.faq-toggle {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
    padding: 18px 22px 22px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
}

@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    main > section > .container {
        width: min(92%, 1200px);
        padding-right: 20px;
        padding-left: 20px;
    }

    .faq-section {
        padding: 56px 0;
    }

    .faq-item summary,
    .faq-answer,
    .faq-intro-card {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 480px) {
    main > section > .container {
        width: min(94%, 1200px);
        padding-right: 15px;
        padding-left: 15px;
    }
}
