:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-surface: #FFFFFF;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --border-color: #E5E7EB;
    --accent: #059669;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --font-serif: 'Fraunces', serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
}

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

/* Background aesthetic blob */
.blob-bg {
    position: fixed;
    top: -20vh;
    left: -10vw;
    width: 120vw;
    height: 120vh;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(255,255,255,0) 60%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
    animation: float 20s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15vw, 15vh) scale(1.1); }
}

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

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.text-white { color: var(--text-primary); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-green { color: #4ade80; }
.text-lg { font-size: 1.125rem; }
.font-mono { font-family: var(--font-mono); }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.p-4 { padding: 24px; }
.pb-3 { padding-bottom: 16px; }
.pb-5 { padding-bottom: 48px; }
.pt-3 { padding-top: 16px; }
.pt-4 { padding-top: 24px; }
.w-full { width: 100%; }
.block { display: block; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-between { display: flex; justify-content: space-between; }
.align-center { align-items: center; }
.border-bottom { border-bottom: 1px solid var(--border-color); padding-bottom: 16px;}
.border-top { border-top: 1px solid var(--border-color); }
.opacity-50 { opacity: 0.5; }
.text-right { text-align: right; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.6;
    margin-top: 2px;
}

.btn-primary {
    background: var(--accent);
    color: #FFFFFF;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: #10b981;
    box-shadow: 0 0 20px rgba(16,185,129,0.4);
    color: #FFFFFF;
}

.btn-secondary {
    background: var(--accent-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

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

.btn-outline:hover {
    background: rgba(0,0,0,0.03);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 32px;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 32px);
    height: 64px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-radius: 100px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 0 16px;
    width: max-content;
}

.logo {
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.05em;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, a.hover-white:hover {
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

/* Sections */
section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.03);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stat strong { color: var(--text-primary); }

/* Mockup UI */
.mockup {
    padding: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    background: rgba(0,0,0,0.02);
    padding: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-body {
    padding: 24px;
    background: #FFFFFF;
}

.chat-message {
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.chat-message strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.chat-message p {
    background: var(--bg-secondary);
    padding: 14px 18px;
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
    border: 1px solid var(--border-color);
    display: inline-block;
    max-width: 90%;
}

.chat-message.brand strong { color: var(--text-primary); }
.chat-message.brand p {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1E3A8A;
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
}

.quote-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 12px;
}

.quote-price {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

/* Brands section */
.brands {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.01);
}

.section-label {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 64px;
    opacity: 0.4;
    filter: grayscale(100%);
}

.brand-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Problem section */
.section-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}
.section-title span { color: var(--text-secondary); font-weight: 500; }
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
}

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

.problem-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0,0,0,0.08);
    color: var(--text-primary);
}

.tag-alt {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.tag-sm {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    background: rgba(0,0,0,0.05);
    margin-right: 6px;
    margin-bottom: 6px;
}
.tag-sm.outline {
    background: transparent;
    border: 1px solid var(--border-color);
}

.card-header h3 {
    margin-top: 20px;
    font-size: 1.75rem;
    margin-bottom: 40px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    margin-bottom: 32px;
}

.problem-list li:last-child {
    margin-bottom: 0;
}

.problem-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.problem-list p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 80px;
}

.step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .step {
        grid-template-columns: 1fr 1fr;
    }
    .step.reverse .step-content {
        order: 2;
    }
    .step.reverse .step-visual {
        order: 1;
    }
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 24px;
    font-family: var(--font-mono);
}

.step h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.step p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.step-visual.glass-card {
    padding: 0;
}

.factory-card {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.01);
}

.factory-card.glass-card {
    padding: 0;
    overflow: hidden;
}

.factory-card.border-active {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.04);
}

/* Founder / CTA / FAQ */
.founder-card {
    max-width: 800px;
    margin: 0 auto;
}

.founder-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border-color); }

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Factories Grid */
.factories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .factories-grid { grid-template-columns: repeat(3, 1fr); }
}

.factory-card .p-4 { padding: 24px; }

.factories-preview .factory-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.factories-preview .factory-card:hover {
    transform: translateY(-5px);
}

.factory-image {
    height: 180px;
    background: #E5E7EB;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin: 0;
}

.img-kapuz { background: url('assets/factory1.jpg') center/cover; }
.img-aldoar { background: url('assets/factory2.webp') center/cover; }
.img-profit { background: url('assets/factory3.jpg') center/cover; }
.img-twintex { background: url('assets/factory4.webp') center/cover; }
.img-petrotex { background: url('assets/factory5.jpg') center/cover; }
.img-valerius { background: url('assets/factory6.jpg') center/cover; }

