:root {
    --bg-color: #050505;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent: #E53935;
    --accent-glow: rgba(229, 57, 53, 0.4);
    --wa-color: #25D366;
    --wa-glow: rgba(37, 211, 102, 0.4);
    --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
}

.mesh-gradient {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(255, 152, 0, 0.05) 0%, transparent 40%);
    z-index: -1; pointer-events: none;
}
.blob-bg {
    position: fixed; top: 50%; right: 15%; width: 80vmin; height: 80vmin;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translateY(-50%); filter: blur(80px);
    z-index: -2; opacity: 0.5; animation: pulse 8s infinite alternate ease-in-out;
    pointer-events: none;
}

/* Navbar */
.navbar {
    height: var(--nav-height); display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; position: fixed; top: 0; width: 100%; z-index: 100;
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
    background: rgba(5,5,5,0.6); transition: transform 0.4s ease;
}
.navbar.scrolling-down { transform: translateY(-100%); }
.navbar.scrolled { background: rgba(5,5,5,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.5); border-bottom: 1px solid rgba(255,255,255,0.1); }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-primary); }
.whatsapp-cta-nav {
    background: rgba(255,255,255,0.1); color: white; padding: 0.6rem 1.5rem;
    border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s ease;
}
.whatsapp-cta-nav:hover { background: var(--wa-color); border-color: var(--wa-color); }

/* Hero */
.hero { display: flex; flex-direction: column; justify-content: center; text-align: center; min-height: 100vh; padding: var(--nav-height) 5% 4rem; position: relative; }
.hero-content { max-width: 800px; margin: 0 auto; z-index: 2; }
.badge {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 100px;
    background: rgba(229, 57, 53, 0.1); border: 1px solid rgba(229, 57, 53, 0.2);
    color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
h1 {
    font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; font-weight: 700; letter-spacing: -1.5px;
    margin-bottom: 1.5rem; background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.8));
}
p { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-secondary); margin-bottom: 2.5rem; font-weight: 300; line-height: 1.5; }
.cta-wrapper { display: inline-block; margin-bottom: 3rem; }

.whatsapp-cta {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background-color: var(--text-primary); color: #000;
    padding: 1.1rem 2.2rem; border-radius: 100px; text-decoration: none;
    font-weight: 600; font-size: 1.1rem; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.05); position: relative; overflow: hidden;
}
.whatsapp-cta::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent); transition: left 0.6s ease;
}
.whatsapp-cta:hover {
    transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 30px var(--wa-glow);
    background-color: var(--wa-color); color: white;
}
.whatsapp-cta:hover::before { left: 100%; }
.wa-icon { width: 24px; height: 24px; transition: color 0.3s ease; }
.whatsapp-cta:hover .wa-icon { color: white; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.stat-item strong { display: block; font-size: 1.5rem; font-weight: 700; color: white; }
.stat-item span { font-size: 0.9rem; color: var(--text-secondary); }

.glow-ring {
    position: absolute; top: 50%; left: 50%; width: 90vw; max-width: 800px; aspect-ratio: 1/1; 
    border-radius: 50%; transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.02); z-index: 1;
    animation: spin 30s linear infinite; pointer-events: none;
}
.glow-ring::after {
    content: ''; position: absolute; top: -1px; left: 50%; width: 40%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(229, 57, 53, 0.5), transparent); transform: translateX(-50%);
}
.glow-ring::before {
    content: ''; position: absolute; bottom: -1px; left: 50%; width: 20%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.3), transparent); transform: translateX(-50%);
}

/* Trust Bar */
.scrolling-trust-bar {
    width: 100%; padding: 1.5rem 0; background: var(--surface);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    overflow: hidden; white-space: nowrap; display: flex; align-items: center;
}
.ticker-content { display: inline-flex; align-items: center; animation: ticker 20s linear infinite; }
.ticker-content span { font-size: 1rem; font-weight: 500; color: var(--text-secondary); letter-spacing: 1px; text-transform: uppercase; }
.dot { margin: 0 2rem; color: var(--accent) !important; }

/* Features */
.features { padding: 8rem 5%; position: relative; z-index: 1; }
.features-header { text-align: center; margin-bottom: 5rem; }
.features-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 1rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.features-header p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; color: var(--text-secondary); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.feature-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
    padding: 2.5rem 2rem; transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(229, 57, 53, 0.05), transparent 60%);
    opacity: 0; transition: opacity 0.5s ease;
}
.feature-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(229, 57, 53, 0.1); background: rgba(255, 255, 255, 0.04); }
.feature-card:hover::before { opacity: 1; }

