:root {
    /* Colors - Light Theme (Clean, Modern, Approachable) */
    --bg-color: #ffffff;
    --surface-color: #f8fafc;
    /* Slate-50 for secondary backgrounds */
    --text-primary: #1f2937;
    /* Gray-900 */
    --text-secondary: #4b5563;
    /* Gray-600 */
    --accent-color: #a855f7;
    /* Purple Brand */
    /* Tech Purple */
    --accent-glow: rgba(168, 85, 247, 0.2);
    /* Softer glow for light mode */
    --highlight-color: #10b981;
    /* Success/Green */

    /* Typography */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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



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

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

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-primary:hover {
    background-color: #9333ea;
    /* Darker purple on hover */
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(168, 85, 247, 0.05);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
    background: linear-gradient(90deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-sm) 0;
    background-color: rgba(255, 255, 255, 0.9);
    /* White transparent */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

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

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

.logo img {
    height: 35px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    /* Dark text for light mode nav */
    font-weight: 600;
    /* Bolder for readability */
    font-size: 0.95rem;
}

.nav-link:hover:not(.btn) {
    color: var(--accent-color);
    background-color: transparent;
}

.nav-link.btn-primary {
    color: #ffffff !important;
}

.nav-link.btn-primary:hover {
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 100px 30px 30px;
        z-index: 999;
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link.btn {
        text-align: center;
        margin-top: 15px;
        border-bottom: none;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Credibility Strip */
.cred-strip {
    background: linear-gradient(135deg, #6d28d9 0%, #a855f7 50%, #7c3aed 100%);
    padding: 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.cred-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
}

.cred-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.cred-highlight {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.cred-highlight-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}

.cred-highlight-num small {
    font-size: 1.4rem;
    opacity: 0.7;
}

.cred-highlight-num .counter-value {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    display: inline;
}

.cred-highlight-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cred-sep {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cred-strip-inner {
        flex-wrap: wrap;
        gap: 24px;
        padding: 32px 24px;
        justify-content: center;
    }

    .cred-highlight {
        flex: 0 0 calc(50% - 16px);
    }

    .cred-sep {
        display: none;
    }

    .cred-highlight-num {
        font-size: 2.2rem;
    }
}

@media (max-width: 420px) {
    .cred-highlight {
        flex: 0 0 100%;
        justify-content: center;
    }
}

/* Pain Points Section */
.pain-section {
    background: #ffffff;
    padding: 70px 0 60px;
}

.pain-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.pain-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ef4444, #f97316);
    border-radius: 4px 0 0 4px;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(168, 85, 247, 0.15);
}

.pain-card:hover::before {
    background: linear-gradient(to bottom, var(--accent-color), #10b981);
}

.pain-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.pain-card:hover .pain-icon {
    background: #f3e8ff;
    color: var(--accent-color);
}

.pain-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pain-problem {
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 16px;
    font-style: italic;
}

.pain-solution {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f0fdf4;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}

.pain-solution i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pain-solution span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #166534;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pain-card {
        flex: 0 0 100%;
    }
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse-urgency 2s infinite;
}

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Scroll Explorer Button */
.scroll-explorer-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-explorer-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.1);
}

.scroll-explorer-btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.scroll-explorer-btn:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.3);
}

.scroll-explorer-btn:hover::before {
    top: 0;
}

.scroll-explorer-btn i {
    transition: transform 0.5s ease;
}