/* Footer */
footer { border-top: 1px solid var(--border-color); padding: 80px 0 40px; background: var(--bg-secondary); }

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 32px;
    }
}

.footer-links > a,
.footer-links > span {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transition: color 0.2s;
}

.footer-links > a:hover { color: var(--text-primary); }

.footer-links .footer-coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.footer-links .badge-coming-soon {
    font-size: 0.68rem;
    line-height: 1;
    padding: 2px 7px;
    margin-left: 6px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* New Pages Layout */
.pt-navbar { padding-top: 100px; }
.max-w-content { max-width: 800px; margin: 0 auto; }
.min-h-screen { min-height: 100vh; }
.justify-center { justify-content: center; }
.flex { display: flex; }

.layout-sidebar-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .layout-sidebar-main { grid-template-columns: 280px 1fr; }
    .page-profile .layout-sidebar-main { grid-template-columns: 1fr 300px; }
}

.text-decoration-none { text-decoration: none; }
.hover-up { transition: transform 0.2s ease; }
.hover-up:hover { transform: translateY(-4px); }

/* Forms & UI */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 8px; }
.form-input {
    width: 100%;
    background: rgba(255,255,255,1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}
.form-input:focus { outline: none; border-color: var(--accent); }

.toggle-group {
    display: flex;
    background: rgba(0,0,0,0.05);
    border-radius: 100px;
    padding: 4px;
}
.toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 0;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}
.toggle-btn.active { background: var(--bg-surface); color: var(--text-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }

.onboarding-container { max-width: 480px; width: 100%; margin: auto; }
.checkbox-list label { display: block; margin-bottom: 8px; color: var(--text-secondary); font-size: 0.875rem; cursor: pointer; }
.checkbox-list input { margin-right: 8px; accent-color: var(--text-primary); }

.text-content p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.text-content h2 { margin-top: 32px; }

.details-list { list-style: none; padding: 0; }


/* Profile Layout */
.layout-main-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .layout-main-sidebar {
        grid-template-columns: 2.5fr 1fr;
    }
}

.factory-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    overflow: hidden;
}

.factory-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.factory-hero-content {
    position: absolute;
    bottom: 32px;
    left: 40px;
    z-index: 2;
    color: white;
}

.factory-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 8px;
}

.factory-hero p {
    color: rgba(255, 255, 255, 0.9);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    background: var(--bg-primary);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 24px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}


/* NOVA SUPPLIER NEW DESIGN */


.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 40px;
    padding: 8px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
}

.floating-navbar .logo {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.floating-navbar .logo::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 6px;
}

.floating-navbar .btn-primary {
    background: var(--accent);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.floating-navbar .btn-outline {
    border-color: #e5e7eb;
    color: #374151;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

/* New Factory Card */
.factory-card-new {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.factory-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.fc-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fc-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #f3f4f6;
    flex-shrink: 0;
}

.fc-title {
    flex: 1;
}

.fc-title h3 {
    font-size: 1.1rem;
    color: #111827;
    margin: 0;
}

.fc-title p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.fc-badge {
    font-size: 0.75rem;
    color: #374151;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 40px;
    font-weight: 500;
}

.fc-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    border-left: 2px solid #e5e7eb;
    padding-left: 12px;
}

.fc-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.fc-data-item {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
}

.fc-data-item:nth-child(even) {
    border-right: none;
}

.fc-data-item.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.fc-data-item.full-width:last-child {
    border-bottom: none;
}

.fc-data-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fc-data-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.fc-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fc-tags span {
    font-size: 0.75rem;
    background: #f3f4f6;
    color: #374151;
    padding: 2px 8px;
    border-radius: 12px;
}

.fc-btn {
    background: var(--accent);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.fc-btn:hover {
    background: #10b981;
}


/* Slide-Over Drawer Styles */
.modal-overlay.drawer-mode {
    justify-content: flex-end;
}

.drawer-content {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    border-radius: 24px 0 0 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-overlay.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 32px 40px 16px;
    position: relative;
}

.drawer-header .tag-descobrir {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.drawer-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.drawer-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
}

/* Tabs */
.drawer-tabs {
    display: flex;
    padding: 0 40px;
    border-bottom: 1px solid #e5e7eb;
    gap: 32px;
}

.drawer-tab {
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    position: relative;
}

.drawer-tab.active {
    color: var(--accent);
}

.drawer-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -8px;
    right: -8px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
}

/* Drawer Body */
.drawer-body {
    padding: 32px 40px;
    flex: 1;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: #f9fafb;
    padding: 12px 16px;
    border-radius: 12px;
}
.progress-track {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}
.progress-fill {
    width: 8%;
    height: 100%;
    background: var(--accent);
}
.progress-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
}

