/**
 * Ziko.co.il - Homepage Styles v2
 * Redesigned: Product-focused, dual CTA, live demo, FAQ
 */

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: var(--radius-full);
    padding: 7px 14px;
    background: var(--primary-light);
    border: 1px solid rgba(196, 30, 58, 0.15);
    color: var(--primary);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: var(--font-weight-black);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.75;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: var(--radius-full);
    padding: 14px 24px;
    font-weight: var(--font-weight-extrabold);
    font-size: 15px;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #e94560);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.hero-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(196, 30, 58, 0.4);
}

.hero-btn--light {
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.hero-btn--light:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-meta-item {
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-meta-item i {
    color: var(--primary);
    font-size: 14px;
}

/* ===== HERO DEMO CARD ===== */
.hero-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}

.demo-title {
    font-size: 15px;
    font-weight: var(--font-weight-extrabold);
    color: var(--text);
}

.demo-live {
    font-size: 12px;
    color: var(--success);
    background: var(--success-light);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.demo-bar {
    height: 10px;
    background: var(--bg);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.demo-bar-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--danger), var(--warning), var(--success));
    border-radius: var(--radius-full);
    transition: width 2s ease-out;
}

.demo-score {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
}

.demo-issues {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-issue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 10px 14px;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(8px);
    animation: issue-appear 0.4s ease forwards;
}

.demo-issue:nth-child(1) { animation-delay: 0.8s; }
.demo-issue:nth-child(2) { animation-delay: 1.2s; }
.demo-issue:nth-child(3) { animation-delay: 1.6s; }
.demo-issue:nth-child(4) { animation-delay: 2.0s; }

@keyframes issue-appear {
    to { opacity: 1; transform: translateY(0); }
}

.demo-issue-label {
    font-weight: var(--font-weight-bold);
    color: var(--text);
}

.demo-issue-status {
    font-size: 12px;
    color: var(--text-secondary);
}

.demo-issue--critical .demo-issue-status {
    color: var(--danger);
    font-weight: var(--font-weight-bold);
}

/* ===================================================
   TRUST STATS BAR
   =================================================== */
