/* ========================================
   Rainberg RB-8088 — Product Landing Page
   Dark Theme with Accent Color
   ======================================== */

/* --- CSS Variables --- */
:root {
    --color-bg:          #0e0e12;
    --color-bg-alt:      #16161d;
    --color-bg-card:     #1c1c26;
    --color-bg-input:    #22222e;
    --color-border:      #2a2a38;
    --color-text:        #ccd0d8;
    --color-text-muted:  #7a7e8a;
    --color-text-heading:#f0f1f4;
    --color-accent:      #e85d2a;
    --color-accent-hover:#ff7040;
    --color-accent-glow: rgba(232, 93, 42, .25);
    --color-success:     #34c759;
    --color-danger:      #ff3b30;
    --color-gift:        #fbbf24;
    --font-family:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius:            12px;
    --radius-sm:         8px;
    --radius-lg:         20px;
    --shadow:            0 4px 24px rgba(0,0,0,.35);
    --max-width:         1160px;
    --transition:        .25s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--color-accent-hover);
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--color-accent);
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--color-text-heading);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* --- Button --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-align: center;
    line-height: 1.3;
}
.btn:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--color-accent-glow);
}
.btn--sm { padding: 10px 22px; font-size: .9rem; }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--full { width: 100%; }
.btn--pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--color-accent-glow); }
    50%      { box-shadow: 0 0 0 14px rgba(232,93,42,0); }
}

/* --- Badge --- */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.3;
}
.badge--sale {
    background: var(--color-danger);
    color: #fff;
}
.badge--gift {
    background: var(--color-gift);
    color: #1a1a1a;
}
.badge--lg {
    padding: 10px 24px;
    font-size: 1rem;
}

/* --- Photo Placeholders --- */
.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-bg-card);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-muted);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.photo-placeholder__icon {
    font-size: 2.5rem;
    opacity: .5;
}
.photo-placeholder__text {
    font-size: .85rem;
    line-height: 1.5;
}
.photo-placeholder--hero {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
}
.photo-placeholder--gallery {
    aspect-ratio: 4 / 3;
}
.photo-placeholder--gift {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 380px;
}
.photo-placeholder--thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.photo-placeholder--thumb .photo-placeholder__icon {
    font-size: 1.5rem;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 0;
}
.top-bar__inner {
    display: flex;
    justify-content: center;
}

/* --- Header --- */
.header {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header__logo {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-text-heading);
    flex-shrink: 0;
}
.header__logo:hover { color: var(--color-accent); }
.header__nav {
    display: flex;
    gap: 28px;
}
.header__link {
    color: var(--color-text-muted);
    font-size: .9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.header__link:hover {
    color: var(--color-text-heading);
}

/* --- Hero --- */
.hero {
    padding: 72px 0 80px;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(232,93,42,.08) 0%, transparent 60%),
        var(--color-bg);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-text-heading);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 28px;
    max-width: 520px;
}
.hero__price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
}
.hero__price-old {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}
.hero__price-new {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-accent);
}

/* Hero Savings Callout */
.hero__savings {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.hero__savings-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    width: fit-content;
}
.hero__savings-item--discount {
    background: rgba(232, 93, 42, .12);
    border: 1px solid rgba(232, 93, 42, .3);
    color: var(--color-accent);
}
.hero__savings-item--discount strong {
    font-size: 1.1rem;
    color: #fff;
}
.hero__savings-item--gift {
    background: rgba(251, 191, 36, .1);
    border: 1px solid rgba(251, 191, 36, .3);
    color: var(--color-gift);
}
.hero__savings-item--gift strong {
    color: #fff;
}
.hero__savings-icon {
    font-size: 1.3rem;
}
.hero__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero__stock {
    font-size: .9rem;
    color: var(--color-text-muted);
}
.hero__image {
    display: flex;
    justify-content: center;
}
.hero__img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
    object-fit: contain;
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 28px 0;
}
.trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-bar__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}
.trust-bar__item strong {
    display: block;
    color: var(--color-text-heading);
    font-size: .9rem;
}
.trust-bar__item span {
    font-size: .8rem;
    color: var(--color-text-muted);
}

/* --- Benefits --- */
.benefits {
    padding: 80px 0;
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color var(--transition), transform var(--transition);
}
.benefit-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
}
.benefit-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}
.benefit-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 8px;
}
.benefit-card__text {
    font-size: .92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Gallery --- */
.gallery {
    padding: 80px 0;
    background: var(--color-bg-alt);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: transform var(--transition);
}
.gallery__img:hover {
    transform: scale(1.03);
}

/* --- Video Review --- */
.video-review {
    padding: 80px 0;
    background: var(--color-bg);
}
.video-review__wrapper {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}
.video-review__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Gift --- */
.gift {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(251,191,36,.06) 0%, transparent 60%),
        var(--color-bg);
}
.gift__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
}
.gift__img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius);
    object-fit: contain;
}
.gift__content {
    max-width: 520px;
}
.gift__title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--color-text-heading);
    margin: 16px 0 16px;
}
.gift__text {
    color: var(--color-text);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* --- Specs --- */
.specs {
    padding: 80px 0;
    background: var(--color-bg-alt);
}
.specs__wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.specs__table {
    width: 100%;
    border-collapse: collapse;
}
.specs__table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    font-size: .95rem;
}
.specs__table tr:last-child td {
    border-bottom: none;
}
.specs__table td:first-child {
    color: var(--color-text-muted);
    width: 45%;
}
.specs__table td:last-child {
    color: var(--color-text-heading);
    font-weight: 500;
}
.specs__table tr:hover td {
    background: rgba(232, 93, 42, .04);
}