.drawer-form-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
}

.drawer-form-box .form-group {
    margin-bottom: 24px;
}
.drawer-form-box .form-group:last-child {
    margin-bottom: 0;
}

.drawer-form-box label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.drawer-form-box label span.sub {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.8rem;
    display: block;
    margin-top: 2px;
}

.drawer-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    font-size: 0.95rem;
    color: #111827;
    outline: none;
    transition: border-color 0.2s;
}
.drawer-input:focus {
    border-color: var(--accent);
}
.drawer-input::placeholder {
    color: #9ca3af;
}

textarea.drawer-input {
    resize: vertical;
    min-height: 100px;
}

/* --- MAIS TOP REDESIGN STYLES --- */

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-visual-new {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(5, 150, 105, 0.25);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-visual-new img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.hero-visual-new:hover img {
    transform: scale(1);
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.1);
}

.bento-card.span-8 { grid-column: span 12; }
.bento-card.span-4 { grid-column: span 12; }
.bento-card.span-6 { grid-column: span 12; }
.bento-card.span-12 { grid-column: span 12; }

@media (min-width: 768px) {
    .bento-card.span-8 { grid-column: span 8; }
    .bento-card.span-4 { grid-column: span 4; }
    .bento-card.span-6 { grid-column: span 6; }
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-desc {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Infinite Marquee */
.marquee-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    padding: 0 40px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #94a3b8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.marquee-item:hover {
    color: var(--accent);
}

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

/* Enhanced Hero */
.hero {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    padding-top: 160px;
    padding-bottom: 100px;
}



.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(5, 150, 105, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(210, 180, 140, 0.08) 0%, transparent 50%);
}





/* Hero spacing override to make it less cramped */
.hero .container {
    gap: 80px;
}
@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
        gap: 100px;
    }
}
.hero-content {
}

body { padding-top: 24px; }


/* FAQ Accordion */
.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
    padding: 0;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

details[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}


/* Mobile Menu Styles */
.mobile-only {
    display: none;
}
.desktop-only {
    display: flex;
}

.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

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

body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

.mobile-menu-content {
    text-align: left;
    position: relative;
    width: 100%;
    min-height: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: max(24px, env(safe-area-inset-top, 24px)) 24px max(40px, env(safe-area-inset-bottom, 32px)) 24px;
}

.close-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.close-menu:hover, .close-menu:active {
    background: rgba(0,0,0,0.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav-links a {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: -0.03em;
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
    }
    .btn-join {
        padding: 8px 20px !important;
        font-size: 0.95rem;
    }
    .navbar {
        width: calc(100% - 32px) !important;
        padding: 0 !important;
    }
    .navbar .container {
        width: 100% !important;
        justify-content: space-between !important;
        gap: 8px !important;
        padding: 0 12px !important;
    }
    .brands-section {
        margin-top: 32px !important;
    }
}


/* Mobile Hero Buttons */
@media (max-width: 768px) {
    .hero-cta {
        display: flex !important;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-cta .btn {
        width: 100%;
        padding: 16px 24px !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 12px !important;
        text-align: center !important;
    }
}


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



@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .founder-grid > div:first-child img {
        width: 160px !important;
        height: 160px !important;
    }
    .founder-grid > div:first-child > div {
        width: 160px !important;
        height: 160px !important;
    }
    .founder-grid > div:last-child {
        text-align: center;
    }
    .founder-grid > div:last-child p:last-child {
        border-left: none !important;
        border-top: 4px solid var(--accent);
        padding-left: 0 !important;
        padding-top: 20px !important;
    }
}


/* Responsive Utility Grids */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.responsive-grid-2-align {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.responsive-grid-2-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .responsive-grid-2,
    .responsive-grid-2-align,
    .responsive-grid-2-large,
    .responsive-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}

.founder-card-layout {
    display: flex;
    align-items: center;
    gap: 48px;
}
@media (max-width: 768px) {
    .founder-card-layout {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
}


.hero-btn {
    min-width: 240px;
}
@media (max-width: 768px) {
    .hero-btn {
        min-width: 0;
        width: 100%;
    }
}

/* World Map Background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

@keyframes orb-float {
    0% { background-position: 0px 0px, 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 32px 32px, 3% 4%, -3% -2%, 2% 3%; }
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-btn.btn-outline {
    background: white !important;
    transition: background 0.2s ease;
}
.hero-btn.btn-outline:hover {
    background: #f1f5f9 !important;
}

.brands-section {
    margin-top: 80px;
}

#how, #faq {
    scroll-margin-top: 100px;
}

