/* ============================================
   V3WEB — Institutional Website Styles
   SEO + CRO Optimized | 2024
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #01042d;
    --primary-light: #060b4e;
    --primary-dark: #000118;
    --accent: #ffea00;
    --accent-hover: #ffe100;
    --accent-glow: rgba(255, 234, 0, 0.3);
    --accent-soft: rgba(255, 234, 0, 0.1);
    --blue-light: #020c50;
    --green: #00c853;
    --green-soft: rgba(0, 200, 83, 0.1);
    --red: #ff4444;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --container: 1200px;
    --container-sm: 800px;
}

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

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

body {
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

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

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

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ========== UTILITY ========== */
.highlight { color: var(--accent); }
.highlight-blue { color: var(--primary); }
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-family);
    text-align: center;
    justify-content: center;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* ========== LEGAL CONTENT ========== */
.legal-content {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 2rem;
    font-size: 1.1rem;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}
.legal-content h2 {
    color: var(--primary);
    margin-top: 2rem;
    font-weight: 700;
    font-size: 1.75rem;
}
.legal-content h3 {
    color: var(--primary);
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.35rem;
}
.legal-content .lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}
.legal-content hr {
    border: 0;
    border-top: 2px solid var(--gray-200);
    margin: 3rem 0;
}
.card.border-left-primary {
    border-left: 4px solid var(--primary);
}
.card.border-left-success {
    border-left: 4px solid #28a745;
}
.card.border-left-warning {
    border-left: 4px solid var(--accent);
}
.card.border-left-info {
    border-left: 4px solid #17a2b8;
}
.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}
.legal-content table {
    margin-top: 1.5rem;
    border-collapse: collapse;
    width: 100%;
}
.legal-content table td {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
}
.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-light);
}

.legal-content .legal-data-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    margin: 1rem 0 1.5rem !important;
    background: #ffffff !important;
    border: 2px solid #c8d0da !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.legal-content .legal-data-table thead {
    display: table-header-group !important;
}

.legal-content .legal-data-table tbody {
    display: table-row-group !important;
}

.legal-content .legal-data-table tr {
    display: table-row !important;
}