.icon-wrapper {
    width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; border: 1px solid rgba(229, 57, 53, 0.2);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
    box-shadow: inset 0 0 20px rgba(229, 57, 53, 0.1); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.icon-wrapper svg { width: 32px; height: 32px; color: var(--accent); }
.feature-card:hover .icon-wrapper { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-primary); }
.feature-card p { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }

/* Catalog */
.catalog { padding: 4rem 5% 8rem; position: relative; }
.catalog-header { text-align: center; margin-bottom: 5rem; }
.catalog-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.catalog-header p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto;}
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.catalog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 3rem 2rem; position: relative; overflow: hidden; transition: all 0.5s ease; text-align: center; }
.catalog-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; position: relative; z-index: 2; }
.catalog-card p { font-size: 1rem; color: var(--text-secondary); position: relative; z-index: 2; }
.catalog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(229, 57, 53, 0.2); }
.catalog-card::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: radial-gradient(circle at center, rgba(229, 57, 53, 0.08), transparent 70%); opacity: 0; transition: opacity 0.4s; z-index: 1; }
.catalog-card:hover::before { opacity: 1; }
.card-badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent); color: white; padding: 0.3rem 0.8rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; z-index: 3; }

/* Process */
.process { padding: 8rem 5%; position: relative; background: rgba(0,0,0,0.4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.process-steps { display: flex; flex-direction: column; gap: 3rem; max-width: 800px; margin: 0 auto; position: relative; }
.process-steps::before { content: ''; position: absolute; left: 28px; top: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--accent) 0%, transparent 100%); opacity: 0.6; border-radius: 4px; }
.step { position: relative; padding-left: 80px; }
.step-num { position: absolute; left: 0; top: 0; width: 60px; height: 60px; background: var(--bg-color); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: var(--accent); z-index: 2; box-shadow: 0 0 20px rgba(229, 57, 53, 0.2); }
.step h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6; }

/* Quality Section - Bento Grid */
.quality { padding: 6rem 5% 8rem; position: relative; z-index: 2; border-top: 1px solid var(--border); }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.bento-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.5) 100%);
    border: 1px solid var(--border); border-radius: 32px; padding: 3rem; overflow: hidden;
    backdrop-filter: blur(12px); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
}
.bento-item::before {
    content:''; position: absolute; top:0; left:0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 70%);
    opacity: 0; transition: opacity 0.5s ease;
}
.bento-item:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.bento-item:hover::before { opacity: 1; }

.bento-1 { grid-column: 1 / 2; }
.bento-2 { grid-column: 2 / 3; }
.bento-3 { grid-column: 1 / 3; }
.bento-3 .bento-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.bento-3 .bento-text { flex: 1; max-width: 500px; }
.cold-chain-graphic { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; position: relative; }

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-1, .bento-2, .bento-3 { grid-column: span 1; }
    .bento-3 .bento-inner { flex-direction: column; align-items: flex-start; }
    .cold-chain-graphic { width: 100%; align-items: flex-start; }
}

.bento-inner h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 0.8rem; }
.bento-inner p { color: var(--text-secondary); line-height: 1.6; font-size: 1.1rem; }

/* AI Orb Animation */
.ai-orb {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #FF9800);
    margin-bottom: 2rem; position: relative;
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.4); display: flex; align-items: center; justify-content: center;
}
.ai-orb::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    border-radius: 50%; border: 2px solid var(--accent);
    animation: pulse-out 2s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ai-orb span {
    width: 24px; height: 24px; background: #fff; border-radius: 50%;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.5);
    animation: float-eye 3s ease-in-out infinite;
}

/* Radar Animation */
.radar {
    width: 64px; height: 64px; border-radius: 50%; border: 2px solid rgba(255, 152, 0, 0.3);
    margin-bottom: 2rem; position: relative; overflow: hidden;
    background: rgba(255, 152, 0, 0.05); box-shadow: 0 0 20px rgba(255, 152, 0, 0.2);
}
.radar::before { content:''; position: absolute; top:50%; left:0; width: 100%; height: 1px; background: rgba(255, 152, 0, 0.4); }
.radar::after { content:''; position: absolute; top:0; left:50%; width: 1px; height: 100%; background: rgba(255, 152, 0, 0.4); }
.radar-scan {
    position: absolute; top: 0; left: 0; width: 50%; height: 50%;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0) 20%, rgba(255, 152, 0, 0.8) 100%);
    transform-origin: bottom right; animation: spin 3s linear infinite;
}

