@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #5C158B;
    --color-secondary: #E57539;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F7;
    --color-text: #2B2B2B;
    --color-footer-bg: #1E1E1E;
    --font-family-base: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --spacing-unit: 8px;
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-light-gray);
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.05;
    color: var(--color-primary);
}

h2 {
    font-size: clamp(28px, 4vw, 34px);
    line-height: 1.15;
    color: var(--color-primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-text);
}

p {
    margin-bottom: 1rem;
}

.micro-text {
    font-size: 14px;
    line-height: 1.4;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.bg-light {
    background-color: var(--color-light-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #d16125;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    font-size: 1.125rem;
    padding: 16px 32px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo img {
    height: 30px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    color: var(--color-text);
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
}


/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fdfbfd 0%, #f5f0f9 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(92, 21, 139, 0.1);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-bullet::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
}

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

/* Identification Grid */
.identification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sector-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sector-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.sector-title {
    font-weight: 600;
    color: var(--color-primary);
}

/* Problem & Solution */
.problem-solution-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content h2 {
    margin-bottom: 24px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-title {
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    margin-top: 4px;
}

/* CTA Band */
.cta-band {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-band h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-band p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-band .btn-primary {
    background-color: var(--color-secondary);
    color: white;
}

.cta-band .btn-primary:hover {
    background-color: white;
    color: var(--color-primary);
}

.contact-info-row {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-image {
    background-color: #fdfbfd;
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    padding: 60px 40px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
    background-color: var(--color-footer-bg);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a:hover {
    color: var(--color-secondary);
}

.legal-links {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    opacity: 0.6;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Legal Pages */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Footer Logo */
.site-footer .logo img {
    height: 36px;
    /* Desktop */
    width: auto;
    background: transparent !important;
    display: block;
}

/* Identification Grid - 3 Columns */
.identification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 767px) {
    .site-footer .logo img {
        height: 32px;
        /* Mobile */
    }

    /* Force single column for grids on mobile */
    .identification-grid,
    .contact-section,
    .steps-container,
    .problem-solution-split {
        grid-template-columns: 1fr !important;
    }

    h1 {
        font-size: 2.25rem;
    }

    .logo img {
        height: 26px;
    }
}

/* Advanced Cookie Banner */
.zingo-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1E1E1E;
    /* Dark Mode */
    color: white;
    padding: 12px 16px;
    display: none;
    /* Controlled by JS */
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
}

.zingo-cookie-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.zingo-cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.zingo-cookie-text a {
    color: #E57539;
    text-decoration: underline;
}

.zingo-cookie-actions {
    display: flex;
    gap: 8px;
}

/* Modal Preferences */
.zingo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zingo-modal.active {
    display: flex;
}

.zingo-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.zingo-modal-card {
    position: relative;
    background: white;
    color: #2B2B2B;
    width: 100%;
    max-width: 520px;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

.zingo-modal h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #2E1463;
}

.zingo-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.zingo-switch:last-child {
    border-bottom: none;
}

.zingo-switch .muted {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

.zingo-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Buttons Updates for Cookie */
.zingo-cookie .btn-ghost {
    background: transparent;
    color: white;
    border: none;
    text-decoration: underline;
    padding: 8px 12px;
}

.zingo-cookie .btn-secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.zingo-cookie .btn-primary {
    background: #E57539;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 600;
}

.zingo-modal .btn-ghost {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 16px;
}

.zingo-modal .btn-secondary {
    background: #2E1463;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
}

@media (max-width: 768px) {
    .zingo-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .zingo-cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

    .zingo-cookie-actions button {
        flex: 1;
    }
}