/* 
   Verit Sales - Landing Page Stylesheet
   Focus: High-Performance, Mobile-First, Modern Typography, Clean Aesthetics
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens / Variables --- */
:root {
    /* Brand Colors */
    --primary-color: #c4622a;
    --primary-hover: #ab511f;
    --primary-light: #fef4ee;
    
    --secondary-color: #4a574a;
    --secondary-hover: #3a453a;
    --secondary-light: #f0f3f0;
    
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1ebd52;
    --whatsapp-light: #e8fbf0;
    
    /* Backgrounds */
    --bg-primary: #fafbfa;
    --bg-secondary: #ffffff;
    --bg-neutral: #f1f3f1;
    --bg-card-popular: #ffffff;
    
    /* Text Colors */
    --text-primary: #1c221c;
    --text-muted: #576357;
    --text-light: #ffffff;
    
    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(74, 87, 74, 0.04);
    --shadow-md: 0 8px 24px rgba(74, 87, 74, 0.08);
    --shadow-lg: 0 16px 48px rgba(74, 87, 74, 0.12);
    --shadow-primary: 0 10px 30px rgba(196, 98, 42, 0.2);
    --shadow-whatsapp: 0 10px 30px rgba(37, 211, 102, 0.15);
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 1.875rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    color: var(--text-muted);
}

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

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 1200px;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

/* --- Buttons & Interactive Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 98, 42, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--text-light);
    box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 251, 250, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 87, 74, 0.08);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(250, 251, 250, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: none; /* Hidden on mobile by default, handled responsively or simple header */
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-cta {
    display: none; /* Stack/hide on mobile, show on tablet+ */
}

/* --- Hamburger Mobile Navigation --- */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .nav-link {
    font-size: 1.5rem;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    background: radial-gradient(circle at top right, rgba(196, 98, 42, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(74, 87, 74, 0.05), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(196, 98, 42, 0.15);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

/* --- Hero Mockup Graphics (HTML/CSS) --- */
.hero-mockup-wrapper {
    width: 100%;
    perspective: 1000px;
}

.hero-mockup {
    background-color: #0b0f0b;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 4px solid #1a201a;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    transform: rotateX(5deg) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.hero-mockup:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
}

/* Mockup Window Header */
.mockup-header {
    background-color: #1c221c;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background-color: #ff5f56; }
.mockup-dot:nth-child(2) { background-color: #ffbd2e; }
.mockup-dot:nth-child(3) { background-color: #27c93f; }

.mockup-tab {
    background-color: rgba(255, 255, 255, 0.07);
    color: #e5e7eb;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-tab svg {
    width: 12px;
    height: 12px;
    color: var(--whatsapp-color);
}

/* Mockup Layout */
.mockup-body {
    display: flex;
    flex: 1;
    min-height: 0;
    background-color: #121812;
}

/* Sidebar */
.mockup-sidebar {
    width: 25%;
    background-color: #151d15;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    display: none; /* Hide on mobile mockup, show on larger */
}

.mockup-sidebar-item {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.mockup-sidebar-item.active {
    background-color: rgba(196, 98, 42, 0.2);
    border-left: 2px solid var(--primary-color);
}

/* Main Area - Kanban Board */
.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    min-height: 0;
}

.mockup-main-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.mockup-title-text {
    width: 80px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.mockup-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
}

.kanban-col {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.kanban-col-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.kanban-label {
    height: 6px;
    width: 40px;
    border-radius: 3px;
}

.col-1 .kanban-label { background-color: rgba(255, 255, 255, 0.2); }
.col-2 .kanban-label { background-color: var(--primary-color); }
.col-3 .kanban-label { background-color: var(--whatsapp-color); }

.kanban-card {
    background-color: #1e261e;
    border-radius: 6px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-fast);
}

.kanban-card:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 98, 42, 0.3);
}

.card-title {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    width: 70%;
}

.card-desc {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    margin-bottom: 0.5rem;
    width: 90%;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-avatar {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.card-tag {
    height: 6px;
    width: 25px;
    border-radius: 3px;
    background-color: rgba(37, 211, 102, 0.15);
}

/* Chat Popup inside Mockup */
.mockup-chat-popup {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 160px;
    background-color: #1e261e;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chatPopup 4s infinite alternate ease-in-out;
}

@keyframes chatPopup {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.chat-header {
    background-color: #25D366;
    padding: 0.4rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-avatar {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    font-weight: 800;
    color: var(--whatsapp-color);
}

.chat-name {
    color: white;
    font-size: 7px;
    font-weight: 700;
}

.chat-status {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #4ade80;
    margin-left: auto;
}

.chat-messages {
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.chat-bubble {
    padding: 0.3rem 0.4rem;
    border-radius: 4px;
    max-width: 85%;
    font-size: 7px;
    line-height: 1.3;
}

.bubble-received {
    background-color: rgba(255, 255, 255, 0.06);
    color: #e5e7eb;
    align-self: flex-start;
}

.bubble-sent {
    background-color: rgba(37, 211, 102, 0.15);
    color: #e8fbf0;
    align-self: flex-end;
}

/* --- Section Title General --- */
.section-header {
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* --- Seção 2 - Benefícios Matadores --- */
.benefits-section {
    background-color: var(--bg-neutral);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 87, 74, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 98, 42, 0.15);
}

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

.benefit-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background-color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    transition: all var(--transition-fast);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.benefit-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Seção 3 - Tabela de Preços --- */
.pricing-section {
    background-color: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 1rem;
}

.pricing-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(74, 87, 74, 0.08);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Featured / Popular Card Styling */
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-card-popular);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 50px rgba(196, 98, 42, 0.15);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(196, 98, 42, 0.2);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.pricing-card.popular .plan-name {
    color: var(--primary-color);
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.plan-currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.plan-feature-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    margin-top: 2px;
}

.pricing-card.popular .plan-feature-item svg {
    color: var(--primary-color);
}

.plan-cta {
    width: 100%;
}

.pricing-card.popular .plan-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-primary);
}

.pricing-card.popular .plan-cta:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 10px 25px rgba(196, 98, 42, 0.35);
}

/* --- Seção 4 - CTA Final --- */
.final-cta-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(196, 98, 42, 0.15), transparent 60%);
    pointer-events: none;
}

.final-cta-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    color: var(--text-light);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.final-cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.final-cta-actions .btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.final-cta-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
}

/* --- Rodapé (Footer) --- */
.footer {
    background-color: #181d18;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 4rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

/* --- Media Queries / Responsive Adaptation (Mobile-First) --- */

/* Small Tablets / Large Mobile (576px+) */
@media (min-width: 576px) {
    h1, .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-actions, .final-cta-actions {
        flex-direction: row;
    }
    
    .hero-actions .btn, .final-cta-actions .btn {
        width: auto;
    }
    
    .pricing-card {
        padding: 3rem 2.5rem;
    }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: none;
    }
    
    .header-cta {
        display: inline-flex;
    }
    
    .hero-section {
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .pricing-card.popular {
        transform: scale(1.03);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.05) translateY(-5px);
    }
    
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktops (1024px+) */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 52% 48%;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-badge {
        margin-left: 0;
    }
    
    .hero-subtitle {
        margin-left: 0;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    .mockup-sidebar {
        display: block;
    }
    
    .pricing-grid {
        gap: 1.75rem;
    }
    
    .pricing-card {
        padding: 3.5rem 2.5rem;
    }
}