/* Cold Chain */
.temp-readout { font-size: 2rem; font-weight: 700; color: #00C6FF; text-shadow: 0 0 15px rgba(0, 198, 255, 0.5); }
.cold-chain-bar {
    width: 200px; height: 12px; background: rgba(255,255,255,0.05);
    border-radius: 20px; position: relative; overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); margin-top: 5px;
}
.cold-chain-fill {
    position: absolute; left: 0; top: 0; height: 100%; width: 0%;
    background: linear-gradient(90deg, #00C6FF, #0072FF);
    border-radius: 20px; box-shadow: 0 0 15px rgba(0, 198, 255, 0.6);
}
.scroll-reveal.in-view .cold-chain-fill {
    animation: fill-bar 2s forwards cubic-bezier(0.1, 0.8, 0.2, 1); animation-delay: 0.5s;
}
.snow-particle {
    position: absolute; width: 3px; height: 3px; background: white;
    border-radius: 50%; box-shadow: 0 0 5px white; opacity: 0;
}
.p1 { left: 40%; animation: snow 2s infinite 0.1s; }
.p2 { left: 70%; animation: snow 2.5s infinite 0.8s; }
.p3 { left: 20%; animation: snow 1.5s infinite 1.2s; }

@keyframes pulse-out { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2); opacity: 0; } }
@keyframes float-eye { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(4px, -2px); } 50% { transform: translate(0, 4px); } 75% { transform: translate(-4px, -2px); } }
@keyframes fill-bar { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes snow { 0% { transform: translateY(-10px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(20px); opacity: 0; } }

/* CTA Section */
.bottom-cta { padding: 8rem 5%; display: flex; justify-content: center; }
.cta-card {
    background: linear-gradient(180deg, var(--surface) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 1px solid var(--border); border-radius: 32px; padding: 5rem 2rem; text-align: center;
    width: 100%; max-width: 1000px; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.cta-card h2 {
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 1rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.cta-card p { font-size: 1.3rem; margin-bottom: 3rem; color: var(--text-secondary); }
.cta-massive { display: inline-flex; font-size: 1.3rem; padding: 1.2rem 3rem; }

/* Partner / Contact Page */
.partner-page { padding: calc(var(--nav-height) + 6rem) 5% 6rem; min-height: 100vh; position: relative; z-index: 2; }
.partner-container { max-width: 800px; margin: 0 auto; }
.partner-header { text-align: center; margin-bottom: 4rem; }
.partner-header h1 { font-size: clamp(3rem, 5vw, 4.5rem); margin-bottom: 1rem; font-weight: 700; color: #fff; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.8)); }
.partner-header p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.partner-form {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.5) 100%);
    border: 1px solid var(--border); border-radius: 32px; padding: 3rem; 
    backdrop-filter: blur(12px); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 2rem; }
.form-group label {
    display: block; font-size: 1rem; font-weight: 500; margin-bottom: 0.8rem; color: var(--text-secondary);
}
.form-group input, .form-group select {
    width: 100%; padding: 1.2rem 1.5rem; background: rgba(0,0,0,0.4); 
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; 
    color: white; font-family: 'Outfit', -apple-system, sans-serif; font-size: 1.1rem; transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 15px rgba(229, 57, 53, 0.2); background: rgba(0,0,0,0.6);
}
.form-group select { appearance: none; cursor: pointer; color: white; }
.form-group select option { background: #111; color: white; }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.submit-btn { width: 100%; margin-top: 1rem; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }

footer { border-top: 1px solid var(--border); padding: 3rem 5%; }
.footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; font-weight: 500; }
.footer-links a:hover { color: var(--text-primary); }

/* Infographic Row */
.infographic-row {
    display: flex; justify-content: center; gap: 3rem; margin-bottom: 6rem; flex-wrap: wrap;
    max-width: 1100px; margin-left: auto; margin-right: auto;
}
.info-card {
    background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 28px;
    padding: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
    flex: 1 1 280px; max-width: 350px; transition: all 0.4s ease;
}
@media (max-width: 768px) {
    .info-card { max-width: 100%; width: 100%; flex: 1 1 100%; }
    .infographic-row { gap: 1.5rem; }
}
.info-card:hover { transform: scale(1.05); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }

/* Viz: Velocity Chart */
.velocity-chart {
    display: flex; align-items: flex-end; gap: 8px; width: 100px; height: 100px; border-bottom: 2px solid var(--border);
    padding-bottom: 5px;
}
.bar-grow { width: 18px; border-radius: 4px; background: var(--accent); opacity: 0.6; }
.bg-1 { height: 30%; animation: bar-pop 1.5s infinite alternate ease-in-out; }
.bg-2 { height: 60%; animation: bar-pop 1.5s infinite alternate 0.2s ease-in-out; }
.bg-3 { height: 85%; animation: bar-pop 1.5s infinite alternate 0.4s ease-in-out; }
.bg-4 { height: 50%; animation: bar-pop 1.5s infinite alternate 0.6s ease-in-out; }

/* Viz: Fresh Dial */
.fresh-dial {
    width: 100px; height: 100px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.05);
    position: relative; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
}
.dial-needle {
    width: 2px; height: 45px; background: var(--accent); position: absolute; bottom: 50%; left: calc(50% - 1px);
    transform-origin: bottom center; animation: dial-spin 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.dial-glow {
    width: 10px; height: 10px; background: white; border-radius: 50%; position: absolute;
    box-shadow: 0 0 15px white;
}

/* Viz: Reach Pulse */
.reach-pulse {
    width: 100px; height: 100px; position: relative; display: flex; align-items: center; justify-content: center;
}
.pulse-ring {
    position: absolute; border: 2px solid var(--accent); border-radius: 50%; opacity: 0;
}
.r1 { width: 30%; height: 30%; animation: circle-pulse 2s infinite; }
.r2 { width: 50%; height: 50%; animation: circle-pulse 2s infinite 0.6s; }
.r3 { width: 80%; height: 80%; animation: circle-pulse 2s infinite 1.2s; }
.dot-center { width: 8px; height: 8px; background: white; border-radius: 50%; box-shadow: 0 0 10px white; }

.info-label { text-align: center; }
.info-label span { font-size: 2.2rem; font-weight: 700; color: white; display: block; margin-bottom: 0.3rem; }
.info-label p { font-size: 1rem; color: var(--text-secondary); margin: 0; letter-spacing: 1px; text-transform: uppercase; font-weight: 500;}

@keyframes bar-pop { 0% { opacity: 0.4; filter: brightness(0.8); } 100% { opacity: 1; filter: brightness(1.2); } }
@keyframes dial-spin { 0% { transform: rotate(-90deg); } 50% { transform: rotate(120deg); } 100% { transform: rotate(-90deg); } }
@keyframes circle-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.8); opacity: 0; } }

/* Animations */
@keyframes float { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-25px) rotate(4deg); } 100% { transform: translateY(0) rotate(0deg); } }
@keyframes pulse { 0% { transform: translateY(-50%) scale(1); opacity: 0.3; } 100% { transform: translateY(-50%) scale(1.15); opacity: 0.5; } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes gentle-float { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }

.scroll-reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }
.animate-text-1, .animate-text-2, .animate-text-3, .animate-text-4, .animate-text-5, .animate-image { opacity: 0; transform: translateY(30px); }