.trust-stats-section {
    padding: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-stat {
    text-align: center;
    padding: 28px 16px;
    border-left: 1px solid var(--border);
}

.trust-stat:last-child {
    border-left: none;
}

.trust-stat-icon {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 6px;
}

.trust-stat-num {
    font-size: 26px;
    font-weight: var(--font-weight-extrabold);
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================================
   COURT CASES SECTION
   =================================================== */
.cases-section {
    padding: 80px 0;
    background: var(--white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.case-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196, 30, 58, 0.3);
}

.case-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.case-card-icon--purple { background: #f3e8ff; color: #7c3aed; }
.case-card-icon--blue { background: #dbeafe; color: #2563eb; }
.case-card-icon--orange { background: #ffedd5; color: #c2410c; }
.case-card-icon--red { background: #fee2e2; color: #dc2626; }
.case-card-icon--green { background: #dcfce7; color: #16a34a; }
.case-card-icon--dark { background: #f1f5f9; color: #334155; }
.case-card-icon--pink { background: #fce7f3; color: #db2777; }
.case-card-icon--teal { background: #ccfbf1; color: #0d9488; }

.case-card-header h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin: 0;
}

.case-card-law {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.case-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.case-card-case {
    background: #fef8f8;
    border: 1px solid #fde2e2;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border-right: 3px solid var(--danger);
}

.case-card-label {
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: var(--danger);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.case-card-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.case-card-detail strong {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--text);
}

.case-card-ref {
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: -0.02em;
}

.case-card-outcome {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-top: 4px;
}

.case-card-check {
    font-size: 12px;
    color: var(--success);
    font-weight: var(--font-weight-semibold);
    background: var(--success-light);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}

.case-card-check i {
    margin-top: 2px;
    flex-shrink: 0;
}

.case-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.2s;
}

.case-card-link:hover {
    gap: 10px;
}

.cases-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cases-cta-text {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.cases-cta-text strong {
    color: var(--text);
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products-section {
    padding: 80px 0;
    background: var(--bg);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}

.products-section .section-tag {
    background: var(--success-light);
    color: var(--success);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card--featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #fff, #fff7f8);
}

.product-card-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
}

.product-card h3 {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card-price {
    font-size: 28px;
    font-weight: var(--font-weight-black);
    color: var(--text);
    margin-bottom: 16px;
}

.product-card-price span {
    font-size: 14px;
    font-weight: var(--font-weight-normal);
    color: var(--text-muted);
}

/* ===================================================
   WIDGET FEATURES SECTION
   =================================================== */
.widget-section {
    padding: 80px 0;
    background: var(--white);
}

.widget-section .section-tag {
    background: var(--primary-light);
    color: var(--primary);
}

.widget-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.widget-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.widget-card-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 14px;
}

.widget-card h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

.widget-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}

.widget-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.widget-list li {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: var(--font-weight-semibold);
}

/* ===================================================
   HOW IT WORKS (FLOW)
   =================================================== */
.flow-section {
    padding: 80px 0;
    background: var(--bg);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}

.flow-section .section-tag {
    background: var(--success-light);
    color: var(--success);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.flow-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.flow-step-num {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-black);
    font-size: 16px;
    margin-bottom: 14px;
}

.flow-step h3 {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 6px;
}

.flow-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================================
   PARTNERS SECTION
   =================================================== */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-section .section-tag {
    background: var(--warning-light);
    color: #b45309;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.partners-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partners-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.partners-card-icon {
    font-size: 28px;
    color: #b45309;
    margin-bottom: 14px;
}

.partners-card h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

.partners-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.partners-cta {
    text-align: center;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}

.faq-section .section-tag {
    background: var(--primary-light);
    color: var(--primary);
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    padding: 18px 24px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-item summary:hover {
    background: var(--bg);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item p {
    margin: 0;
    padding: 0 24px 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
    padding: 0;
    background: transparent;
}

.cta-band .container {
    padding-bottom: 60px;
    padding-top: 60px;
}

.cta-band-inner {
    background: linear-gradient(135deg, #1a1118 0%, #2d1a24 55%, #3a1e28 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(26, 17, 24, 0.35);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-band-content h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 8px;
    line-height: 1.25;
}

.cta-band-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.6;
}

.cta-band-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cta-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: var(--radius-full);
    padding: 14px 24px;
    font-weight: var(--font-weight-extrabold);
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-band-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #e94560);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.35);
}

.cta-band-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(196, 30, 58, 0.5);
}

.cta-band-btn--light {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-band-btn--light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1040px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-demo {
        max-width: 500px;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
    }

    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stat {
        border-bottom: 1px solid var(--border);
    }

    .trust-stat:nth-child(odd) {
        border-left: 1px solid var(--border);
    }

    .trust-stat:nth-child(even) {
        border-left: none;
    }

    .cases-grid,
    .products-grid,
    .widget-grid,
    .flow-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        max-width: 440px;
    }

    .cta-band-inner {
        padding: 32px 24px;
    }

    .cta-band-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-band-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stat {
        padding: 20px 12px;
    }

    .trust-stat-num {
        font-size: 22px;
    }
}

/* ===================================================
   REPORT SHOWCASE SECTION
   =================================================== */
.report-section {
    padding: 80px 0;
    background: var(--white);
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.report-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.report-card-num {
    font-size: 36px;
    font-weight: var(--font-weight-black);
    color: var(--primary);
    min-width: 48px;
    line-height: 1;
}

.report-card-num i {
    font-size: 32px;
}

.report-card-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}

.report-card-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.report-features {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
}

.report-features h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.report-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.report-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.report-feature i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
    min-width: 20px;
}

.report-feature strong {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 2px;
}

.report-feature span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.report-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .report-grid {
        grid-template-columns: 1fr;
    }

    .report-features-grid {
        grid-template-columns: 1fr;
    }
}
