:root {
    --product-hero-gradient: linear-gradient(135deg, rgba(23, 114, 69, 0.08) 0%, rgba(23, 114, 69, 0.02) 100%);
}

.product-page {
    background: #f8fbf9;
    color: var(--brand-dark, #0f172a);
}
/*product section*/
.product-section {
    padding: 1.5rem 0;
}

.section-card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(15, 81, 50, 0.08);
    padding: 3rem;
    position: relative;
}

.product-hero {
    padding: 5.5rem 0 3.5rem;
    background: var(--product-hero-gradient);
}

.product-hero__card {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.product-hero__content {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-hero__title {
    font-size: clamp(2.4rem, 3.8vw, 3.2rem);
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
    margin: 0;
}

.product-hero__description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-hero__copy {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2f4038;
}

.product-hero__copy--alt {
    color: #184b2a;
}

.product-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(23, 114, 69, 0.12);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
}

.toggle-switch {
    width: 44px;
    height: 22px;
    appearance: none;
    background: rgba(23, 114, 69, 0.25);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

.toggle-switch::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
    box-shadow: 0 6px 12px rgba(15, 81, 50, 0.25);
    transition: transform 0.2s ease;
}

.toggle-switch:checked {
    background: linear-gradient(135deg, var(--brand-primary, #177245), var(--brand-accent, #ffc857));
}

.toggle-switch:checked::after {
    transform: translateX(22px);
}

.product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.product-hero__form {
    grid-column: span 5;
}

.product-hero__form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(15, 81, 50, 0.12);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-hero__form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.product-hero__form-card p {
    color: #3e5047;
    margin-bottom: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
   /* gap: 0.4rem;*/
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(23, 114, 69, 0.18);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary, #177245);
    box-shadow: 0 0 0 3px rgba(23, 114, 69, 0.15);
}

.form-hint {
    font-size: 0.75rem;
    color: rgba(15, 81, 50, 0.6);
}

.form-actions {
    margin-top: 1rem;
}

.product-alert {
    display: none;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background: rgba(255, 200, 87, 0.15);
    color: #c08600;
}

.product-alert.active {
    display: block;
}

.product-video__embed {
    position: relative;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
}

.product-video__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product-description__body {
    display: grid;
    gap: 1.5rem;
    line-height: 1.7;
    color: #34443a;
}

.product-description__copy h3,
.product-description__copy h4 {
    color: var(--brand-dark, #0f172a);
    margin: 1.75rem 0 0.75rem;
}

.product-section__header {
    display: grid;
    gap: 0.75rem;
   /* margin-bottom: 2.5rem;*/
    max-width: 640px;
}

.product-section__header h2 {
    font-size: clamp(1.8rem, 2.7vw, 2.4rem);
    margin: 0;
}

.product-section__header p {
    color: #3f4e47;
}

.plan-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan-card {
    border: 1px solid rgba(23, 114, 69, 0.15);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    position: relative;
}

.plan-card--disabled {
    opacity: 0.55;
}

.plan-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.plan-card__title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-primary, #177245);
}

.plan-card__price {
    display: grid;
    gap: 0.25rem;
    justify-items: end;
}

.plan-card__amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-dark, #0f172a);
}

.plan-card__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    color: #3f5148;
}

.plan-card__features li::before {
    content: '\2713';
    margin-right: 0.6rem;
    color: var(--brand-primary, #177245);
    font-weight: 700;
}

.plan-card__actions {
    margin-top: auto;
}

.plan-lockout {
    border: 1px dashed rgba(23, 114, 69, 0.3);
    border-radius: 18px;
    padding: 2.5rem;
    text-align: center;
    background: rgba(23, 114, 69, 0.04);
}

.plan-lockout__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-terms__body {
    display: grid;
    gap: 1.25rem;
    color: #34443a;
}

.ask-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}

.ask-grid__form {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    /*gap: 1.25rem;*/
}

.ask-grid__answers {
    grid-column: span 6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(23, 114, 69, 0.06);
    border-radius: 18px;
    padding: 1.75rem;
}

.ask-grid__list {
    display: grid;
    gap: 1rem;
}

.otp-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand-primary, #177245), var(--brand-accent, #ffc857));
    color: #fff;
    box-shadow: 0 12px 24px rgba(23, 114, 69, 0.25);
}

.btn--primary:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.btn--ghost {
    background: #fff;
    color: var(--brand-primary, #177245);
    border-color: rgba(23, 114, 69, 0.3);
}

.modal-form {
    display: grid;
    gap: 1rem;
}

.hidden {
    display: none !important;
}

.d-none {
    display: none !important;
}

@media (max-width: 1024px) {
    .product-hero__card {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .product-hero__form {
        grid-column: span 12;
    }

    .ask-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .ask-grid__answers {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .section-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .product-section {
        padding: 3.5rem 0;
    }

    .product-hero {
        padding: 4rem 0 2.5rem;
    }

    .product-hero__title {
        font-size: 2.2rem;
    }

    .plan-lockout__actions {
        flex-direction: column;
    }
}

.product-section--faq .srvlink {
    display: grid;
    gap: 0.75rem;
}

.product-section--faq .srvlink a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin:3px;
    background: rgba(23, 114, 69, 0.08);
    color: var(--brand-dark, #0f172a);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.product-section--faq .srvlink a.is-active,
.product-section--faq .srvlink a:hover {
    background: linear-gradient(135deg, rgba(23, 114, 69, 0.18), rgba(255, 200, 87, 0.25));
    color: var(--brand-primary, #177245);
}

.product-section--faq .acc_panel {
    display: none;
}

.product-section--faq .acc_panel.is-active {
    display: block;
}

.product-section--faq .acc__panel--content {
    background: rgba(23, 114, 69, 0.05);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.product-section--faq .acc__panel--content h2 {
    margin-top: 0;
}

.product-section--faq .acc__id,
.product-section--faq .acc__id_mobile {
    width: 100%;
    text-align: left;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(23, 114, 69, 0.18);
    background: linear-gradient(135deg, rgba(23, 114, 69, 0.18), rgba(255, 200, 87, 0.25));
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #177245;
}

.product-section--faq .acc__content,
.product-section--faq .acc__content_mobile {
    display: none;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--brand-primary, #177245);
    background: rgba(23, 114, 69, 0.04);
    border-radius: 0 12px 12px 12px;
    margin-bottom: 1rem;
}

.product-section--faq .acc__content.acc-active,
.product-section--faq .acc__content_mobile.acc-active_mobile {
    display: block;
}