.scroll-explorer-btn:hover i {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

/* Background Abstract Shape */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.support-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* Floating Elements Styles */
.hero-visual {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.floating-elements {
    width: 100%;
    height: 100%;
    position: relative;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* DANFE Glassmorphism Card */
.glass-danfe {
    width: 280px;
    height: 380px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    top: 20px;
    left: 10%;
    z-index: 2;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.card-glass-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.glass-header {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    width: fit-content;
}

.glass-line {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    width: 100%;
}

.glass-line.small {
    width: 40%;
}

.glass-line.medium {
    width: 70%;
}

.glass-footer {
    margin-top: 40px;
    background: var(--highlight-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 4px;
    width: fit-content;
}

/* Sales Chart Card */
.sales-chart {
    width: 240px;
    height: 180px;
    background: white;
    bottom: 40px;
    right: 5%;
    z-index: 3;
    padding: 20px;
    animation: float-alt 7s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

.chart-header {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
}

.bar {
    flex: 1;
    background: var(--accent-color);
    border-radius: 4px 4px 0 0;
}

/* Inventory Card */
.inventory-card {
    width: 200px;
    height: auto;
    background: white;
    top: 30%;
    /* Raised from 40% */
    left: -2%;
    z-index: 4;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite 1s;
    border-left: 4px solid #f59e0b;
}

.inventory-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.inventory-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.inventory-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}



/* Cashier Card */
.cashier-card {
    width: 170px;
    height: auto;
    background: white;
    bottom: 5%;
    left: 8%;
    z-index: 5;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 7s ease-in-out infinite 2s;
    border-left: 4px solid #3b82f6;
}

.cashier-icon {
    width: 35px;
    height: 35px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Finance Card */
.finance-card {
    width: 200px;
    height: auto;
    background: white;
    top: 15%;
    right: 0;
    z-index: 4;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float-alt 7s ease-in-out infinite 1.5s;
    border-left: 4px solid #10b981;
}

.finance-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Mobile App Card */
.mobile-app-card {
    width: 220px;
    height: auto;
    background: white;
    bottom: 22%;
    /* Adjusted to be between Estoque and Caixa */
    left: -10%;
    /* Slightly more to the right to balance */
    z-index: 6;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 8s ease-in-out infinite 0.5s;
    border-left: 4px solid var(--accent-color);
}

.mobile-app-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Support Card Mini */
.support-card-mini {
    width: 180px;
    height: auto;
    background: white;
    top: -10px;
    right: 15%;
    z-index: 5;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: float-alt 6s ease-in-out infinite;
    border-radius: 15px;
}

.support-mini-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.support-mini-header i {
    color: #ef4444;
}

.support-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.p-purple {
    background: var(--accent-color);
    opacity: 0.3;
}

.p-green {
    background: var(--highlight-color);
    opacity: 0.3;
}

.p1 {
    width: 40px;
    height: 40px;
    top: 10%;
    right: 15%;
}

.p2 {
    width: 20px;
    height: 20px;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.p3 {
    width: 15px;
    height: 15px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.p4 {
    width: 30px;
    height: 30px;
    bottom: 10%;
    right: 30%;
    animation-delay: 1.5s;
}

.p5 {
    width: 25px;
    height: 25px;
    top: 25%;
    left: 40%;
    animation-delay: 0.5s;
    background: #f59e0b;
    opacity: 0.2;
}

.p6 {
    width: 18px;
    height: 18px;
    bottom: 40%;
    right: 10%;
    animation-delay: 2.5s;
    background: #3b82f6;
    opacity: 0.2;
}

.p7 {
    width: 22px;
    height: 22px;
    top: 15%;
    left: 5%;
    animation-delay: 0.8s;
}

.p8 {
    width: 12px;
    height: 12px;
    top: 40%;
    left: 8%;
    animation-delay: 2.2s;
}



/* Social Proof Strip */
.social-proof-strip {
    background: linear-gradient(135deg, var(--accent-color), #6b21a8);
    padding: 1rem 0;
    /* Reduced padding */
    color: white;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.proof-container {
    display: flex;
    flex-direction: row;
    /* Single line */
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.proof-plus-icon {
    width: 45px;
    /* Smaller icon to fit same line */
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.proof-text {
    font-size: 1.3rem;
    /* Slightly smaller for better line fit */
    font-weight: 500;
    font-family: var(--font-heading);
    margin: 0;
}

.counter-value {
    font-weight: 800;
    font-size: 1.8rem;
    display: inline-block;
}

/* Global Section Particles */
.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.section-particles .particle {
    position: absolute;
    opacity: 0.2;
    filter: blur(2px);
    animation: float 10s ease-in-out infinite;
}

@media (max-width: 768px) {
    .proof-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .proof-text {
        font-size: 1.2rem;
    }

    .counter-value {
        font-size: 2rem;
    }

    .proof-plus-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Base Particles positioned for any section */
.p-left-top {
    top: 10%;
    left: 5%;
}

.p-right-bottom {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

.p-center-right {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.p-bottom-left {
    bottom: 20%;
    left: 8%;
    animation-delay: 1.5s;
}

/* Support Card */
.support-card-mini {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 180px;
    height: 80px;
    background: white;
    top: 35%;
    right: 15%;
    z-index: 4;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    animation: float 5s ease-in-out infinite reverse;
    border-left: 4px solid var(--highlight-color);
}

/* Finance Card */
.finance-card {
    width: 190px;
    height: auto;
    background: white;
    top: 10%;
    right: 5%;
    z-index: 10;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-alt 8s ease-in-out infinite 0.5s;
    border-left: 4px solid #10b981;
}

.support-mini-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.support-mini-header i {
    color: var(--accent-color);
}

.support-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--highlight-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--highlight-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* PDV Sales Section */
.pdv-sales-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4c1d95 100%);
    /* Dark purple gradient */
    padding: var(--spacing-xl) 0;
    border-radius: 80px 80px 0 0;
    /* Only top-rounded */
    margin: 0;
    /* No margin - flush with previous section */
    width: 100%;
    /* Full width */
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pdv-sales-section h2 {
    color: white !important;
}

.pdv-sales-section h2 .highlight {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    font-weight: 900;
}

.pdv-video-container {
    max-width: 900px;
    /* Slightly larger video */
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16 / 9;
}

.pdv-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pdv-copy {
    max-width: 900px;
    /* Wider copy area */
    margin: 30px auto 40px;
    font-size: 1.5rem;
    /* More emphasis */
    font-weight: 700;
    /* Bolder */
    color: rgba(255, 255, 255, 0.9);
    /* White/Light purple for contrast */
    line-height: 1.4;
}

.btn-pulse-offer {
    display: inline-block;
    background: #16a34a;
    /* Using a solid green for better contrast */
    color: white;
    /* White text as requested */
    padding: 22px 60px;
    /* Slightly larger button */
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
    animation: heartBeat 2.2s infinite ease-in-out;
}

.btn-pulse-offer:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5);
    background: #16a34a;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.08);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.08);
    }

    70% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pdv-sales-section {
        border-radius: 40px;
        padding: var(--spacing-lg) 20px;
    }

    .pdv-sales-section h2 {
        font-size: 2rem;
    }
}

/* --- Mobile Solutions Section START --- */
.mobile-solutions-section {
    padding: var(--spacing-xl) 0;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.mb-80 {
    margin-bottom: 80px;
}

.mobile-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.mobile-row.reverse {
    flex-direction: row-reverse;
}

.mobile-text {
    flex: 1;
}

.mobile-mockup-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.app-brand-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.brand-germantech {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-color);
}

.brand-gourmet {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

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

.color-orange {
    color: #f97316;
}

.highlight-orange {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

.mobile-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mobile-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.app-features i {
    font-size: 1.2rem;
}

.germantech-features i {
    color: var(--accent-color);
}

.gourmet-features i {
    color: #f97316;
}

/* Device Mockups */
.device-mockup {
    position: relative;
    border-radius: 40px;
    background: #111;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    border: 8px solid #222;
    animation: float 6s ease-in-out infinite;
    /* Added floating animation */
}

.device-phone {
    width: 280px;
    height: 580px;
}

.device-tablet {
    width: 480px;
    height: 330px;
    border-radius: 20px;
    animation-name: float-alt;
    /* Different animation for variety */
    animation-delay: 1s;
}

.device-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet visual adjustments */
.device-tablet .device-screen {
    border-radius: 12px;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
}

.blob-purple {
    background: var(--accent-color);
    top: 10%;
    right: -10%;
}

.blob-orange {
    background: #f97316;
    bottom: 10%;
    left: -10%;
}

@media (max-width: 992px) {

    .mobile-row,
    .mobile-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .app-features li {
        justify-content: center;
    }

    .device-tablet {
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 16/10;
    }
}

/* --- Mobile Solutions Section END --- */

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float-alt {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }
}

/* Features Section */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    /* Much smaller gap to the content/subtitle below it */
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    /* Centered and closer to title */
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--surface-color);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(26, 26, 35, 0.8);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    background-color: var(--accent-color);
    color: rgba(255, 255, 255, 0.9);
    border-top: none;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    color: white;
    font-size: 1.4rem;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

/* Navigation Active State */
.nav-link.active {
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-color);
}

/* Feature Blocks */
.split-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.feature-img img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.alt-bg {
    background-color: var(--surface-color);
}

.feature-list {
    margin-top: var(--spacing-sm);
    list-style: disc;
    padding-left: var(--spacing-md);
    color: var(--text-secondary);
}

.feature-list li {
    margin-bottom: var(--spacing-xs);
}

/* Products Grid */
.products-section {
    text-align: center;
}

.products-section .section-title {
    margin-bottom: 20px;
    /* Reduced from default large spacing */
}

.product-visual-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.products-grid {
    display: grid;
    /* Show grid now that poster is gone */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.product-poster img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Support Section */
.support-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface-color), transparent);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.support-hours li {
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.highlight-text {
    color: var(--highlight-color);
    font-weight: 700;
}

/* CTA Section */
.cta-banner {
    position: relative;
    text-align: center;
}

.cta-actions {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.client-actions,
.prospect-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

/* New Contact Section Styles */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.contact-card {
    background: #ffffff;
    /* White cards as per image */
    color: #333;
    /* Dark text for contrast on white */
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.card-header-strip {
    height: 15px;
    width: 100%;
}

.purple-strip {
    background-color: var(--accent-color);
}

.dark-strip {
    background-color: #222;
}

.card-body {
    padding: var(--spacing-md);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #333;
    /* Dark gray instead of full purple */
}

.highlight-brand {
    color: var(--accent-color);
    /* Brand highlight in purple */
}

.prospect-card h3 {
    color: #666;
    /* Gray title for prospect */
    margin-bottom: 0;
}

.subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: var(--spacing-md);
}

.contact-item {
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.icon-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #555;
    /* Neutral gray for icons label */
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-purple-pill {
    background-color: var(--accent-color);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(168, 85, 247, 0.3);
}

.contact-info-list_vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.5rem;
    color: #ccc;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 0.9rem;
    color: #333;
}

.info-text span {
    font-size: 0.9rem;
    color: #666;
}

.info-text small {
    font-size: 0.75rem;
    color: #999;
}

.btn-gray-pill {
    background-color: #999;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    align-self: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    align-self: center;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: auto;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Base Override for this section to ensure it looks distinct */
.cta-section {
    background: #fcfcfc;
    /* Light background for this specific section contrast */
    padding-bottom: var(--spacing-xl);
}

.cta-section .section-title {
    color: #333;
    /* Section title back to dark gray for balance */
    margin-bottom: var(--spacing-lg);
}

/* Institutional Section */
.institutional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.institutional-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.institutional-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    text-align: justify;
}

.team-img-rounded {
    width: 100%;
    border-radius: 20px;
    /* Matching the rounded corners of the red square concept */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

    .team-img-rounded {
        margin-top: var(--spacing-md);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav-list {
        /* Simple mobile nav for now */
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Page Header (Legacy/Internal Pages) */
.page-header {
    position: relative;
    padding: 0;
    /* Removed padding to let flexbox center perfectly */
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    background-color: var(--accent-color);
    background-image: linear-gradient(135deg, var(--accent-color) 0%, #7c3aed 100%);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    color: white;
    overflow: hidden;
    margin-bottom: 2rem;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.header-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        min-height: 250px;
        padding-top: 120px;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }
}

.comparison-section {
    padding-top: var(--spacing-md) !important;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background-color: var(--surface-color);
    padding: var(--spacing-md);
    font-family: var(--font-heading);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}

.plan-header.brand-red {
    color: #ef4444 !important;
}

.plan-header.brand-light-purple {
    color: #a855f7 !important;
}

.plan-header.brand-dark-purple {
    color: #6b21a8 !important;
}

.plan-header.brand-orange {
    color: #f97316 !important;
}

.table-group-header {
    background-color: rgba(168, 85, 247, 0.05);
}

.table-group-header td {
    padding: 15px var(--spacing-md) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--accent-color);
    text-align: left;
}

.comparison-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.plan-header.web {
    color: #3b82f6;
}

.plan-header.emissor {
    color: #10b981;
}

.plan-header.light {
    color: #f59e0b;
}

.plan-header.manager {
    color: #8b5cf6;
}

.check {
    color: var(--highlight-color);
    font-size: 1.2rem;
}

.cross {
    color: #ef4444;
    opacity: 0.3;
}

.partial.check {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Modern Sales Support */
.sales-support-modern {
    background-color: #f8fafc;
    padding: var(--spacing-xl) 0;
}

.container-flex {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.sales-text-content {
    flex: 1;
    min-width: 300px;
}

.modern-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.modern-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.features-list-modern {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.features-list-modern li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}

.features-list-modern li strong {
    color: var(--accent-color);
}

.cta-mention {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.sales-video-container {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.video-overlay {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-overlay iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tax Reform Section */
.tax-reform-section {
    background: linear-gradient(135deg, #fdfaff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.05);
}

.tax-graphics-content {
    flex: 1.2;
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tax-text-content {
    flex: 1;
    padding: 0 40px;
}

.tax-benefits {
    margin: 30px 0;
    padding: 0;
}

.tax-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.tax-benefits i {
    color: var(--highlight-color);
    font-size: 1.4rem;
}

/* Tax Badges */
.tax-badge {
    background: white;
    padding: 18px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.12);
    display: flex;
    align-items: center;
    gap: 18px;
    position: absolute;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(168, 85, 247, 0.08);
    transition: transform 0.3s ease;
}

.tax-badge:hover {
    transform: scale(1.05) translateY(-5px);
}

.ibs-badge {
    top: 15%;
    left: 15%;
}

.cbs-badge {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #7c3aed);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.badge-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Floating Tax Particles */
.floating-tax-item {
    position: absolute;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.p-ibs {
    top: 5%;
    right: 15%;
    font-size: 4rem;
    animation: float-alt 9s infinite;
}

.p-cbs {
    bottom: 5%;
    left: 15%;
    font-size: 5rem;
    animation: float 11s infinite;
}

.p-percent {
    top: 45%;
    left: 45%;
    font-size: 3.5rem;
    animation: float-alt 7s infinite;
    opacity: 0.06;
}

@media (max-width: 992px) {
    .tax-reform-section .container-flex {
        flex-direction: column-reverse;
    }

    .tax-text-content {
        padding: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .tax-benefits li {
        justify-content: center;
    }

    .tax-graphics-content {
        min-height: 350px;
        width: 100%;
    }

    .ibs-badge {
        left: 5%;
    }

    .cbs-badge {
        right: 5%;
    }
}

.btn-pulse {
    animation: pulse-btn 2s infinite;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
}

.btn-pulse-custom {
    animation: grow-shrink 2s infinite ease-in-out;
    padding: 1.5rem 3rem !important;
    font-size: 1.3rem !important;
    background: linear-gradient(135deg, #a855f7, #7c3aed) !important;
    color: white !important;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

@keyframes grow-shrink {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container-flex {
        flex-direction: column;
        text-align: center;
    }

    .features-list-modern {
        text-align: left;
    }
}

/* Scroll Reveal System */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    pointer-events: none;
    /* Prevent interaction before visible */
}

.reveal-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
    pointer-events: auto !important;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(40px);
}

.reveal-right {
    transform: translateX(-40px);
}

.reveal-scale {
    transform: scale(0.95);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Grain Texture Effect */
.grain-bg {
    position: relative;
    overflow: hidden;
}

.grain-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    /* Increased from 0.04 for better visibility on light backgrounds */
}

/* Darker grain for purple/accent backgrounds */
section[class*="purple"].grain-bg::before,
section[class*="accent"].grain-bg::before,
.pdv-sales-section.grain-bg::before {
    opacity: 0.15;
    /* Slightly increased for consistency */
    mix-blend-mode: overlay;
}

/* Fix Visibility for Mobilidade Subtitle */
.mobile-solutions-section .section-subtitle {
    color: #4b5563 !important;
    /* Dark Gray (Slate 600) */
    opacity: 1 !important;
}

/* Nossa História Styles */
.about-header {
    height: 400px;
    position: relative;
    background-color: var(--surface-color);
    /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-header::before {
    content: 'Carregando Imagem...';
    /* Helper text or remove if preferred */
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: absolute;
    z-index: 0;
}

.about-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--surface-color);
    /* Ensure image container has background */
}

.leadership-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.leader-image-col {
    position: sticky;
    top: 100px;
}

.leader-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.leader-badge {
    margin-top: var(--spacing-sm);
    text-align: center;
    background: var(--surface-color);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.leader-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.leader-role {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.leader-bio p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.highlight-quote {
    border-left: 3px solid var(--accent-color);
    padding-left: var(--spacing-md);
    font-style: italic;
    color: var(--text-primary) !important;
    background: rgba(59, 130, 246, 0.05);
    padding: var(--spacing-md);
    border-radius: 0 8px 8px 0;
}

/* Responsive Adjustments for new pages */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leader-image-col {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

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

/* Testimonials Section */
.testimonials-section {
    text-align: center;
    background-color: var(--accent-color);
    /* Purple Background */
    color: white;
    /* White text for section title */
    position: relative;
    overflow: hidden;
    border-radius: 80px 80px 0 0;
    /* Rounded top, straight bottom */
    margin: 0;
    /* Full width, no side margins */
}

.testimonials-header {
    margin-bottom: var(--spacing-lg);
}

.stars-row {
    color: #f59e0b;
    /* Star Color */
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    /* Subtitle lighter white */
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

/* Horizontal Scroll Carousel */
.testimonials-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /* Hide scrollbar completely as requested */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */

    cursor: grab;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
    /* Pull out slightly */
}

.next-btn {
    right: -20px;
}

@media (max-width: 768px) {
    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }

    .testimonials-wrapper {
        padding: 0 var(--spacing-md);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    /* More transparent by default */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: var(--spacing-md);
    text-align: left;
    transition: all 0.4s ease;
    opacity: 0.7;
    /* Subtle fade on non-active cards */
    transform: scale(0.95);
    /* Slightly smaller */

    /* Flex item specific: Show 3 cards on desktop */
    flex: 0 0 calc(33.333% - 21px);
    scroll-snap-align: start;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85vw;
        /* Wider on mobile */
    }
}

/* Active/Highlighted Card State */
.testimonial-card.active {
    background: rgba(255, 255, 255, 1);
    /* Full white for active */
    opacity: 1;
    transform: scale(1);
    /* Full size */
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(0.98) translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    /* Placeholder */
    border: 2px solid var(--accent-color);
}

.placeholder-img {
    background-image: linear-gradient(135deg, #333, #444);
}

.profile-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

.profile-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    /* Darker gray for light mode */
    font-style: italic;
}

/* Animations Restoration */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}


/* Features Tabs Section - Refined */
.features-tabs-section {
    background-color: var(--surface-color);
    /* Light gray for contrast against white */
    padding: 80px 0;
    color: var(--text-primary);
    /* Dark text */
}

.text-green-brand {
    color: #a855f7;
    /* Purple color as requested */
}

/* Tabs Navigation - Visual Match */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    /* Darker line for light mode */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    /* Darker text for inactive tabs */
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 10px;
    cursor: pointer;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s;
}

.tab-btn:hover {
    opacity: 1;
}

.tab-btn.active {
    opacity: 1;
    color: #a855f7;
    /* Active text color - Purple */
}

/* Green active line */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Sits on top of the white line */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #a855f7;
    /* Purple active line */
    border-radius: 2px 2px 0 0;
}

/* Pills Grid - Visual Match */
.features-pills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.feature-pill {
    background-color: #f3e8ff;
    /* Light purple pill */
    color: #581c87;
    /* Dark purple text for contrast */
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    border: 1px solid transparent;
    animation: fadeInOnly 0.5s forwards, float-pills 6s ease-in-out infinite var(--float-delay, 0s);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
    /* Soft purple shadow instead of black */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}

@keyframes fadeInOnly {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.feature-pill:hover {
    transform: scale(1.05) translateY(-5px) !important;
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.3);
    /* Purple shadow */
    border-color: #a855f7;
    z-index: 100;
}

@keyframes float-pills {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pill-icon {
    width: 28px;
    height: 28px;
    background-color: #d8b4fe;
    /* Medium purple icon bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #581c87;
    /* Dark purple icon */
    font-size: 0.9rem;
}


/* Benefits Grid Section - Fix */
.benefits-section {
    padding: var(--spacing-lg) 0;
    background-color: white;
    /* Clean background for cards section */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.benefit-card {
    background-color: #f3e8ff;
    /* Light purple background */
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
    /* Soft purple shadow */
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #d8b4fe;
    /* Medium purple icon bg */
    border-radius: 16px;
    /* Soft square/rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #581c87;
    /* Dark purple icon color */
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a23;
    /* Dark heading */
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    color: #4b5563;
    /* Gray text body */
    line-height: 1.6;
}

/* Mobile Responsive Benefits */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .benefit-card {
        padding: 30px 20px;
    }
}

/* Specialized Support Mosaic Section */
.support-mosaic-section {
    background: var(--accent-color);
    padding: var(--spacing-xl) 0;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 80px 80px 0 0;
    /* Added rounded top corners */
}

.support-mosaic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.support-mosaic-text h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    color: white;
}

.support-mosaic-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    color: white;
}

.support-hours {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--highlight-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-hours p {
    color: #64748b;
    /* Cinza Slate suave para os horários */
    opacity: 1;
    margin-bottom: 8px;
    font-size: 1rem;
}

.support-hours p:last-child {
    margin-bottom: 0;
}

.support-hours strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--highlight-color);
    /* Títulos em verde conforme solicitado */
}

.support-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 100px);
    gap: 15px;
}

.mosaic-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.mosaic-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Specific Mosaic Spans */
.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .support-mosaic-container {
        grid-template-columns: 1fr;
    }

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

    .support-mosaic-text h2 {
        font-size: 2.5rem;
    }

    .support-mosaic-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .support-mosaic-text h2 {
        font-size: 2rem;
    }

    .support-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }
}

/* Navigation Trail (Scroll Path) - REMOVED */

/* Sections MUST NOT have a numerical z-index to avoid trapping children in a lower stacking context */
.section {
    position: relative;
    z-index: auto !important;
}

/* All content that should be ABOVE the trail */
.container,
.section-title,
.section-subtitle,
.support-mosaic-text,
.support-mosaic-grid,
.btn,
.feature-pill,
.contact-card,
.testimonial-card {
    position: relative;
    z-index: 10;
    /* High layer above trail */
}

/* Masking Blocks removed */

@media (max-width: 768px) {}

/* carrier Modal Style Restoration */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 550px;
    /* Slightly narrower */
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 30px;
    /* Reduced from 40px */
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    animation: modalIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #1e1b4b;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #1e1b4b;
    line-height: 1;
    transition: transform 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    /* Reduced from 2.8rem */
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 10px;
    /* Reduced from 15px */
    letter-spacing: -1px;
}

.modal-content p {
    color: #4b5563;
    font-size: 1rem;
    /* Reduced from 1.1rem */
    margin-bottom: 25px;
    /* Reduced from 35px */
    line-height: 1.4;
}

.form-group {
    margin-bottom: 15px;
    /* Reduced from 25px */
}

.form-row {
    display: flex;
    gap: 15px;
    /* Reduced from 20px */
}

.form-row .form-group {
    flex: 1;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #f9fafb;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e1b4b;
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 27, 75, 0.1);
}

.file-input-wrapper {
    margin-top: 20px;
    /* Reduced from 30px */
    padding: 20px;
    /* Reduced from 30px */
    background: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    text-align: center;
}

.file-input-wrapper label {
    display: block;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.btn-career-submit {
    display: block;
    width: 100%;
    padding: 15px;
    /* Reduced from 20px */
    background: #003a8c;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    /* Reduced from 1.2rem */
    margin-top: 20px;
    /* Reduced from 35px */
    cursor: pointer;
    transition: all 0.3s;
}

.btn-career-submit:hover {
    background: #002766;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 58, 140, 0.3);
}

@media (max-width: 600px) {
    .modal-content {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Product Showcase Sections */
.product-showcase {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.product-showcase.alt-bg {
    background-color: var(--surface-color);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.showcase-content {
    padding-right: var(--spacing-md);
}

.showcase-grid.reversed .showcase-content {
    order: 2;
    padding-right: 0;
    padding-left: var(--spacing-md);
}

.showcase-grid.reversed .showcase-visual {
    order: 1;
}

.showcase-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.badge-web {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-desktop {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    /* Blue */
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-gourmet {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.showcase-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.1;
    font-weight: 700;
}

.showcase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.feature-list {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.bg-web {
    background-color: #a855f7;
}

.bg-desktop {
    background-color: #3b82f6;
}

.bg-gourmet {
    background-color: #f97316;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Laptop Mockup CSS */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.laptop-mockup:hover {
    transform: rotateX(2deg) rotateY(2deg);
}

.laptop-screen-frame {
    background: #1a1a1a;
    border-radius: 16px 16px 0 0;
    padding: 3% 3% 0 3%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid #333;
}

.laptop-camera {
    position: absolute;
    top: 1.5%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

.laptop-screen-content {
    background-color: #000;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.laptop-screen-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed from cover to contain to ensure full visibility */
    object-position: center;
    background: #1a1a1a;
    /* Dark background for letterboxing effect */
    transition: object-position 2s ease-in-out;
}

.laptop-base {
    background: linear-gradient(to bottom, #d4d4d8 0%, #a1a1aa 100%);
    height: 18px;
    border-radius: 0 0 10px 10px;
    position: relative;
    margin-top: -1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.laptop-opener {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 4px;
    background: #71717a;
    border-radius: 0 0 4px 4px;
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-grid.reversed .showcase-content {
        order: 0;
        padding-left: 0;
    }

    .showcase-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }

    .showcase-title {
        font-size: 2rem;
    }
}

/* Horizontal Segments Scroller */
.segments-scroller {
    padding: 40px 0;
    /* Adjusted for title */
    overflow: hidden;
    background: #f1fcf4;
    /* Very light mint green for contrast */
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    z-index: 5;
}

.scroller-mini-title {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroller-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll-left 60s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

.segment-pill {
    background: #ffffff;
    /* White cards for contrast on light background */
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.segment-pill i {
    color: var(--highlight-color);
    /* Success green */
    font-size: 1.1rem;
}

.segment-pill:hover {
    background: #ffffff;
    border-color: var(--highlight-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}