/* ============================================================
   BIOLUGA - COMPLETE STYLES (All in One)
   ============================================================ */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Body */
body { font-family: 'Inter', Arial, sans-serif; background: #FFFFFF; color: #003366; line-height: 1.6; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* Header */
.global-header { background: #FFFFFF; padding: 16px 0; border-bottom: 1px solid rgba(0,51,102,0.06); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo { height: 48px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-item a { font-size: 15px; font-weight: 500; color: #415A77; text-decoration: none; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-item a:hover { color: #003366; border-bottom-color: #003366; }
.nav-locator { color: #003366 !important; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger { display: block; width: 28px; height: 2px; background: #003366; position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 28px; height: 2px; background: #003366; }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 40px; border-radius: 50px; font-weight: 600; font-size: 16px; border: none; cursor: pointer; transition: all 0.3s ease; text-decoration: none; gap: 8px; min-height: 56px; }
.btn-primary { background-color: #003366; color: #FFFFFF; }
.btn-primary:hover { background-color: #002244; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,51,102,0.2); }
.btn-secondary { background-color: transparent; color: #003366; border: 1.5px solid #003366; }
.btn-secondary:hover { background-color: #003366; color: #FFFFFF; transform: translateY(-2px); }
.btn-small { padding: 10px 20px; font-size: 14px; min-height: 40px; }
.btn-stacked { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 14px 24px; min-height: 64px; gap: 2px; }
.btn-line-top { font-weight: 600; font-size: 16px; }
.btn-line-bottom { font-weight: 400; font-size: 14px; opacity: 0.9; }

/* Hero */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; background: #003366; }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 0; }
.hero-headline { font-family: 'Playfair Display', Georgia, serif; font-size: 56px; font-weight: 700; color: #FFFFFF; line-height: 1.1; margin-bottom: 20px; }
.hero-subheadline { font-size: 20px; color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 32px; max-width: 600px; }
.hero-actions .btn-primary { background: #FFFFFF; color: #003366; }
.hero-actions .btn-primary:hover { background: rgba(255,255,255,0.9); }

/* Section Headlines */
.section-headline { font-family: 'Playfair Display', Georgia, serif; font-size: 36px; font-weight: 600; color: #003366; text-align: center; margin-bottom: 12px; }
.section-subheadline { font-size: 18px; color: #415A77; text-align: center; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }

/* Pillars Grid */
.pillars { padding: 80px 0; background: #FDFBF7; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.pillar-card { background: #FFFFFF; border-radius: 16px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,51,102,0.06); transition: all 0.4s ease; border-top: 4px solid #003366; text-align: center; display: flex; flex-direction: column; align-items: center; height: 100%; }
.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 10px 40px rgba(0,51,102,0.08); }
.zone-a-card { border-top-color: #7B9E87; }
.zone-b-card { border-top-color: #1B4F72; }
.zone-c-card { border-top-color: #C47B2E; }
.pillar-card .card-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.zone-a-card .card-icon { background: rgba(123,158,135,0.1); }
.zone-b-card .card-icon { background: rgba(27,79,114,0.1); }
.zone-c-card .card-icon { background: rgba(196,123,46,0.1); }
.pillar-card .card-icon i { font-size: 40px; }
.brand-name { font-size: 32px; font-weight: 700; display: block; line-height: 1.1; }
.brand-name-crena { font-family: 'Playfair Display', Georgia, serif; color: #7B9E87; }
.brand-name-mealuga { font-family: 'Comfortaa', sans-serif; color: #1B4F72; }
.brand-name-snacking { font-family: 'Inter', Arial, sans-serif; color: #C47B2E; }
.brand-tagline { font-size: 14px; font-weight: 500; color: #415A77; display: block; margin-top: 2px; }
.pillar-card .card-subtitle { font-size: 16px; font-weight: 500; color: #003366; margin-bottom: 12px; }
.pillar-card .card-description { font-size: 15px; color: #415A77; line-height: 1.6; flex-grow: 1; margin-bottom: 20px; }
.zone-a-card .btn-stacked .btn-line-top { color: #7B9E87; }
.zone-b-card .btn-stacked .btn-line-top { color: #1B4F72; }
.zone-c-card .btn-stacked .btn-line-top { color: #C47B2E; }
.btn-stacked:hover .btn-line-top { color: #FFFFFF; }

/* Professional Badge */
.professional-badge { display: inline-block; background: rgba(27,79,114,0.12); color: #1B4F72; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 50px; }
.professional-tooltip { position: relative; display: inline-block; margin-bottom: 12px; cursor: help; }
.professional-tooltip-text { visibility: hidden; opacity: 0; width: 280px; background: #003366; color: #FFFFFF; text-align: left; padding: 12px 16px; border-radius: 16px; font-size: 13px; line-height: 1.5; position: absolute; z-index: 10; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); transition: opacity 0.3s ease; box-shadow: 0 10px 40px rgba(0,51,102,0.08); }
.professional-tooltip-text::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #003366; }
.professional-tooltip:hover .professional-tooltip-text { visibility: visible; opacity: 1; }

/* Purity Grid */
.purity-standard { padding: 80px 0; background: #FDFBF7; }
.purity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.purity-item { text-align: center; padding: 20px; }
.purity-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(44,90,74,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.purity-title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 600; color: #003366; margin-bottom: 8px; }
.purity-description { font-size: 15px; color: #415A77; line-height: 1.6; }

/* Sustainability Grid */
.sustainability { padding: 80px 0; background: #F5F8F2; }
.sustainability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.sustainability-card { background: #FFFFFF; border-radius: 16px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,51,102,0.04); transition: all 0.4s ease; border-top: 3px solid #C47B2E; }
.sustainability-card:hover { transform: translateY(-4px); box-shadow: 0 4px 20px rgba(0,51,102,0.06); }
.sustainability-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(196,123,46,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.sustainability-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 600; color: #003366; margin-bottom: 6px; }
.sustainability-description { font-size: 14px; color: #415A77; line-height: 1.6; }

/* Routing Grid */
.audience-routing { padding: 80px 0; background: #FDFBF7; }
.routing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.routing-card { background: #FFFFFF; border-radius: 16px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(0,51,102,0.06); transition: all 0.4s ease; border-top: 4px solid #003366; text-align: center; display: flex; flex-direction: column; align-items: center; height: 100%; }
.routing-card:hover { transform: translateY(-8px); box-shadow: 0 10px 40px rgba(0,51,102,0.08); }
.routing-card:nth-child(1) { border-top-color: #7B9E87; }
.routing-card:nth-child(2) { border-top-color: #1B4F72; }
.routing-card:nth-child(3) { border-top-color: #C47B2E; }
.routing-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.routing-card:nth-child(1) .routing-icon { background: rgba(123,158,135,0.1); }
.routing-card:nth-child(2) .routing-icon { background: rgba(27,79,114,0.1); }
.routing-card:nth-child(3) .routing-icon { background: rgba(196,123,46,0.1); }
.routing-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 600; color: #003366; margin-bottom: 8px; }
.routing-card p { font-size: 15px; color: #415A77; line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
.routing-card .btn { width: 100%; justify-content: center; }

/* Footer */
.corporate-footer { background: #003366; color: #FFFFFF; padding: 48px 0 24px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { height: 40px; margin-bottom: 8px; }
.footer-tagline { color: rgba(255,255,255,0.6); }
.footer-heading { color: #FFFFFF; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; }
.footer-links ul li a:hover { color: #FFFFFF; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border-radius: 8px; border: none; background: rgba(255,255,255,0.1); color: #FFFFFF; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .btn-small { padding: 10px 20px; background: #C47B2E; color: #FFFFFF; border: none; border-radius: 8px; cursor: pointer; }
.newsletter-form .btn-small:hover { background: #A85F1E; }
.footer-address-corporate { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin: 16px 0 20px; }
.address-item { display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.address-item span { color: rgba(255,255,255,0.6); font-size: 13px; }
.address-item strong { color: #FFFFFF; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.legal-links { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; padding: 0; margin: 0; }
.legal-links a { color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none; }
.legal-links a:hover { color: #FFFFFF; }
.footer-copyright { color: rgba(255,255,255,0.3); font-size: 12px; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .pillars-grid, .purity-grid, .sustainability-grid, .routing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav-list { display: none; }
    .menu-toggle { display: block; }
    .hero-headline { font-size: 32px; }
    .hero { min-height: 60vh; }
    .section-headline { font-size: 28px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { width: 100%; }
    .newsletter-form .btn-small { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .address-item { flex-direction: column; text-align: center; gap: 6px; }
}