/* =========================================
   RASTROFLOW - PREMIUM SAAS STYLESHEET
   ========================================= */

:root {
    /* Colors */
    --clr-bg: rgb(17, 24, 39);
    /* Dark slate profundo / #111827 */
    --clr-bg-surface: rgba(31, 41, 55, 0.4);
    /* Levemente mais claro para panels */
    --clr-primary: rgb(74, 222, 128);
    /* Verde moderno vibrante / #4ade80 */
    --clr-primary-dark: rgb(34, 197, 94);
    --clr-primary-glow: rgba(74, 222, 128, 0.3);
    --clr-primary-glow-strong: rgba(74, 222, 128, 0.6);

    --clr-text: #f3f4f6;
    --clr-text-muted: #9ca3af;

    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-border-highlight: rgba(74, 222, 128, 0.2);

    --clr-transit: #fbbf24;
    --clr-delivered: #4ade80;
    --clr-alert: #f87171;

    /* Fonts */
    --font-main: 'Inter', sans-serif;

    /* Layout */
    --container-max: 1200px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================== RESET & BASE ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
    line-height: 1.5;
}

body {
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

.accent-glow {
    color: var(--clr-primary);
    text-shadow: 0 0 16px var(--clr-primary-glow);
}

/* ================== UTILITIES & EFFECTS ================== */
.glass-panel {
    background: var(--clr-bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--clr-border-highlight);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px var(--clr-primary-glow);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--clr-primary);
    color: #064e3b;
    /* Texto escuro no btn p/ contraste */
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 2px solid var(--clr-border);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background: rgba(74, 222, 128, 0.05);
}

/* Acessibilidade - Focus States */
.btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--clr-primary);
    outline-offset: 2px;
}

.btn-outline:focus-visible {
    background: rgba(74, 222, 128, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

.glow-effect {
    box-shadow: 0 0 20px var(--clr-primary-glow);
}

.glow-effect:hover {
    box-shadow: 0 0 30px var(--clr-primary-glow-strong);
}

/* ================== NAVBAR ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.nav-links li a:hover {
    color: var(--clr-text);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    padding: 24px;
    gap: 16px;
    animation: slideDown 0.3s ease-out;
}

.nav-links.mobile-menu-open {
    flex-direction: column;
    gap: 16px;
}

.nav-actions.mobile-menu-open {
    flex-direction: column;
    gap: 12px;
}

.menu-toggle.menu-open i {
    transform: rotate(90deg);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
        transition: transform 0.3s ease;
    }
}

/* ================== HERO SECTION ================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    transform: perspective(500px) rotateX(60deg) translateY(-100px);
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black, transparent);
    animation: gridMove 20s linear infinite;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    background: var(--clr-primary);
}

.main-glow {
    width: 600px;
    height: 600px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Copy Esquerdo */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 100px;
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--clr-primary);
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.headline span {
    color: var(--clr-primary);
}

.subheadline {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

/* Visual Mockup Direito */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.floating-mockup {
    position: relative;
    animation: floatAnim 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
}

.radial-gradient-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--clr-primary-glow-strong) 0%, transparent 60%);
    opacity: 0.4;
    filter: blur(40px);
    z-index: -1;
}

.mockup-window {
    width: 100%;
    background: rgba(17, 24, 39, 0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--clr-border);
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--clr-border);
}

.mac-dots {
    display: flex;
    gap: 8px;
    margin-right: 24px;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-dots span:nth-child(1) {
    background: #ef4444;
}

.mac-dots span:nth-child(2) {
    background: #eab308;
}

.mac-dots span:nth-child(3) {
    background: #22c55e;
}

.mockup-search {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--clr-border);
}

.mockup-body {
    display: flex;
    height: 350px;
}

.mockup-sidebar {
    width: 30%;
    background: rgba(255, 255, 255, 0.01);
    border-right: 1px solid var(--clr-border);
    padding: 16px;
}

.ms-item {
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.ms-item.active {
    background: rgba(74, 222, 128, 0.1);
    color: var(--clr-primary);
}

.mockup-main {
    width: 70%;
    padding: 24px;
}

.mockup-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.m-stat-card {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 12px;
}

.m-stat-card span {
    display: block;
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.m-stat-card strong {
    font-size: 1.2rem;
}

.m-stat-card.highlight {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: inset 0 0 20px rgba(74, 222, 128, 0.05);
}

.m-stat-card.highlight strong {
    color: var(--clr-primary);
}

.mockup-table {
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

.m-table-header {
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--clr-border);
}

.m-table-row {
    display: flex;
    padding: 10px 16px;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.75rem;
}

.m-table-row:last-child {
    border-bottom: none;
}

.mtr-col {
    flex: 1;
}

.status {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
}

.st-transit {
    background: rgba(251, 191, 36, 0.1);
    color: var(--clr-transit);
}

.st-delivered {
    background: rgba(74, 222, 128, 0.1);
    color: var(--clr-delivered);
}

.st-alert {
    background: rgba(248, 113, 113, 0.1);
    color: var(--clr-alert);
}


/* ================== PROBLEM -> SOLUTION ================== */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--clr-bg), rgba(17, 24, 39, 0.95));
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

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