/* Responsive */
@media (min-width: 993px) {
    .process-steps { flex-direction: row; gap: 2rem; max-width: 1200px; align-items: flex-start; }
    .process-steps::before { top: 28px; left: 0; height: 4px; width: 100%; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); }
    .step { padding-left: 0; padding-top: 80px; text-align: center; width: 33.333%; }
    .step-num { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .hide-mobile { display: none; }
    .blob-bg { top: 30%; width: 100%; right: 0; }
    .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; }
    .stat-item { flex: 1 1 120px; }
    .stat-divider { display: none; }
    .cta-card { padding: 3rem 1.5rem; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .partner-form { padding: 2rem 1.5rem; }
    .bento-item { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .navbar { padding: 0 0.8rem; }
    .logo { font-size: 1rem; }
    .whatsapp-cta-nav { padding: 0.4rem 1rem; font-size: 0.8rem; }
    h1 { font-size: 2rem; }
    .badge { font-size: 0.6rem; margin-bottom: 1rem; }
    .hero-content { width: 100%; padding: 0 10px; }
    .hero-stats { gap: 0.5rem; }
    .stat-item strong { font-size: 1.2rem; }
    .stat-item span { font-size: 0.75rem; }
    .infographic-row { padding: 0 0.5rem; gap: 1rem; }
    .info-card { padding: 1.5rem 1rem; border-radius: 20px; }
    .info-label span { font-size: 1.6rem; }
    .info-label p { font-size: 0.8rem; }
    .scrolling-trust-bar { width: 100vw; overflow: hidden; height: 50px; }
    .ticker-content { animation-duration: 8s; }
    .ticker-content span { font-size: 0.8rem; }
    section { padding-left: 1rem !important; padding-right: 1rem !important; overflow: hidden; }
}