/* --- Package --- */
.package {
    padding: 80px 0;
}
.package__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.package__item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    color: var(--color-text);
    transition: border-color var(--transition);
}
.package__item:hover {
    border-color: var(--color-accent);
}
.package__item--bonus {
    border-color: var(--color-gift);
    background: rgba(251, 191, 36, .06);
}
.package__item--bonus span {
    color: var(--color-gift);
    font-weight: 600;
}
.package__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* --- Reviews --- */
.reviews {
    padding: 80px 0;
    background: var(--color-bg-alt);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
}
.review-card__stars {
    color: var(--color-gift);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.review-card__text {
    font-size: .92rem;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 18px;
    font-style: italic;
}
.review-card__author strong {
    display: block;
    color: var(--color-text-heading);
    font-size: .9rem;
}
.review-card__author span {
    font-size: .8rem;
    color: var(--color-text-muted);
}

/* --- Urgency --- */
.urgency {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(232,93,42,.12) 0%, var(--color-bg) 100%);
    border-top: 1px solid rgba(232,93,42,.2);
    border-bottom: 1px solid rgba(232,93,42,.2);
}
.urgency__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.urgency__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}
.urgency__text {
    color: var(--color-text);
    font-size: .95rem;
    max-width: 580px;
}

/* --- Order --- */
.order {
    padding: 80px 0;
}
.order__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 940px;
    margin: 0 auto;
    align-items: start;
}
.order__summary {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
}
.order__product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.order__thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}
.order__product h3 {
    color: var(--color-text-heading);
    font-size: 1.1rem;
    font-weight: 700;
}
.order__product p {
    color: var(--color-text-muted);
    font-size: .85rem;
}
.order__perks {
    list-style: none;
    margin-bottom: 28px;
}
.order__perks li {
    padding: 6px 0;
    font-size: .9rem;
    color: var(--color-text);
}
.order__perks li::first-letter {
    color: var(--color-success);
}
.order__total {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}
.order__total-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: .92rem;
    color: var(--color-text-muted);
}
.order__total-old {
    text-decoration: line-through;
}
.order__total-discount {
    color: var(--color-success);
    font-weight: 600;
}
.order__total-row--save {
    background: rgba(232, 93, 42, .1);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    margin: 4px -10px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: .95rem;
}
.order__total-row--save .order__total-discount {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
}
.order__total-row--gift {
    background: rgba(251, 191, 36, .1);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    margin: 4px -10px;
    color: var(--color-gift);
    font-weight: 600;
    font-size: .95rem;
}
.order__total-gift {
    color: var(--color-gift);
    font-weight: 700;
}
.order__total-row--final {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-heading);
}
.order__total-final {
    color: var(--color-accent);
    font-size: 1.3rem;
}

/* --- Form --- */
.order__form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: .95rem;
    font-family: var(--font-family);
    color: var(--color-text-heading);
    background: var(--color-bg-input);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder {
    color: var(--color-text-muted);
}
.form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}
.form-input--error {
    border-color: var(--color-danger);
    box-shadow: 0 0 0 3px rgba(255,59,48,.15);
}
.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a7e8a' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}
.form-textarea {
    resize: vertical;
    min-height: 80px;
}
.form-error {
    display: none;
    margin-top: 6px;
    font-size: .8rem;
    color: var(--color-danger);
    font-weight: 500;
}
.order__consent {
    margin-top: 14px;
    font-size: .75rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.5;
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
    background: var(--color-bg-alt);
}
.faq__list {
    max-width: 720px;
    margin: 0 auto;
}
.faq__item {
    border-bottom: 1px solid var(--color-border);
}
.faq__question {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}
.faq__question:hover {
    color: var(--color-accent);
}
.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}
.faq__item[open] .faq__question::after {
    content: '−';
}
.faq__question::-webkit-details-marker {
    display: none;
}
.faq__answer {
    padding: 0 0 20px;
    font-size: .92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__logo {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-text-heading);
}
.footer__copy {
    font-size: .8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.footer__nav {
    display: flex;
    gap: 24px;
}
.footer__nav a {
    color: var(--color-text-muted);
    font-size: .85rem;
    transition: color var(--transition);
}
.footer__nav a:hover {
    color: var(--color-accent);
}

/* --- Modal --- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal[hidden] {
    display: none;
}
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
}
.modal__content {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow);
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.92); }
    to   { opacity: 1; transform: scale(1); }
}
.modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-success);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.modal__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 10px;
}
.modal__text {
    font-size: .92rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .hero__inner {
        gap: 32px;
    }
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__badges {
        justify-content: center;
    }
    .hero__price {
        justify-content: center;
    }
    .hero__cta {
        justify-content: center;
    }
    .hero__image {
        order: -1;
    }
    .photo-placeholder--hero {
        max-width: 340px;
    }
    .trust-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gift__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .gift__image {
        display: flex;
        justify-content: center;
    }
    .photo-placeholder--gift {
        max-width: 260px;
    }
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    .urgency__inner {
        flex-direction: column;
        text-align: center;
    }
    .order__wrapper {
        grid-template-columns: 1fr;
    }
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer__nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 48px 0 56px;
    }
    .hero__title {
        font-size: 1.7rem;
    }
    .hero__price-new {
        font-size: 1.8rem;
    }
    .trust-bar__inner {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    .package__grid {
        grid-template-columns: 1fr 1fr;
    }
    .order__form,
    .order__summary {
        padding: 24px 20px;
    }
    .modal__content {
        padding: 32px 24px;
    }
}