.legal-content .legal-data-table th,
.legal-content .legal-data-table td {
    display: table-cell !important;
    border: 1px solid #c8d0da !important;
    padding: 0.85rem 1rem !important;
    vertical-align: top !important;
    text-align: left !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.legal-content .legal-data-table th {
    background: #e8edf5 !important;
    color: #01042d !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    border-bottom: 2px solid #c8d0da !important;
}

.legal-content .legal-data-table td {
    color: #374151 !important;
    background: #ffffff !important;
}

.legal-content .legal-data-table tbody tr:nth-child(even) td {
    background: #f0f4fa !important;
}

.legal-content .legal-data-table tbody tr:hover td {
    background: #e8f0fb !important;
}

.legal-content .legal-bullet-list {
    list-style: disc;
    margin: 0.8rem 0 1.5rem 1.4rem;
    padding-left: 0.4rem;
}

.legal-content .legal-bullet-list li {
    margin-bottom: 0.55rem;
    line-height: 1.6;
}

.legal-content .legal-bullet-list li:last-child {
    margin-bottom: 0;
}
.legal-updated {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: 20px !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e7eb !important;
    padding: 0 !important;
}

.cookie-banner .cookie-content {
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.cookie-banner .cookie-icon {
    font-size: 3rem !important;
    color: #ffea00 !important;
    text-align: center !important;
    animation: bounce 2s infinite !important;
}

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

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

.cookie-banner .cookie-text h4 {
    color: #01042d !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

.cookie-banner .cookie-text p {
    color: #6b7280 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.cookie-banner .cookie-text a {
    color: #ffea00 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.cookie-banner .cookie-text a:hover {
    color: #01042d !important;
    border-bottom-color: #ffea00 !important;
}

.cookie-banner .cookie-actions {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.cookie-banner .btn-cookie-accept,
.cookie-banner .btn-cookie-reject {
    flex: 1 !important;
    min-width: 150px !important;
    padding: 0.875rem 1.5rem !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.cookie-banner .btn-cookie-accept {
    background: linear-gradient(135deg, #ffea00 0%, #f7d600 100%) !important;
    color: #01042d !important;
    box-shadow: 0 4px 15px rgba(255, 234, 0, 0.3) !important;
}

.cookie-banner .btn-cookie-accept:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 234, 0, 0.4) !important;
}

.cookie-banner .btn-cookie-reject {
    background: #ffffff !important;
    color: #6b7280 !important;
    border: 2px solid #d1d5db !important;
}

.cookie-banner .btn-cookie-reject:hover {
    background: #f9fafb !important;
    border-color: #9ca3af !important;
    color: #01042d !important;
}

.cookie-banner.hide {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(100px) scale(0.9) !important;
    visibility: hidden !important;
    display: none !important;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem !important;
        right: 1rem !important;
        left: 1rem !important;
        max-width: 100% !important;
    }
    
    .cookie-banner .cookie-content {
        padding: 1.5rem !important;
    }
    
    .cookie-banner .cookie-actions {
        flex-direction: column !important;
    }
    
    .cookie-banner .btn-cookie-accept,
    .cookie-banner .btn-cookie-reject {
        width: 100% !important;
    }
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-green:hover {
    background: #00b848;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ========== HEADER / NAVBAR ========== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

#header.scrolled {
    background: rgba(1, 4, 45, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.navbar { padding: 0; }

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-logo:hover img { filter: brightness(1.1); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link-cta {
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 700;
    padding: 10px 24px;
    margin-left: 8px;
}

.nav-link-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
    color: var(--primary) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 8px;
    border: 0;
    background: transparent;
}

.hamburger .bar {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
    background: var(--primary);
    color: var(--white);
}

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

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 234, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 234, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 234, 0, 0.1);
    border: 1px solid rgba(255, 234, 0, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
}

.hero-badge i { font-size: 0.75rem; }

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.hero-title .typing-line {
    display: block;
    min-height: 1.2em;
}

.hero-typing { color: var(--accent); }

.typing-cursor {
    color: var(--accent);
    animation: blink 1s infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto 16px;
    line-height: 1.8;
}

.hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 32px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-price strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Trust Bar (inside hero) */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.wheel {
    width: 3px;
    height: 7px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ========== SECTIONS COMMON ========== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(255, 234, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--primary);
    line-height: 1.2;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto 18px;
}

.section-divider-left {
    margin: 0 0 18px 0;
}

.section-description {
    font-size: 1.02rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dark sections */
.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-description { color: rgba(255, 255, 255, 0.6); }
.section-dark .section-tag {
    background: rgba(255, 234, 0, 0.1);
    border-color: rgba(255, 234, 0, 0.25);
    color: var(--accent);
}

.section-dark-light {
    background: var(--primary-light);
    color: var(--white);
}

.section-dark-light .section-title { color: var(--white); }
.section-dark-light .section-description { color: rgba(255, 255, 255, 0.6); }
.section-dark-light .section-tag {
    background: rgba(255, 234, 0, 0.1);
    border-color: rgba(255, 234, 0, 0.25);
    color: var(--accent);
}

.section-gray { background: var(--gray-50); }

/* ========== SOCIAL PROOF BAR ========== */
.proof-bar {
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.proof-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.proof-item {
    text-align: center;
    padding: 44px 24px;
    position: relative;
    transition: var(--transition);
}

.proof-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--gray-200);
}

.proof-item:last-child::after { display: none; }

.proof-item:hover {
    background: var(--gray-50);
}

.proof-icon {
    width: 52px;
    height: 52px;
    background: rgba(1, 4, 45, 0.05);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--transition);
}

.proof-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.proof-item:hover .proof-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.proof-item:hover .proof-icon i {
    color: var(--accent);
}

.proof-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.proof-number {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

.proof-text {
    display: inline-block;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.proof-suffix {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.proof-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 16px 0;
}

.product-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-logo img {
    transform: scale(1.05);
}

.product-icon {
    width: 56px;
    height: 56px;
    background: rgba(1, 4, 45, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-icon i {
    font-size: 1.4rem;
    color: var(--primary);
}

.product-card:hover .product-icon {
    background: var(--primary);
}

.product-card:hover .product-icon i {
    color: var(--accent);
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-price {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.product-price strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.product-features { margin-bottom: 24px; }

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 5px 0;
}

.product-features li i {
    color: var(--green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.product-card .btn { width: 100%; }

/* ========== PROBLEMS / PAIN POINTS ========== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.problem-card:hover {
    background: rgba(255, 234, 0, 0.04);
    border-color: rgba(255, 234, 0, 0.2);
}

.problem-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i { font-size: 1rem; color: #ff6b6b; }

.problem-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.problem-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(1, 4, 45, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.feature-card-icon i { font-size: 1.3rem; color: var(--primary); }

.feature-card:hover .feature-card-icon { background: var(--primary); }
.feature-card:hover .feature-card-icon i { color: var(--accent); }

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.legal-top-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

.legal-top-cards .legal-top-col {
    width: 50%;
}

@media (max-width: 768px) {
    .legal-top-cards {
        flex-wrap: wrap;
    }

    .legal-top-cards .legal-top-col {
        width: 100%;
    }

    .legal-content .legal-data-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ========== BENEFITS LIST ========== */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: rgba(255, 234, 0, 0.25);
}

.benefit-item i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-content .benefits-list {
    margin-top: 1.5rem;
}

.legal-content .benefit-item {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.legal-content .benefit-item:hover {
    border-color: var(--primary);
    background: var(--gray-100);
}

.legal-content .benefit-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
}

.legal-content .benefit-item span {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Light variant */
.benefits-list-light .benefit-item {
    background: var(--gray-50);
    border-color: var(--gray-200);
}

.benefits-list-light .benefit-item:hover { border-color: var(--primary); }
.benefits-list-light .benefit-item i { color: var(--green); }
.benefits-list-light .benefit-item span { color: var(--gray-700); }

/* ========== HIGHLIGHT SECTION ========== */
.highlight-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-section.reverse { direction: rtl; }
.highlight-section.reverse > * { direction: ltr; }

.highlight-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.highlight-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.highlight-text ul { margin-bottom: 28px; }

.highlight-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.highlight-text ul li i {
    color: var(--green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.highlight-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

.highlight-image-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.highlight-image-placeholder i { font-size: 3.5rem; color: var(--accent); }
.highlight-image-placeholder span { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.highlight-image-placeholder small { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

.section-dark .highlight-text h2 { color: var(--white); }
.section-dark .highlight-text p { color: rgba(255, 255, 255, 0.65); }
.section-dark .highlight-text ul li { color: rgba(255, 255, 255, 0.8); }

/* ========== PRICING SECTION ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255, 234, 0, 0.15);
    transform: scale(1.03);
}

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

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: rgba(1, 4, 45, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon i { font-size: 1.4rem; color: var(--primary); }

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.pricing-card .price strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-features { margin-bottom: 24px; }

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; }
.pricing-features li i.fa-xmark { color: var(--gray-400); }

.pricing-card .btn { width: 100%; }

/* ========== CLIENTS SLIDER ========== */
.clients-slider { overflow: hidden; position: relative; }

.clients-track {
    display: flex;
    gap: 30px;
    animation: clientsScroll 30s linear infinite;
    width: max-content;
}

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

@keyframes clientsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-card {
    min-width: 180px;
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.client-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.client-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(1, 4, 45, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.client-card-icon i { font-size: 1.2rem; color: var(--primary); }
.client-card span { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.client-logo {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(1, 4, 45, 0.25);
    box-shadow: var(--shadow-md);
}

.client-logo img {
    width: 100%;
    max-width: 160px;
    height: 72px;
    object-fit: contain;
}

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

.trust-card {
    padding: 28px 24px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
}

.trust-card > i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--primary);
    background: var(--accent);
}

.trust-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.05rem;
}

.trust-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.65;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 234, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i { color: var(--accent); font-size: 1rem; }

.contact-item-text span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 0.95rem;
    color: var(--white);
}

.contact-item-text a:hover { color: var(--accent); }

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: var(--primary);
    color: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Light form variant */
.contact-form-light {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.contact-form-light h3 { color: var(--primary); }
.contact-form-light .form-group label { color: var(--gray-700); }

.contact-form-light .form-group input,
.contact-form-light .form-group select,
.contact-form-light .form-group textarea {
    background: var(--gray-50);
    border-color: var(--gray-200);
    color: var(--gray-800);
}

.contact-form-light .form-group input:focus,
.contact-form-light .form-group select:focus,
.contact-form-light .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 4, 45, 0.1);
}

.contact-form-light .form-group input::placeholder,
.contact-form-light .form-group textarea::placeholder {
    color: var(--gray-400);
}

/* ========== TIMELINE ========== */
.timeline { position: relative; padding: 20px 0; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 234, 0, 0.2);
    top: 0;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--primary);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    max-width: 400px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(255, 234, 0, 0.25);
}

.timeline-year {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 234, 0, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img { height: 36px; margin-bottom: 16px; }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-col ul li i {
    margin-right: 8px;
    color: var(--accent);
    font-size: 0.8rem;
}

.footer-bottom {
    padding: 20px 0 80px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

/* Ajustar WhatsApp quando banner de cookies está visível */
.cookie-banner:not(.hide) ~ .whatsapp-float {
    bottom: 120px;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: 1px solid rgba(255, 234, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); color: var(--primary); }

/* ========== NOTIFICATION ========== */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    max-width: 360px;
}

.notification.show { transform: translateX(0); }

.notification-success {
    background: var(--green);
    color: var(--white);
}

.notification-error {
    background: var(--red);
    color: var(--white);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========== PRODUCT PAGE HERO ========== */
.hero-product {
    min-height: 60vh;
    padding: 140px 20px 80px;
}

.hero-product .hero-title { font-size: 2.6rem; }

.hero-product .hero-subtitle {
    max-width: 700px;
}

/* ========== HERO SPLIT (Product pages with form) ========== */
.hero-split {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    align-items: center;
}

.hero-split .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    width: 100%;
    text-align: left;
}

.hero-split .hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-split .hero-title {
    text-align: left;
    font-size: 2.4rem;
}

.hero-split .hero-subtitle {
    margin: 0 0 16px;
    text-align: left;
}

.hero-split .hero-price {
    margin-bottom: 28px;
}

.hero-split .hero-buttons {
    justify-content: flex-start;
    margin-bottom: 30px;
}

.hero-split .trust-bar {
    justify-content: flex-start;
    gap: 24px;
    padding-top: 24px;
}

/* Hero form (right side) */
.hero-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.hero-form h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-form .hero-form-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-form .form-group { margin-bottom: 14px; }

.hero-form .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 0.88rem;
    transition: var(--transition);
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.hero-form .form-group input::placeholder,
.hero-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.hero-form .form-group select option {
    background: var(--primary);
    color: var(--white);
}

.hero-form .form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-form .btn { width: 100%; margin-top: 4px; }

/* ========== ABOUT PAGE ========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(255, 234, 0, 0.25);
    transform: translateY(-4px);
}

.value-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-dark .cta-section h2 { color: var(--white); }
.section-dark .cta-section p { color: rgba(255, 255, 255, 0.6); }

/* ========== NAV MINIMAL (Product pages — no nav links) ========== */
.nav-container.nav-minimal {
    justify-content: center;
    gap: 0;
}

.nav-container.nav-minimal .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-container.nav-minimal .nav-menu {
    margin-left: auto;
}

/* ========== HOME REFORMULATION ========== */
.hero-home-content {
    width: min(1180px, calc(100% - 40px));
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: clamp(40px, 6vw, 84px);
    align-items: center;
    padding: 130px 0 118px;
    text-align: left;
}

.hero-home-copy { max-width: 680px; }

.hero-home-content .hero-title,
.hero-home-content .hero-subtitle {
    margin-left: 0;
    text-align: left;
}

.hero-home-content .hero-title {
    max-width: 720px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

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

.hero-bg {
    background:
        radial-gradient(circle at 78% 34%, rgba(65, 83, 210, 0.2), transparent 34%),
        radial-gradient(circle at 18% 75%, rgba(255, 234, 0, 0.055), transparent 30%),
        linear-gradient(145deg, #01042d 0%, #050a42 55%, #01042d 100%);
}

.hero-grid-overlay {
    opacity: 0.65;
    background-size: 72px 72px;
}

.hero-ambient-glow {
    position: absolute;
    top: 18%;
    right: 8%;
    width: clamp(260px, 34vw, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 234, 0, 0.055);
    filter: blur(70px);
    pointer-events: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 234, 0, 0.28);
    border-radius: var(--radius-full);
    background: rgba(255, 234, 0, 0.08);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-dynamic-line {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 26px;
    color: var(--white);
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    font-weight: 700;
}

.hero-dynamic-line > i { color: var(--accent); }
#benefitRotator {
    color: rgba(255, 255, 255, 0.88);
    transition: opacity 220ms ease, transform 220ms ease;
}

#benefitRotator.is-changing {
    opacity: 0;
    transform: translateY(5px);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 234, 0, 0.06);
}

.hero-solution-stack {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 30px;
    isolation: isolate;
}

.hero-solution-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.hero-solution-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: rgba(1, 4, 45, 0.72);
    color: var(--white);
    transition: var(--transition);
}

.hero-solution-card:hover {
    transform: translateX(7px);
    border-color: rgba(255, 234, 0, 0.55);
    background: rgba(11, 16, 70, 0.94);
}

.hero-solution-card-main {
    border-color: rgba(255, 234, 0, 0.32);
    background: linear-gradient(135deg, rgba(255,234,0,.14), rgba(1,4,45,.84));
}

.hero-solution-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent);
    color: var(--primary);
}

.hero-solution-card strong,
.hero-solution-card small { display: block; }
.hero-solution-card strong { margin-bottom: 3px; font-size: 1rem; }
.hero-solution-card small { color: rgba(255,255,255,.58); font-size: .76rem; }
.hero-solution-card > i { color: var(--accent); font-size: .8rem; }

.hero-home-trust {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
    margin: -24px 0 0;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-home-content + .hero-scroll-indicator {
    bottom: 12px;
    z-index: 3;
}

.hero-home-content + .hero-scroll-indicator a {
    flex-direction: column;
    gap: 7px;
    padding: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.scroll-cue-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

/* Product-oriented ecosystem preview */
.hero-product-preview {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(248, 250, 255, 0.98);
    color: var(--primary);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(255,255,255,.025);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transition: transform 400ms ease, box-shadow 400ms ease;
}

.hero-product-preview:hover {
    transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-3px);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(255,255,255,.04);
}

.preview-window-bar {
    min-height: 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-bottom: 1px solid #e7eaf2;
    background: #fff;
    font-size: .72rem;
}

.preview-dots { display: flex; gap: 5px; }
.preview-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d5d9e4; }
.preview-dots i:first-child { background: var(--accent); }
.preview-brand { color: #70778d; }
.preview-brand strong { color: var(--primary); }
.preview-status { color: #31865a; font-weight: 700; }
.preview-status i { margin-right: 4px; font-size: .48rem; }

.preview-window-body {
    min-height: 390px;
    display: grid;
    grid-template-columns: 58px 1fr;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 9px;
    background: var(--primary);
}

.preview-sidebar span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: rgba(255,255,255,.48);
    font-size: .78rem;
}

.preview-sidebar span.active { color: var(--primary); background: var(--accent); }
.preview-dashboard { padding: 22px; }

.preview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.preview-heading small,
.preview-heading strong { display: block; }
.preview-heading small { margin-bottom: 5px; color: #8a91a5; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.preview-heading strong { max-width: 260px; font-size: 1.05rem; line-height: 1.3; }
.preview-heading > span { padding: 7px 9px; border-radius: 8px; background: #eef8f2; color: #31865a; font-size: .58rem; font-weight: 700; white-space: nowrap; }

.preview-modules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.preview-module {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid #e4e7ef;
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
    transition: var(--transition);
}

.preview-module:hover { transform: translateY(-2px); border-color: #bec5d8; box-shadow: 0 8px 24px rgba(1,4,45,.08); }
.preview-module > i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 9px; background: #eef0f8; color: #485283; }
.preview-module-erp > i { background: var(--accent); color: var(--primary); }
.preview-module strong,
.preview-module small { display: block; }
.preview-module strong { margin-bottom: 3px; font-size: .76rem; }
.preview-module small { color: #8a91a5; font-size: .6rem; }

.preview-ecosystem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 11px;
}

.preview-ecosystem a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
}

.preview-ecosystem a > i { color: var(--accent); }
.preview-ecosystem strong,
.preview-ecosystem small { display: block; }
.preview-ecosystem strong { font-size: .7rem; }
.preview-ecosystem small { color: rgba(255,255,255,.55); font-size: .56rem; }

.section-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.clients-section-near-hero { padding: 68px 0; }

.integrations-section {
    padding: 34px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: #f8f9fc;
}

.integrations-inner {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 50px;
}

.integrations-copy h2 { margin-bottom: 8px; color: var(--primary); font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
.integrations-copy p { margin: 0; color: var(--gray-500); font-size: .88rem; line-height: 1.6; }
.integrations-copy .section-eyebrow { color: #8b7800; }

.integration-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.integration-chips span {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: #fff;
    color: var(--gray-700);
    font-size: .8rem;
    font-weight: 700;
}

.integration-chips i { width: 25px; color: var(--primary); text-align: center; font-size: 1rem; }

/* Equal-height product cards */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .product-logo { min-height: 92px; }
.product-card > p { min-height: 128px; }
.product-card .product-features { flex: 1; }
.product-card .btn { margin-top: auto; }

/* Client carousel on the brand background */
.clients-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,234,0,.08), transparent 28%),
        linear-gradient(135deg, #01042d 0%, #080d4d 100%);
}

.clients-section .section-title { color: var(--white); }
.clients-section .section-description { color: rgba(255,255,255,.66); }

.clients-carousel {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clients-carousel-track {
    display: flex;
    width: max-content;
    animation: clientCarousel 32s linear infinite;
    will-change: transform;
}

.clients-carousel-group {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.clients-carousel:hover .clients-carousel-track,
.clients-carousel:focus-within .clients-carousel-track { animation-play-state: paused; }

.clients-section .client-logo {
    width: 220px;
    min-height: 124px;
    flex: 0 0 220px;
    padding: 22px;
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.clients-section .client-logo:hover {
    border-color: rgba(255,234,0,.5);
    background: rgba(255,255,255,.11);
}

.clients-section .client-logo img {
    max-width: 176px;
    height: 80px;
    object-fit: contain;
}

@keyframes clientCarousel {
    to { transform: translateX(-50%); }
}

/* Preserve the original logo aspect ratio in the footer */
.footer-brand img.footer-logo {
    display: block;
    width: 141px;
    height: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
    .clients-carousel-track { animation: none; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .hero-split .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-split .hero-info { align-items: center; text-align: center; }
    .hero-split .hero-title { text-align: center; }
    .hero-split .hero-subtitle { text-align: center; }
    .hero-split .hero-buttons { justify-content: center; }
    .hero-split .trust-bar { justify-content: center; }
    .hero-form { max-width: 500px; margin: 0 auto; }
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .highlight-section { grid-template-columns: 1fr; gap: 40px; }
    .highlight-section.reverse { direction: ltr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .problems-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-list { grid-template-columns: 1fr; }
    .legal-content .benefits-list { grid-template-columns: 1fr; }
    .client-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .trust-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { padding: 90px 20px 50px; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-price strong { font-size: 1.3rem; }
    .section-title { font-size: 1.7rem; }
    .section-header { margin-bottom: 40px; }

    /* Mobile Nav */
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 30px;
        gap: 4px;
        transition: right 0.35s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }

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

    .nav-link {
        width: 100%;
        display: block;
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius);
        border-bottom: none;
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 234, 0, 0.08);
        color: var(--accent);
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 20px;
        padding: 14px 24px;
        text-align: center;
        width: 100%;
        border-radius: var(--radius-full);
        font-size: 0.95rem;
    }

    /* Nav Minimal mobile — centered logo, hide CTA */
    .nav-container.nav-minimal {
        position: relative;
        justify-content: center;
    }

    .nav-container.nav-minimal .nav-logo {
        position: static;
        transform: none;
    }

    .nav-container.nav-minimal .nav-menu {
        display: none;
    }

    .hero-split .hero-info {
        align-items: center;
        text-align: center;
    }

    .hero-split .hero-title { text-align: center; }
    .hero-split .hero-subtitle { text-align: center; }
    .hero-split .hero-buttons { justify-content: center; }
    .hero-split .trust-bar { justify-content: center; }

    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .proof-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .proof-item { padding: 32px 16px; }
    .proof-item::after { display: none; }
    .proof-number { font-size: 2rem; }
    .proof-suffix { font-size: 1.2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .client-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-cards { grid-template-columns: 1fr; }

    /* Timeline mobile */
    .timeline::before { left: 20px; }
    .timeline-item { padding-right: 0; padding-left: 50px; justify-content: flex-start; }
    .timeline-item:nth-child(even) { padding-left: 50px; }
    .timeline-dot { left: 20px; }
    .timeline-content { max-width: 100%; }

    .hero-product { min-height: 50vh; padding: 120px 20px 60px; }
    .hero-product .hero-title { font-size: 2rem; }
    .hero-split { padding: 100px 20px 40px; min-height: auto; }
    .hero-split .hero-title { font-size: 1.8rem; }
    .hero-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; }
    .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
    .contact-form { padding: 24px; }
    .client-card { min-width: 150px; }
    .client-logos { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .hero-home-content {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 122px 0 105px;
    }

    .hero-home-copy { max-width: 760px; }
    .hero-solution-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 22px; }
    .hero-solution-card { grid-template-columns: 42px 1fr; padding: 14px; }
    .hero-solution-card > i { display: none; }
    .hero-solution-icon { width: 42px; height: 42px; }
    .hero-home-trust { margin-top: 0; }
    .hero-product-preview { width: min(100%, 760px); transform: none; }
    .integrations-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .hero-home-content {
        width: min(100% - 32px, 620px);
        display: block;
        padding: 112px 0 88px;
    }

    .hero-home-content .hero-title {
        font-size: clamp(2.15rem, 11vw, 3.25rem);
        text-align: left;
    }

    .hero-home-content .hero-subtitle { text-align: left; }
    .hero-kicker { font-size: .68rem; }
    .hero-dynamic-line { min-height: 54px; margin: 18px 0 22px; }
    .hero-home-copy .hero-buttons { align-items: stretch; }
    .hero-home-copy .hero-buttons .btn { width: 100%; }

    .hero-solution-stack {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 34px;
        padding: 16px;
    }

    .hero-solution-card { grid-template-columns: 42px 1fr auto; }
    .hero-solution-card > i { display: inline-block; }
    .hero-solution-card:hover { transform: translateY(-2px); }

    .hero-home-trust {
        margin-top: 26px;
        padding-top: 22px;
        align-items: flex-start;
    }

    .hero-home-content + .hero-scroll-indicator { display: none; }
    .hero-product-preview { margin-top: 34px; border-radius: 16px; }
    .preview-window-body { min-height: 360px; }
    .preview-dashboard { padding: 18px; }
    .preview-heading { display: block; }
    .preview-heading > span { display: inline-block; margin-top: 10px; }
    .integrations-section { padding: 42px 0; }
    .integration-chips { grid-template-columns: 1fr 1fr; }
    .product-card > p { min-height: 0; }
    .clients-carousel { -webkit-mask-image: none; mask-image: none; }
    .clients-section .client-logo { width: 180px; min-height: 108px; flex-basis: 180px; padding: 16px; }
    .clients-section .client-logo img { max-width: 148px; height: 70px; }
}

@media (max-width: 480px) {
    .preview-window-bar { grid-template-columns: auto 1fr; }
    .preview-status { display: none; }
    .preview-window-body { grid-template-columns: 1fr; min-height: 0; }
    .preview-sidebar { display: none; }
    .preview-dashboard { padding: 14px; }
    .preview-modules { grid-template-columns: 1fr; gap: 8px; }
    .preview-module { min-height: 68px; }
    .preview-ecosystem { grid-template-columns: 1fr; gap: 8px; }
    .integration-chips { grid-template-columns: 1fr; }
}

/* ========== MOBILE EXPERIENCE HARDENING ========== */
.cookie-banner .cookie-content {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
}

.cookie-banner .cookie-text { flex: 1; text-align: left !important; }
.cookie-banner .cookie-actions { flex-direction: column; flex-wrap: nowrap !important; }

@media (max-width: 768px) {
    html { scroll-padding-top: 72px; }

    body.nav-open { overflow: hidden; touch-action: none; }
    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(0, 0, 0, 0.58);
        backdrop-filter: blur(2px);
    }

    #header { z-index: 1000; }
    .navbar, .nav-container { height: 64px; }
    .nav-container, .container, .container-sm { padding-inline: 16px; }
    .nav-logo img { width: auto; height: 34px; }
    .hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

    .nav-menu {
        z-index: 1000;
        width: min(86vw, 320px);
        height: 100dvh;
        padding: calc(82px + env(safe-area-inset-top)) 18px calc(24px + env(safe-area-inset-bottom));
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.38);
    }

    .nav-link { min-height: 48px; display: flex; align-items: center; }
    .nav-link-cta { justify-content: center; }

    .section { padding: 52px 0; }
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: clamp(1.55rem, 7vw, 1.9rem); line-height: 1.18; text-wrap: balance; }
    .section-description { font-size: .92rem; line-height: 1.65; }

    .hero { min-height: auto; padding-inline: 0; }
    .hero-home-content { width: 100%; padding: 96px 16px 58px; }
    .hero-home-content .hero-title { font-size: clamp(2.05rem, 10.5vw, 3rem); line-height: 1.06; letter-spacing: -.035em; text-wrap: balance; }
    .hero-home-content .hero-subtitle { font-size: 1rem; line-height: 1.62; }
    .hero-kicker { max-width: 100%; margin-bottom: 18px; font-size: .66rem; line-height: 1.4; }
    .hero-dynamic-line { min-height: 48px; font-size: .88rem; line-height: 1.4; }
    .hero-home-copy .hero-buttons { gap: 10px; margin-bottom: 34px; }
    .hero-home-copy .btn { min-height: 50px; padding: 13px 18px; }
    .hero-product-preview { margin-top: 0; box-shadow: 0 18px 48px rgba(0,0,0,.3); }
    .hero-home-trust { gap: 13px; margin-top: 24px; }
    .hero-home-trust .trust-item { font-size: .8rem; }

    .proof-bar { padding: 8px 0; }
    .proof-bar-inner { gap: 0; }
    .proof-item { min-height: 144px; padding: 22px 10px; }
    .proof-text { font-size: clamp(1.05rem, 5vw, 1.35rem); }
    .proof-label { max-width: 150px; margin-inline: auto; font-size: .66rem; line-height: 1.45; letter-spacing: .05em; }

    .clients-section-near-hero { padding: 48px 0; }
    .clients-carousel-group { gap: 12px; padding-right: 12px; }
    .clients-section .client-logo { width: 166px; min-height: 98px; flex-basis: 166px; padding: 14px; }
    .clients-section .client-logo img { max-width: 138px; height: 64px; }

    .product-card { padding: 26px 20px; border-radius: 16px; }
    .product-card .product-logo { min-height: 74px; margin-bottom: 14px; padding-block: 8px; }
    .product-logo img { max-width: 100%; max-height: 52px; }
    .product-card > p { font-size: .9rem; line-height: 1.65; }
    .product-price { padding: 13px 0; }
    .product-features li { min-height: 34px; align-items: flex-start; line-height: 1.5; }
    .product-card .btn { min-height: 48px; }

    .integration-chips span { min-height: 50px; }
    .trust-card { padding: 24px 20px; }
    .contact-grid { gap: 34px; }
    .contact-info h3 { font-size: 1.35rem; }
    .contact-item { align-items: flex-start; gap: 12px; }
    .contact-item-text { min-width: 0; overflow-wrap: anywhere; }
    .contact-form, .hero-form { width: 100%; padding: 22px 18px; border-radius: 16px; }
    .contact-form h3, .hero-form h3 { font-size: 1.15rem; }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 16px;
    }

    .form-group textarea { min-height: 112px; }
    .btn { min-height: 44px; }

    .timeline::before { left: 15px; }
    .timeline-dot { left: 15px; width: 14px; height: 14px; }
    .timeline-item,
    .timeline-item:nth-child(even) { padding-left: 42px; }
    .timeline-content { padding: 20px 18px; }
    .timeline-content h4 { font-size: 1rem; }
    .timeline-content p { font-size: .86rem; line-height: 1.65; }

    .footer { padding-top: 52px; }
    .footer-grid { gap: 34px; }
    .footer-col { min-width: 0; }
    .footer-col li, .footer-col a { overflow-wrap: anywhere; }
    .footer-bottom { padding-bottom: 96px; line-height: 1.6; }

    .legal-content { overflow-wrap: anywhere; }
    .legal-content .legal-data-table { width: 100%; }

    .cookie-banner {
        bottom: max(10px, env(safe-area-inset-bottom)) !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-width: none !important;
        border-radius: 14px !important;
    }

    .cookie-banner .cookie-content {
        padding: 18px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
    }

    .cookie-banner .cookie-icon { display: none !important; }
    .cookie-banner .cookie-text { text-align: left !important; }
    .cookie-banner .cookie-text h4 { font-size: 1rem !important; }
    .cookie-banner .cookie-text p { font-size: .82rem !important; line-height: 1.5 !important; }
    .cookie-banner .cookie-actions { flex-direction: row !important; gap: 8px !important; }
    .cookie-banner .btn-cookie-accept,
    .cookie-banner .btn-cookie-reject { min-width: 0 !important; min-height: 44px; padding: 10px 12px !important; font-size: .82rem !important; }

    .cookie-banner:not(.hide) ~ .whatsapp-float { opacity: 0; pointer-events: none; }
    .whatsapp-float { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
    .whatsapp-float a { width: 52px; height: 52px; }
    .back-to-top { right: 20px; bottom: calc(80px + env(safe-area-inset-bottom)); }
    .notification { top: 76px; right: 12px; left: 12px; max-width: none; padding: 13px 16px; }
}

@media (max-width: 480px) {
    .preview-window-bar { min-height: 44px; padding-inline: 12px; }
    .preview-brand { font-size: .65rem; }
    .preview-heading strong { font-size: .96rem; }
    .preview-module { padding: 12px; }
    .proof-item { min-height: 132px; }
    .cta-section { padding: 34px 18px; }
    .cta-section h2 { font-size: 1.45rem; }
    .cookie-banner .cookie-actions { flex-direction: column !important; }
}

@media (max-width: 360px) {
    .hero-home-content { padding-inline: 13px; }
    .hero-home-content .hero-title { font-size: 1.92rem; }
    .hero-kicker { padding: 7px 10px; font-size: .6rem; }
    .proof-bar-inner { grid-template-columns: 1fr; }
    .proof-item { min-height: 0; padding: 20px 12px; }
    .proof-label { max-width: 240px; }
    .product-card { padding: 22px 16px; }
}

/* ========== HOME REFINEMENT 2026 ========== */
.hero.hero-home {
    min-height: 100svh;
    padding: 0 20px;
}

.hero-home-content {
    gap: clamp(28px, 4vw, 58px);
    padding: 94px 0 68px;
}

.hero-home-content .hero-title {
    font-size: clamp(2.35rem, 4.2vw, 3.85rem);
}

.hero-home-copy .hero-buttons {
    margin-bottom: 16px;
}

.hero-home-content + .hero-scroll-indicator i {
    color: var(--accent);
    animation: heroScrollCue 1.8s ease-in-out infinite;
}

.hero-home-content + .hero-scroll-indicator a:hover {
    color: var(--accent);
}

.hero-home-content + .hero-scroll-indicator a:hover .scroll-cue-button {
    border-color: var(--accent);
    background: rgba(255, 234, 0, .12);
    box-shadow: 0 10px 30px rgba(255, 234, 0, .12);
    transform: translateY(2px);
}

@keyframes heroScrollCue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.hero-home-trust {
    margin-top: -10px;
    padding-top: 20px;
}

.preview-window-body { min-height: 320px; }
.preview-dashboard { padding: 18px; }
.preview-heading { margin-bottom: 16px; }
.preview-module { min-height: 74px; padding: 11px; }

/* Credibility snapshot */
.proof-bar {
    padding: 72px 0;
    border: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(1, 4, 45, .06), transparent 26%),
        #f5f7fc;
}

.proof-intro {
    max-width: 680px;
    margin: 0 auto 34px;
    text-align: center;
}

.proof-intro .section-eyebrow { color: #756600; }
.proof-intro h2 {
    color: var(--primary);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.18;
    text-wrap: balance;
}

.proof-bar-inner { gap: 16px; }

.proof-item {
    min-height: 218px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border: 1px solid rgba(1, 4, 45, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 38px rgba(1, 4, 45, .06);
}

.proof-item::after { display: none; }
.proof-item:hover {
    border-color: rgba(1, 4, 45, .2);
    background: #fff;
    box-shadow: 0 20px 46px rgba(1, 4, 45, .1);
    transform: translateY(-4px);
}

.proof-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border: 0;
    background: var(--primary);
    box-shadow: 0 0 0 7px rgba(1, 4, 45, .055);
}

.proof-icon i { color: var(--accent); }
.proof-text { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
.proof-label {
    max-width: 190px;
    margin-top: 8px;
    line-height: 1.45;
    letter-spacing: .055em;
}

/* One inventory across every sales channel */
.integrations-section.operation-section {
    padding: 76px 0;
    border: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 234, 0, .1), transparent 24%),
        linear-gradient(135deg, #01042d, #080e51);
}

.operation-inner { gap: clamp(36px, 7vw, 88px); }
.operation-copy .section-eyebrow { color: var(--accent); }
.operation-copy h2 {
    max-width: 540px;
    color: #fff;
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    line-height: 1.12;
    text-wrap: balance;
}

.operation-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, .68);
    font-size: .98rem;
}

.operation-channels { gap: 12px; }
.operation-channels span {
    min-height: 94px;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 13px;
    align-content: center;
    padding: 16px;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    backdrop-filter: blur(8px);
}

.operation-channels span:hover {
    border-color: rgba(255, 234, 0, .45);
    background: rgba(255, 255, 255, .11);
    transform: translateY(-2px);
}

.operation-channels i {
    width: 44px;
    height: 44px;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--accent);
    color: var(--primary);
}

.operation-channels strong { align-self: end; font-size: .9rem; }
.operation-channels small { align-self: start; color: rgba(255, 255, 255, .55); font-size: .7rem; font-weight: 500; }

/* Partnership section */
.partnership-section { background: #fff; }
.partnership-layout {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 7vw, 86px);
    align-items: center;
}

.partnership-intro .section-eyebrow { color: #756600; }
.partnership-intro .section-title { font-size: clamp(1.85rem, 3.4vw, 2.9rem); }
.partnership-intro > p {
    margin: 0 0 26px;
    color: var(--gray-600);
    line-height: 1.75;
}

.trust-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    min-height: 230px;
    padding: 24px;
    border-color: rgba(1, 4, 45, .09);
    border-radius: 18px;
    background: #f8f9fc;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: rgba(1, 4, 45, .2);
    background: #fff;
    box-shadow: 0 18px 46px rgba(1, 4, 45, .09);
    transform: translateY(-4px);
}

.trust-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.trust-card-top i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--accent);
    color: var(--primary);
}

.trust-card-top span {
    color: rgba(1, 4, 45, .17);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

@media (min-width: 1025px) and (max-height: 820px) {
    .hero-home-content { padding-top: 84px; padding-bottom: 54px; }
    .hero-home-content .hero-title { font-size: clamp(2.15rem, 3.7vw, 3.35rem); }
    .hero-home-content .hero-subtitle { line-height: 1.6; }
    .hero-dynamic-line { margin: 14px 0 18px; }
    .preview-window-body { min-height: 286px; }
    .preview-module { min-height: 66px; }
    .hero-home-trust { padding-top: 16px; }
}

@media (max-width: 1024px) {
    .hero.hero-home { min-height: auto; padding: 0; }
    .hero-home-content { padding-top: 108px; padding-bottom: 72px; }
    .partnership-layout { grid-template-columns: 1fr; }
    .partnership-intro { max-width: 680px; }
}

@media (max-width: 768px) {
    .hero-home-content { padding: 92px 16px 84px; }
    .hero-home-copy .hero-buttons { margin-bottom: 8px; }
    .hero-home-trust { display: grid; grid-template-columns: 1fr; }
    .hero-home-content + .hero-scroll-indicator {
        display: block;
        bottom: 18px;
    }

    .proof-bar { padding: 52px 0; }
    .proof-intro { margin-bottom: 26px; }
    .proof-bar-inner { gap: 12px; }
    .proof-item { min-height: 168px; padding: 20px 12px; }
    .proof-icon { width: 42px; height: 42px; margin-bottom: 14px; }

    .integrations-section.operation-section { padding: 56px 0; }
    .operation-inner { gap: 28px; }
    .operation-channels span { min-height: 88px; }

    .partnership-layout { gap: 32px; }
    .trust-card { min-height: 210px; }
}

@media (max-width: 560px) {
    .proof-bar-inner, .trust-cards { grid-template-columns: 1fr; }
    .proof-item { min-height: 150px; }
    .operation-channels { grid-template-columns: 1fr; }
    .trust-card { min-height: 0; }
}

/* Three-product ecosystem inside the home hero */
.preview-products-body {
    min-height: 344px;
    padding: 18px;
    background: #f6f8fc;
}

.preview-products-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.preview-products-heading small,
.preview-products-heading strong { display: block; }

.preview-products-heading small {
    margin-bottom: 4px;
    color: #858da2;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.preview-products-heading strong {
    max-width: 300px;
    color: var(--primary);
    font-size: .98rem;
    line-height: 1.28;
}

.preview-products-heading > span {
    padding: 7px 9px;
    border-radius: 8px;
    background: #eaf7ef;
    color: #27784e;
    font-size: .56rem;
    font-weight: 700;
    white-space: nowrap;
}

.preview-products-list {
    display: grid;
    gap: 9px;
}

.preview-product-card {
    min-height: 78px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border: 1px solid #e1e5ef;
    border-radius: 13px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 5px 16px rgba(1, 4, 45, .035);
    transition: var(--transition);
}

.preview-product-card:hover {
    border-color: rgba(1, 4, 45, .22);
    box-shadow: 0 10px 24px rgba(1, 4, 45, .09);
    transform: translateX(4px);
}

.preview-product-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 1rem;
}

.preview-product-erp .preview-product-icon {
    background: var(--accent);
    color: var(--primary);
}

.preview-product-chat .preview-product-icon {
    background: #dcf8e9;
    color: #16764a;
}

.preview-product-cloud .preview-product-icon {
    background: #e3ebff;
    color: #3558b5;
}

.preview-product-copy { min-width: 0; }
.preview-product-copy small,
.preview-product-copy strong,
.preview-product-copy em { display: block; }

.preview-product-copy small {
    margin-bottom: 1px;
    color: #858da2;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.preview-product-copy strong {
    margin-bottom: 2px;
    color: var(--primary);
    font-size: .88rem;
}

.preview-product-copy em {
    overflow: hidden;
    color: #71798e;
    font-size: .59rem;
    font-style: normal;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-product-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5d6680;
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
}

.preview-product-action i { color: var(--primary); }

@media (max-width: 480px) {
    .preview-products-body { min-height: 0; padding: 13px; }
    .preview-products-heading { display: block; margin-bottom: 12px; }
    .preview-products-heading > span { display: inline-block; margin-top: 8px; }
    .preview-product-card { grid-template-columns: 42px minmax(0, 1fr) auto; gap: 10px; padding: 10px; }
    .preview-product-icon { width: 42px; height: 42px; }
    .preview-product-action { font-size: 0; }
    .preview-product-action i { font-size: .7rem; }
}

@media (max-width: 360px) {
    .preview-product-card { grid-template-columns: 40px minmax(0, 1fr); }
    .preview-product-icon { width: 40px; height: 40px; }
    .preview-product-action { display: none; }
    .preview-product-copy em { font-size: .56rem; }
}
