:root {
    --blue-900: #0A1628;
    --blue-800: #0D2240;
    --blue-700: #1A3A5C;
    --blue-600: #1E56A0;
    --blue-500: #2563EB;
    --blue-400: #3B82F6;
    --blue-300: #60A5FA;
    --blue-200: #93C5FD;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;
    --orange-600: #EA580C;
    --orange-500: #F97316;
    --orange-400: #FB923C;
    --orange-300: #FDBA74;
    --orange-200: #FED7AA;
    --orange-100: #FFEDD5;
    --orange-50: #FFF7ED;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gradient-blue: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
    --gradient-orange: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
    --gradient-hero: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
    --gradient-dark: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --container-max: 1280px;
    --container-padding: 1.5rem;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--gray-700); background-color: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.text-gradient { background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-orange { color: var(--orange-500); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.9375rem; border-radius: var(--radius-lg); transition: all var(--transition-base); white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient-orange); color: var(--white); box-shadow: var(--shadow-md), 0 4px 14px rgba(249, 115, 22, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), 0 6px 20px rgba(249, 115, 22, 0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, 0.3); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-lg svg { width: 20px; height: 20px; }
.btn-full { width: 100%; }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all var(--transition-base); }
.header.scrolled { background: rgba(10, 22, 40, 0.98); box-shadow: var(--shadow-lg); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-family: var(--font-body); font-size: 1.75rem; font-weight: 800; display: flex; }
.logo-siga { color: var(--blue-400); }
.logo-leve { color: var(--orange-500); }
.nav-menu { display: flex; align-items: center; gap: var(--space-lg); }
.nav-link { color: rgba(255, 255, 255, 0.8); font-weight: 500; font-size: 0.9375rem; padding: var(--space-sm) var(--space-md); border-radius: var(--radius-md); transition: all var(--transition-fast); }
.nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav-cta { margin-left: var(--space-md); }
.nav-toggle { display: none; color: var(--white); padding: var(--space-sm); }
.nav-toggle svg { width: 28px; height: 28px; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-gradient { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%); }
.hero-content { display: grid; grid-template-columns: 1fr 400px; gap: var(--space-4xl); align-items: center; }
.hero-text { max-width: 700px; }
.hero-tag { display: inline-flex; align-items: center; gap: var(--space-sm); background: rgba(249, 115, 22, 0.15); color: var(--orange-400); padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-full); font-weight: 600; font-size: 0.875rem; margin-bottom: var(--space-lg); border: 1px solid rgba(249, 115, 22, 0.3); }
.hero-tag svg { width: 18px; height: 18px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: var(--space-lg); letter-spacing: 0.02em; }
.hero-title .text-gradient { background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.125rem; color: rgba(255, 255, 255, 0.8); margin-bottom: var(--space-xl); line-height: 1.7; }
.hero-ctas { display: flex; gap: var(--space-md); margin-bottom: var(--space-2xl); flex-wrap: wrap; }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.badge { display: flex; align-items: center; gap: var(--space-sm); color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }
.badge svg { width: 16px; height: 16px; color: var(--orange-400); }
.hero-stats { display: grid; gap: var(--space-md); }
.stat-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-xl); padding: var(--space-lg); text-align: center; transition: all var(--transition-base); }
.stat-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.2); }
.stat-featured { background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%); border-color: rgba(249, 115, 22, 0.3); padding: var(--space-xl); }
.stat-icon { width: 48px; height: 48px; background: var(--gradient-orange); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-md); }
.stat-icon svg { width: 24px; height: 24px; color: var(--white); }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); line-height: 1; margin-bottom: var(--space-xs); }
.stat-featured .stat-number { font-size: 3.5rem; color: var(--orange-400); }
.stat-label { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.stat-source { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); margin-top: var(--space-xs); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; animation: bounce 2s infinite; }
.scroll-indicator svg { width: 24px; height: 24px; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
.section { padding: var(--space-4xl) 0; }
.section-light { background: var(--gray-50); }
.section-dark { background: var(--gradient-dark); }
.section-gradient { background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%); }
.section-header { text-align: center; max-width: 800px; margin: 0 auto var(--space-3xl); }
.section-header-light { color: var(--white); }
.section-tag { display: inline-block; background: rgba(37, 99, 235, 0.1); color: var(--blue-600); padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-full); font-weight: 600; font-size: 0.875rem; margin-bottom: var(--space-md); border: 1px solid rgba(37, 99, 235, 0.2); }
.section-tag-light { background: rgba(249, 115, 22, 0.15); color: var(--orange-400); border-color: rgba(249, 115, 22, 0.3); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--gray-900); margin-bottom: var(--space-md); letter-spacing: 0.02em; }
.section-header-light .section-title { color: var(--white); }
.section-subtitle { font-size: 1.125rem; color: var(--gray-600); line-height: 1.7; }
.section-header-light .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); margin-bottom: var(--space-3xl); }
.stat-box { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl); text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: all var(--transition-base); }
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.stat-box-featured { background: var(--gradient-blue); color: var(--white); border: none; }
.stat-box-icon { width: 56px; height: 56px; background: rgba(255, 255, 255, 0.2); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-md); }
.stat-box-icon svg { width: 28px; height: 28px; }
.stat-box-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--blue-600); line-height: 1; margin-bottom: var(--space-xs); }
.stat-box-featured .stat-box-number { color: var(--white); }
.stat-box-label { font-weight: 700; font-size: 0.9375rem; color: var(--gray-800); margin-bottom: var(--space-xs); }
.stat-box-featured .stat-box-label { color: var(--white); }
.stat-box-desc { font-size: 0.8125rem; color: var(--gray-500); }
.stat-box-featured .stat-box-desc { color: rgba(255, 255, 255, 0.8); }
.diseases-section { margin-bottom: var(--space-3xl); }
.diseases-title { text-align: center; font-size: 1.25rem; color: var(--gray-700); margin-bottom: var(--space-xl); }
.diseases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.disease-card { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-lg); display: flex; align-items: center; gap: var(--space-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all var(--transition-base); }
.disease-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); }
.disease-card svg { width: 24px; height: 24px; color: var(--blue-500); flex-shrink: 0; }
.disease-card span { font-weight: 600; font-size: 0.875rem; color: var(--gray-700); }
.quote-highlight { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-2xl); text-align: center; box-shadow: var(--shadow-lg); border-left: 4px solid var(--orange-500); position: relative; }
.quote-highlight svg { width: 40px; height: 40px; color: var(--orange-300); margin-bottom: var(--space-md); }
.quote-highlight p { font-size: 1.25rem; font-weight: 600; color: var(--gray-800); font-style: italic; }
.solution-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-lg); }
.solution-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-xl); padding: var(--space-xl); position: relative; transition: all var(--transition-base); }
.solution-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); border-color: rgba(249, 115, 22, 0.3); }
.solution-icon { width: 56px; height: 56px; background: var(--gradient-orange); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); }
.solution-icon svg { width: 28px; height: 28px; color: var(--white); }
.solution-number { position: absolute; top: var(--space-lg); right: var(--space-lg); font-family: var(--font-display); font-size: 1.5rem; color: rgba(255, 255, 255, 0.2); }
.solution-card h3 { font-size: 1.125rem; color: var(--white); margin-bottom: var(--space-sm); }
.solution-card p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.mechanism-section { background: var(--white); border-radius: var(--radius-2xl); padding: var(--space-2xl); box-shadow: var(--shadow-xl); margin-bottom: var(--space-3xl); }
.mechanism-header { text-align: center; margin-bottom: var(--space-xl); }
.mechanism-header h3 { font-family: var(--font-display); font-size: 1.75rem; color: var(--gray-800); }
.mechanism-grid { display: flex; align-items: center; justify-content: center; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.mechanism-card { flex: 1; max-width: 300px; padding: var(--space-xl); border-radius: var(--radius-xl); }
.mechanism-glp1 { background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%); border: 2px solid var(--blue-200); }
.mechanism-gip { background: linear-gradient(135deg, var(--orange-50) 0%, var(--orange-100) 100%); border: 2px solid var(--orange-200); }
.mechanism-badge { display: inline-block; padding: var(--space-sm) var(--space-lg); border-radius: var(--radius-full); font-weight: 700; font-size: 0.875rem; margin-bottom: var(--space-md); }
.mechanism-glp1 .mechanism-badge { background: var(--blue-500); color: var(--white); }
.mechanism-gip .mechanism-badge { background: var(--orange-500); color: var(--white); }
.mechanism-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.mechanism-list li { display: flex; align-items: flex-start; gap: var(--space-sm); font-size: 0.875rem; color: var(--gray-700); }
.mechanism-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.mechanism-glp1 .mechanism-list svg { color: var(--blue-500); }
.mechanism-gip .mechanism-list svg { color: var(--orange-500); }
.mechanism-plus { width: 48px; height: 48px; background: var(--gray-100); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mechanism-plus svg { width: 24px; height: 24px; color: var(--gray-500); }
.mechanism-result { display: flex; align-items: center; justify-content: center; gap: var(--space-md); background: linear-gradient(135deg, var(--blue-600) 0%, var(--orange-500) 100%); border-radius: var(--radius-xl); padding: var(--space-lg) var(--space-xl); color: var(--white); }
.mechanism-result-icon { width: 48px; height: 48px; background: rgba(255, 255, 255, 0.2); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mechanism-result-icon svg { width: 24px; height: 24px; }
.mechanism-result-text { font-size: 1rem; }
.tirze-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.tirze-stat { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl); text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.tirze-stat-number { font-family: var(--font-display); font-size: 3rem; color: var(--blue-600); line-height: 1; margin-bottom: var(--space-sm); }
.tirze-stat-label { font-size: 0.9375rem; color: var(--gray-600); }
.tirze-note { display: flex; align-items: flex-start; gap: var(--space-md); background: linear-gradient(135deg, var(--success) 0%, #059669 100%); color: var(--white); border-radius: var(--radius-xl); padding: var(--space-lg); margin-bottom: var(--space-md); }
.tirze-note svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.tirze-note p { font-size: 0.9375rem; }
.tirze-disclaimer { display: flex; align-items: flex-start; gap: var(--space-md); background: var(--gray-100); border-radius: var(--radius-xl); padding: var(--space-lg); border: 1px solid var(--gray-200); }
.tirze-disclaimer svg { width: 20px; height: 20px; color: var(--gray-500); flex-shrink: 0; margin-top: 2px; }
.tirze-disclaimer p { font-size: 0.875rem; color: var(--gray-600); }
.supplements-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); margin-bottom: var(--space-2xl); }
.supplement-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-2xl); padding: var(--space-2xl); display: flex; gap: var(--space-xl); transition: all var(--transition-base); }
.supplement-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(249, 115, 22, 0.3); }
.supplement-image { width: 100px; height: 100px; background: var(--gradient-orange); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.supplement-image svg { width: 48px; height: 48px; color: var(--white); }
.supplement-content h3 { font-size: 1.25rem; color: var(--white); margin-bottom: var(--space-sm); }
.supplement-subtitle { font-size: 0.875rem; color: var(--orange-400); font-weight: 600; margin-bottom: var(--space-md); }
.supplement-content ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.supplement-content li { display: flex; align-items: flex-start; gap: var(--space-sm); font-size: 0.9375rem; color: rgba(255, 255, 255, 0.8); }
.supplement-content svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }
.supplements-highlight { display: flex; align-items: center; justify-content: center; gap: var(--space-md); background: var(--gradient-orange); border-radius: var(--radius-xl); padding: var(--space-lg) var(--space-2xl); color: var(--white); font-size: 1.125rem; }
.supplements-highlight svg { width: 24px; height: 24px; }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-bottom: var(--space-2xl); }
.platform-card { background: var(--white); border-radius: var(--radius-2xl); padding: var(--space-2xl); box-shadow: var(--shadow-lg); border: 2px solid transparent; transition: all var(--transition-base); }
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2xl); }
.platform-patient:hover { border-color: var(--blue-300); }
.platform-doctor:hover { border-color: var(--orange-300); }
.platform-manager:hover { border-color: var(--success); }
.platform-icon { width: 64px; height: 64px; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-lg); }
.platform-patient .platform-icon { background: var(--gradient-blue); }
.platform-doctor .platform-icon { background: var(--gradient-orange); }
.platform-manager .platform-icon { background: linear-gradient(135deg, var(--success) 0%, #059669 100%); }
.platform-icon svg { width: 32px; height: 32px; color: var(--white); }
.platform-card h3 { font-size: 1.25rem; color: var(--gray-900); margin-bottom: var(--space-lg); }
.platform-features { display: flex; flex-direction: column; gap: var(--space-md); }
.platform-features li { display: flex; align-items: center; gap: var(--space-md); font-size: 0.9375rem; color: var(--gray-600); }
.platform-features svg { width: 18px; height: 18px; color: var(--gray-400); flex-shrink: 0; }
.tech-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-md); }
.tech-badge { display: flex; align-items: center; gap: var(--space-sm); background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-full); padding: var(--space-sm) var(--space-lg); font-size: 0.875rem; font-weight: 500; color: var(--gray-700); }
.tech-badge svg { width: 18px; height: 18px; color: var(--blue-500); }
.results-block { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-2xl); padding: var(--space-2xl); margin-bottom: var(--space-2xl); }
.results-block-title { display: flex; align-items: center; gap: var(--space-md); font-size: 1.25rem; color: var(--white); margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.results-block-title svg { width: 24px; height: 24px; color: var(--orange-400); }
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); margin-bottom: var(--space-xl); }
.result-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-xl); padding: var(--space-lg); text-align: center; transition: all var(--transition-base); }
.result-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
.result-featured { background: rgba(249, 115, 22, 0.2); border-color: rgba(249, 115, 22, 0.3); }
.result-warning { background: rgba(245, 158, 11, 0.15); border-color: rgba(245, 158, 11, 0.3); }
.result-danger { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.3); }
.result-number { font-family: var(--font-display); font-size: 2rem; color: var(--white); line-height: 1; margin-bottom: var(--space-xs); }
.result-featured .result-number { color: var(--orange-400); }
.result-warning .result-number { color: var(--warning); }
.result-danger .result-number { color: var(--danger); }
.result-label { font-size: 0.8125rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); margin-bottom: var(--space-xs); }
.result-source { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.results-quote { background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-xl); padding: var(--space-xl); border-left: 4px solid var(--orange-500); }
.results-quote blockquote { font-size: 1rem; font-style: italic; color: rgba(255, 255, 255, 0.9); margin-bottom: var(--space-sm); }
.results-quote cite { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); font-style: normal; }
.comparison-section { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--space-xl); align-items: center; margin-bottom: var(--space-2xl); }
.comparison-card { background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-xl); padding: var(--space-xl); }
.comparison-bad { border: 2px solid rgba(239, 68, 68, 0.3); }
.comparison-good { border: 2px solid rgba(16, 185, 129, 0.3); }
.comparison-header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-lg); }
.comparison-header svg { width: 28px; height: 28px; }
.comparison-bad .comparison-header svg { color: var(--danger); }
.comparison-good .comparison-header svg { color: var(--success); }
.comparison-header h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.comparison-card ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.comparison-card li { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.8); padding-left: var(--space-lg); position: relative; }
.comparison-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; }
.comparison-bad li::before { background: var(--danger); }
.comparison-good li::before { background: var(--success); }
.comparison-vs { font-family: var(--font-display); font-size: 1.5rem; color: rgba(255, 255, 255, 0.3); padding: var(--space-md); background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-lg); }
.credibility-section { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-lg); }
.credibility-badge { display: flex; flex-direction: column; align-items: center; gap: var(--space-xs); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-xl); padding: var(--space-lg) var(--space-xl); min-width: 140px; }
.credibility-badge svg { width: 32px; height: 32px; color: var(--orange-400); }
.credibility-badge span { font-weight: 700; color: var(--white); font-size: 0.875rem; }
.credibility-badge small { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.differentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.differential-card { background: var(--white); border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: all var(--transition-base); }
.differential-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--blue-200); }
.differential-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-50) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); }
.differential-icon svg { width: 28px; height: 28px; color: var(--blue-600); }
.differential-card h3 { font-size: 1.125rem; color: var(--gray-900); margin-bottom: var(--space-sm); }
.differential-card p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }
.trust-badge { display: flex; align-items: center; justify-content: center; gap: var(--space-md); background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%); border-radius: var(--radius-xl); padding: var(--space-lg) var(--space-2xl); color: var(--white); }
.trust-badge svg { width: 32px; height: 32px; color: var(--orange-400); }
.trust-badge p { font-size: 1.125rem; font-weight: 500; }
.section-cta { background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 50%, var(--orange-400) 100%); position: relative; overflow: hidden; }
.section-cta::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-content { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--white); margin-bottom: var(--space-md); letter-spacing: 0.02em; }
.cta-content > p { font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: var(--space-2xl); }
.cta-form { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-2xl); padding: var(--space-2xl); margin-bottom: var(--space-xl); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-md); }
.form-group input, .form-group select { width: 100%; padding: var(--space-md) var(--space-lg); background: rgba(255, 255, 255, 0.9); border: 2px solid transparent; border-radius: var(--radius-lg); font-size: 1rem; color: var(--gray-800); transition: all var(--transition-fast); }
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--blue-500); background: var(--white); }
.form-group select { cursor: pointer; }
.cta-form .btn { margin-top: var(--space-md); background: var(--blue-600); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4); }
.cta-form .btn:hover { background: var(--blue-700); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5); }
.cta-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-lg); }
.cta-badge { display: flex; align-items: center; gap: var(--space-sm); color: rgba(255, 255, 255, 0.9); font-size: 0.9375rem; }
.cta-badge svg { width: 20px; height: 20px; }
.footer { background: var(--blue-900); color: var(--white); padding: var(--space-4xl) 0 var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-3xl); padding-bottom: var(--space-3xl); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.logo-footer { font-size: 2rem; margin-bottom: var(--space-md); display: inline-flex; }
.footer-slogan { font-size: 0.9375rem; color: var(--orange-400); margin-bottom: var(--space-md); }
.footer-desc { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: var(--space-lg); }
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); }
.footer-social a:hover { background: var(--orange-500); }
.footer-social svg { width: 20px; height: 20px; }
.footer-links h4, .footer-contact h4 { font-size: 1rem; margin-bottom: var(--space-lg); color: var(--white); }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; align-items: center; gap: var(--space-sm); }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex-shrink: 0; }
.footer-contact a { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.6); transition: color var(--transition-fast); }
.footer-contact a:hover { color: var(--white); }
.footer-disclaimer { padding: var(--space-xl) 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-disclaimer p { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.4); text-align: center; line-height: 1.7; }
.footer-bottom { padding-top: var(--space-xl); text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.5); }
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gradient-orange); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all var(--transition-base); z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.back-to-top svg { width: 24px; height: 24px; }
@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr 350px; gap: var(--space-2xl); }
    .solution-grid { grid-template-columns: repeat(3, 1fr); }
    .results-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .nav-menu { position: fixed; top: 80px; left: 0; right: 0; background: var(--blue-900); flex-direction: column; padding: var(--space-xl); gap: var(--space-sm); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all var(--transition-base); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .diseases-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .mechanism-grid { flex-direction: column; }
    .mechanism-card { max-width: 100%; }
    .mechanism-plus { transform: rotate(90deg); }
    .tirze-stats { grid-template-columns: 1fr; }
    .supplements-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .comparison-section { grid-template-columns: 1fr; gap: var(--space-md); }
    .comparison-vs { text-align: center; }
    .differentials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); }
}
@media (max-width: 768px) {
    :root { --container-padding: 1rem; }
    .section { padding: var(--space-3xl) 0; }
    .hero { padding: 100px 0 60px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .diseases-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .differentials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .credibility-section { gap: var(--space-md); }
    .credibility-badge { min-width: 120px; padding: var(--space-md); }
    .supplement-card { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; align-items: flex-start; }
    .tech-badges { flex-direction: column; align-items: center; }
    .cta-badges { flex-direction: column; align-items: center; }
    .mechanism-result { flex-direction: column; text-align: center; }
    .supplements-highlight { flex-direction: column; text-align: center; }
    .trust-badge { flex-direction: column; text-align: center; }
}

/* ==================== BRINDE SECTION ==================== */
.section-brinde {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%);
    position: relative;
    overflow: hidden;
}
.section-brinde::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.brinde-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}
.brinde-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}
.brinde-image img {
    width: 100%;
    height: auto;
    display: block;
}
.brinde-image::after {
    content: '🎁 GRÁTIS';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-orange);
    color: white;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.875rem;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}
.brinde-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-xl);
}
.brinde-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}
.metric-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-base);
}
.metric-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-400);
    transform: translateY(-2px);
}
.metric-item svg {
    width: 20px;
    height: 20px;
    color: var(--orange-400);
    flex-shrink: 0;
}
.metric-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.brinde-sync {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}
.brinde-sync svg {
    width: 32px;
    height: 32px;
    color: var(--blue-400);
    flex-shrink: 0;
}
.brinde-sync p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}
.brinde-mockups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}
.mockup-item {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.mockup-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}
.brinde-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: var(--gradient-orange);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-2xl);
    color: var(--white);
    font-size: 1.125rem;
}
.brinde-highlight svg {
    width: 28px;
    height: 28px;
}
@media (max-width: 992px) {
    .brinde-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .brinde-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    .brinde-mockups {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .brinde-metrics {
        grid-template-columns: 1fr;
    }
    .brinde-highlight {
        flex-direction: column;
        text-align: center;
    }
}