.problem-card {
    text-align: center;
    padding: 32px;
}

.p-icon {
    font-size: 2.5rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.solution-banner {
    padding: 40px;
    text-align: center;
    font-size: 1.5rem;
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(74, 222, 128, 0.05);
}


/* ================== BENEFÍCIOS ================== */
.benefits {
    padding: 100px 0;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: var(--clr-primary-glow);
    filter: blur(150px);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0.3;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.b-mockup {
    padding: 30px;
}

.b-mockup-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border);
}

.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 10px;
    bottom: 20px;
    width: 2px;
    background: var(--clr-border);
}

.tl-item {
    position: relative;
    margin-bottom: 32px;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-text-muted);
}

.tl-item.done .tl-dot {
    background: var(--clr-primary);
}

.tl-item.active .tl-dot {
    background: var(--clr-primary);
    box-shadow: 0 0 10px var(--clr-primary);
}

.glow-pulse .tl-dot {
    animation: glowPulseAnim 2s infinite;
}

.tl-content strong {
    display: block;
    margin-bottom: 4px;
}

.tl-content span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.bi-icon {
    font-size: 1.8rem;
    color: var(--clr-primary);
}

.bi-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.bi-text p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}


/* ================== PLANOS E PREÇOS ================== */
.pricing {
    padding: 120px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.price-card {
    padding: 40px;
    position: relative;
}

.price-card.highlighted {
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-primary);
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.pc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: #064e3b;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 10px var(--clr-primary-glow);
}

.pc-header {
    text-align: center;
    margin-bottom: 32px;
}

.pc-header h3 {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price .value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price .period {
    color: var(--clr-text-muted);
}

.price-equivalent {
    font-size: 0.85rem;
    color: var(--clr-primary);
    margin-top: 12px;
    font-weight: 500;
}

.pc-features {
    margin-bottom: 40px;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.pc-features li i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

/* Banner de Acesso Exclusivo */
.pricing-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-color: rgba(74, 222, 128, 0.3);
}

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

.pb-icon {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 24px;
    animation: floatAnim 6s ease-in-out infinite;
}

.pricing-banner h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--clr-text);
}

.pricing-banner p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pb-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--clr-primary);
    filter: blur(100px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .pricing-banner {
        padding: 40px 24px;
    }
    
    .pb-icon {
        font-size: 2.5rem;
    }
    
    .pricing-banner h3 {
        font-size: 1.5rem;
    }
    
    .pricing-banner p {
        font-size: 1rem;
    }
}

/* ================== CONFIANÇA ================== */
.trust {
    padding: 40px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    background: rgba(0, 0, 0, 0.2);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text-muted);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--clr-primary);
    opacity: 0.8;
}


/* ================== CTA ================== */
.cta-section {
    padding: 120px 0;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    border-color: rgba(74, 222, 128, 0.3);
}

.cta-glow {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}


/* ================== FOOTER ================== */
footer {
    background: #0f141f;
    /* Darker solid color */
    padding: 80px 0 40px;
    border-top: 1px solid var(--clr-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.fl-col h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: white;
}

.fl-col a {
    display: block;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.fl-col a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.heart {
    color: var(--clr-primary);
}


/* ================== ANIMATIONS ================== */
@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px);
    }
}

@keyframes floatAnim {
    0% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: rotateY(-10deg) rotateX(8deg) translateY(-20px);
    }

    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0px);
    }
}

@keyframes glowPulseAnim {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse-anim {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}


/* Otimização para Mobile - Reduzir animações */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    /* Simplificar animações em mobile */
    .floating-mockup {
        animation: none !important;
    }

    .particles {
        display: none;
    }

    .glow-sphere {
        filter: blur(150px);
        opacity: 0.08;
    }

    @keyframes floatAnim {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
    .headline {
        font-size: 2.8rem;
    }

    .hero-container,
    .benefits-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .badge {
        margin: 0 auto 24px;
    }

    .subheadline {
        margin: 0 auto 40px;
    }

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

    .floating-mockup {
        transform: none;
        animation: none;
        margin-top: 40px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.highlighted {
        transform: scale(1);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .headline {
        font-size: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-mockup {
        transform: scale(0.9) rotateY(-15deg) rotateX(5deg);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 60px 30px;
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
        /* Add JS menu toggle in real scenario */
    }

    .menu-toggle {
        display: block;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}