/* ==========================================================================
   CSS Específico para a página da Plataforma - Estilo Premium e Imersivo
   ========================================================================== */

/* Utilities */
.text-center {
    text-align: center !important;
}

/* Cores Adicionais & Efeitos de Brilho */
:root {
    --color-dark-glow: #0d281a;
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(24, 69, 48, 0.3);
    --shadow-glow-yellow: 0 0 40px rgba(240, 181, 48, 0.2);
}

/* Animações e Efeitos de Entrada */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.plat-hero {
    padding: 10rem 0 7rem 0;
    background: linear-gradient(135deg, var(--color-brand-green, #184530) 0%, #0d281a 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.plat-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49%, var(--color-bg-white, #ffffff) 50%);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(240, 181, 48, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.plat-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.plat-hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

/* Moldura e Efeito 3D do Smartphone */
.mockup-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.mockup-frame img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    border: 6px solid rgba(255, 255, 255, 0.1);
    background-color: #000;
    transition: transform 0.3s ease;
}

.mockup-frame:hover img {
    transform: scale(1.02) rotate(-1deg);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

.mockup-glow.bg-green {
    background: radial-gradient(circle, rgba(32, 92, 64, 0.5) 0%, transparent 70%);
}

.mockup-glow.bg-yellow {
    background: radial-gradient(circle, rgba(240, 181, 48, 0.25) 0%, transparent 70%);
}

/* ==========================================================================
   Bento Grid de Funcionalidades
   ========================================================================== */
.plat-features {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-brand-green, #184530) 0%, #0d281a 100%);
    color: #ffffff;
    position: relative;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0.5rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 1rem auto 0 auto;
}

/* Layout Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover no Bento Card */
.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.bento-card:hover::before {
    opacity: 1;
}

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

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-brand-yellow, #ffbc00);
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
}

.bento-card:hover .card-icon {
    background-color: var(--color-brand-yellow, #ffbc00);
    color: #111111;
    transform: scale(1.05);
}

.card-icon i {
    width: 28px;
    height: 28px;
}

.bento-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.bento-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}

/* Variações de Tamanho do Bento Grid */
.card-large {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.card-large h3 {
    color: #ffffff;
}

.card-large p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

.card-large .card-icon {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-brand-yellow, #ffbc00);
}

.card-large:hover .card-icon {
    background-color: var(--color-brand-yellow, #ffbc00);
    color: #111111;
}

.card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Glow interno sutil */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(240, 181, 48, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* ==========================================================================
   Vitrine Interativa do Aplicativo
   ========================================================================== */
.plat-app-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-bg-light, #F4F6F5) 0%, #ffffff 100%);
    overflow: hidden;
}

.showcase-header {
    margin-bottom: 5rem;
}

.showcase-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-brand-green, #184530);
    margin-top: 0.5rem;
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Botões das Abas */
.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-tab {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: transparent;
    border: none;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 4px solid transparent;
}

.showcase-tab:hover {
    background-color: rgba(24, 69, 48, 0.02);
}

.showcase-tab.active {
    background-color: #ffffff;
    border-left-color: var(--color-brand-yellow, #ffbc00);
    box-shadow: 0 10px 30px rgba(24, 69, 48, 0.05);
}

.tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(24, 69, 48, 0.05);
    color: var(--color-brand-green, #184530);
    transition: all 0.3s ease;
}

.showcase-tab.active .tab-icon {
    background-color: var(--color-brand-green, #184530);
    color: var(--color-brand-yellow, #ffbc00);
}

.tab-icon i {
    width: 22px;
    height: 22px;
}

.tab-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark, #1e1e1e);
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.showcase-tab.active .tab-info h3 {
    color: var(--color-brand-green, #184530);
}

.tab-info p {
    font-size: 0.95rem;
    color: var(--color-text-gray, #666666);
    line-height: 1.5;
}

/* Display Mockup Screens */
.showcase-display {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-display .glow-effect {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(24, 69, 48, 0.15) 0%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.display-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.92) translateY(10px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.display-item.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 3;
    pointer-events: auto;
}

.display-item img {
    height: 100%;
    border-radius: 36px;
    border: 5px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #000;
}

/* ==========================================================================
   Seção de Gestão Administrativa / Central
   ========================================================================== */
.plat-admin {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-brand-green, #184530) 0%, #0d281a 100%);
    color: #ffffff;
    position: relative;
}

.admin-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

.admin-row:last-child {
    margin-bottom: 0;
}

.admin-row.reverse {
    direction: ltr;
}

.admin-row.reverse .admin-text {
    order: 2;
}

.admin-row.reverse .admin-media {
    order: 1;
}

.admin-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.admin-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.admin-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.admin-list li i {
    width: 24px;
    height: 24px;
    color: var(--color-brand-yellow, #ffbc00);
    flex-shrink: 0;
    margin-top: 2px;
}

.admin-list li span {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
}

.admin-list li strong {
    color: var(--color-brand-yellow, #ffbc00);
}

/* Mockup Media Frame */
.admin-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.admin-media .mockup-frame {
    max-width: 320px;
    animation: none; /* Sem flutuação para visual focado */
}

.admin-media .mockup-frame img {
    border-radius: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.plat-faq {
    padding: 8rem 0;
    background-color: var(--color-bg-light, #F4F6F5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid rgba(24, 69, 48, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(24, 69, 48, 0.1);
    box-shadow: 0 10px 25px rgba(24, 69, 48, 0.04);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark, #1e1e1e);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-brand-green, #184530);
}

/* FAQ Icon Animation */
.faq-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon-plus, .faq-icon-minus {
    position: absolute;
    width: 20px;
    height: 20px;
    color: var(--color-brand-green, #184530);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.faq-icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.open .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.open .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-item.open {
    border-color: rgba(24, 69, 48, 0.15);
}

.faq-item.open .faq-question {
    color: var(--color-brand-green, #184530);
    border-bottom: 1px solid rgba(24, 69, 48, 0.05);
}

.faq-answer {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-gray, #666666);
    display: none;
    background-color: rgba(24, 69, 48, 0.01);
    animation: fadeIn 0.3s ease;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ==========================================================================
   Final CTA Banner Section
   ========================================================================== */
.plat-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-brand-green, #184530) 0%, #0d281a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.plat-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(240, 181, 48, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.cta-action {
    flex-shrink: 0;
}

/* ==========================================================================
   Vitrine Plataforma Web
   ========================================================================== */
.plat-web-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-light, #F4F6F5) 100%);
    overflow: hidden;
}

.web-showcase-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 5rem;
    max-width: 1150px;
    margin: 0 auto;
}

.web-tabs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.web-tab {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: transparent;
    border: none;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 4px solid transparent;
}

.web-tab:hover {
    background-color: rgba(24, 69, 48, 0.02);
}

.web-tab.active {
    background-color: #ffffff;
    border-left-color: var(--color-brand-yellow, #ffbc00);
    box-shadow: 0 10px 30px rgba(24, 69, 48, 0.05);
}

.web-tab-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(24, 69, 48, 0.15);
    line-height: 1;
    transition: color 0.3s ease;
}

.web-tab.active .web-tab-number {
    color: var(--color-brand-yellow, #ffbc00);
}

.web-tab-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark, #1e1e1e);
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.web-tab.active .web-tab-text h3 {
    color: var(--color-brand-green, #184530);
}

.web-tab-text p {
    font-size: 0.9rem;
    color: var(--color-text-gray, #666666);
    line-height: 1.45;
}

/* Laptop Mockup CSS */
.web-display {
    position: relative;
    width: 100%;
}

.laptop-frame {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    z-index: 2;
}

.laptop-screen {
    position: relative;
    aspect-ratio: 16/10;
    background-color: #0d1117;
    border-radius: 16px 16px 0 0;
    border: 8px solid #222;
    border-bottom: none;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.web-display-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.web-display-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

.web-display-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laptop-base {
    position: relative;
    width: 112%;
    height: 14px;
    background: #e1e4e8;
    background: linear-gradient(to bottom, #e1e4e8 0%, #abb2b9 100%);
    border-radius: 0 0 12px 12px;
    left: -6%;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16%;
    height: 4px;
    background-color: rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
}

.laptop-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 110%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(60px);
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
}

.laptop-glow.bg-green {
    background: radial-gradient(circle, rgba(24, 69, 48, 0.4) 0%, transparent 70%);
}

/* ==========================================================================
   Lightbox / Modal Zoom
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(13, 40, 26, 0.88); /* Tom escuro verde translúcido */
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-brand-yellow, #ffbc00);
    transform: scale(1.1);
}

/* Cursor de Lupa nas imagens de mockup e vitrine */
.display-item img, .web-display-item img, .mockup-frame img {
    cursor: zoom-in;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.display-item img:hover, .web-display-item img:hover {
    transform: scale(1.015);
    filter: brightness(1.03);
}

/* ==========================================================================
   Media Queries & Responsividade
   ========================================================================== */

/* Telas Grandes / Notebooks */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

/* Tablets e Desktops Pequenos */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .plat-hero {
        padding: 9rem 0 5rem 0;
    }

    .plat-hero-text h1 {
        font-size: 3rem;
    }

    .plat-hero-text p {
        margin: 0 auto 2.5rem auto;
    }

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

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 750px;
    }

    .card-large, .card-wide {
        grid-column: span 2;
    }

    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 600px;
    }

    .showcase-tabs {
        order: 2;
    }

    .showcase-display {
        order: 1;
        height: 520px;
    }

    .admin-row, .admin-row.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .admin-row.reverse .admin-text, .admin-row.reverse .admin-media {
        order: initial;
    }

    .admin-list {
        align-items: center;
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .web-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 600px;
    }
    
    .web-tabs {
        order: 2;
    }
    
    .web-display {
        order: 1;
    }
}

/* Celulares */
@media (max-width: 767px) {
    .plat-hero-text h1 {
        font-size: 2.25rem;
    }

    .plat-hero-text p {
        font-size: 1.1rem;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-large, .card-wide {
        grid-column: span 1;
    }

    .showcase-display {
        height: 450px;
    }

    .section-header h2, .showcase-header h2, .admin-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 1.25rem 1.5rem;
    }

    .web-tab {
        padding: 1rem 1.25rem;
    }
    
    .web-tab-number {
        font-size: 1.25rem;
    }
    
    .web-tab-text h3 {
        font-size: 1.1rem;
    }
    
    .laptop-base {
        width: 106%;
        left: -3%;
    }
}
