:root {
--primary-color: #1a365d;
--secondary-color: #2c7bb6;
--accent-color: #f39c12;
--text-dark: #2d3748;
--text-light: #4a5568;
--bg-white: #ffffff;
--bg-light: #f7fafc;
--border-color: #e2e8f0;
--success-color: #48bb78;
--gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c7bb6 100%);
--gradient-accent: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
--shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06);
--shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
--shadow-lg: 0 10px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.08);
--transition-fast: all 0.2s ease;
--transition-base: all 0.3s ease;
--transition-slow: all 0.5s ease;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--bg-white);
overflow-x: hidden;
}

.primary-navigation {
background: var(--bg-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
}

.nav-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.brand-container {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-image {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.brand-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition-fast);
position: relative;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
width: 100%;
}

.nav-links a:hover,
.nav-links a.active-link {
color: var(--secondary-color);
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
}

.mobile-toggle span {
width: 25px;
height: 3px;
background: var(--primary-color);
transition: var(--transition-base);
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem;
align-items: center;
}

.hero-content {
animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.hero-title {
font-size: 3rem;
font-weight: 800;
color: var(--primary-color);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.6;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--gradient-primary);
color: var(--bg-white);
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
box-shadow: var(--shadow-md);
transition: var(--transition-base);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.hero-image {
animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

.content-section {
padding: 5rem 2rem;
background: var(--bg-light);
}

.container-main {
max-width: 1400px;
margin: 0 auto;
}

.intro-grid {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 4rem;
align-items: center;
}

.section-heading {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 2rem;
font-weight: 700;
}

.section-heading.centered {
text-align: center;
}

.intro-paragraph {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.8;
text-align: justify;
}

.intro-visual img {
width: 100%;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

.horizons-section {
padding: 5rem 2rem;
background: var(--bg-white);
}

.horizons-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
margin-top: 3rem;
}

.horizon-card {
background: var(--bg-light);
padding: 2.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: var(--transition-base);
}

.horizon-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.horizon-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--gradient-primary);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
font-size: 2.5rem;
color: var(--bg-white);
}

.horizon-title {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 1rem;
font-weight: 700;
}

.horizon-description {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.horizon-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.horizon-features li {
display: flex;
align-items: center;
gap: 0.75rem;
color: var(--text-dark);
}

.horizon-features i {
color: var(--success-color);
font-size: 1.2rem;
}

.transition-section {
padding: 5rem 2rem;
background: var(--bg-light);
}

.transition-content {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 4rem;
align-items: center;
}

.main-text {
font-size: 1.2rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.8;
}

.transition-steps {
display: flex;
flex-direction: column;
gap: 2rem;
}

.step-item {
background: var(--bg-white);
padding: 1.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: var(--transition-base);
}

.step-item:hover {
box-shadow: var(--shadow-md);
transform: translateX(10px);
}

.step-number {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--gradient-accent);
color: var(--bg-white);
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}

.step-title {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
font-weight: 600;
}

.step-description {
color: var(--text-light);
line-height: 1.6;
}

.transition-visual img {
width: 100%;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

.risk-section {
padding: 5rem 2rem;
background: var(--bg-white);
}

.section-intro {
text-align: center;
font-size: 1.2rem;
color: var(--text-light);
max-width: 900px;
margin: 0 auto 3rem;
line-height: 1.8;
}

.risk-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2.5rem;
margin-top: 3rem;
}

.risk-card {
background: var(--bg-light);
padding: 2.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: var(--transition-base);
}

.risk-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

.risk-heading {
font-size: 1.6rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
font-weight: 700;
}

.risk-text {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 2rem;
}

.risk-metrics {
display: flex;
flex-direction: column;
gap: 1rem;
}

.metric-item {
display: flex;
align-items: center;
gap: 1rem;
}

.metric-label {
min-width: 100px;
color: var(--text-dark);
font-weight: 600;
}

.metric-bar {
height: 10px;
border-radius: 5px;
flex: 1;
background: var(--border-color);
position: relative;
overflow: hidden;
}

.metric-bar::after {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
background: var(--gradient-primary);
}

.metric-bar.high::after {
width: 85%;
}

.metric-bar.medium::after {
width: 60%;
}

.metric-bar.low::after {
width: 30%;
}

.philosophy-section {
padding: 5rem 2rem;
background: var(--bg-light);
}

.philosophy-content {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 4rem;
align-items: center;
}

.philosophy-image img {
width: 100%;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

.philosophy-intro {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.8;
}

.philosophy-principles {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}

.principle-box {
background: var(--bg-white);
padding: 1.5rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: var(--transition-base);
}

.principle-box:hover {
box-shadow: var(--shadow-md);
transform: scale(1.05);
}

.principle-title {
font-size: 1.2rem;
color: var(--primary-color);
margin-bottom: 0.75rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
}

.principle-title i {
color: var(--accent-color);
}

.principle-text {
color: var(--text-light);
line-height: 1.6;
}

.cta-section {
padding: 4rem 2rem;
background: var(--gradient-primary);
text-align: center;
color: var(--bg-white);
}

.cta-content {
max-width: 900px;
margin: 0 auto;
}

.cta-heading {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 700;
}

.cta-text {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.95;
line-height: 1.7;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
padding: 1rem 2.5rem;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition-base);
display: inline-block;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
}

.cta-features {
display: flex;
justify-content: center;
gap: 3rem;
}

.feature-item {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 1.1rem;
}

.feature-item i {
font-size: 1.5rem;
color: var(--accent-color);
}

.disclaimer-section {
padding: 4rem 2rem;
background: var(--bg-white);
}

.disclaimer-heading {
font-size: 2rem;
color: var(--primary-color);
text-align: center;
margin-bottom: 2rem;
font-weight: 700;
}

.disclaimer-content {
max-width: 1000px;
margin: 0 auto;
}

.disclaimer-text {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
text-align: justify;
font-size: 0.95rem;
}

.site-footer {
background: var(--primary-color);
color: var(--bg-white);
padding: 3rem 2rem 1rem;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 3rem;
margin-bottom: 2rem;
}

.footer-logo {
width: 60px;
height: 60px;
border-radius: 50%;
margin-bottom: 1rem;
}

.footer-description {
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
margin-bottom: 1rem;
}

.company-registration {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
}

.footer-title {
font-size: 1.2rem;
margin-bottom: 1.5rem;
font-weight: 600;
}

.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition-fast);
}

.footer-links a:hover {
color: var(--accent-color);
padding-left: 5px;
}

.footer-contact {
list-style: none;
display: flex;
flex-direction: column;
gap: 1rem;
}

.footer-contact li {
color: rgba(255, 255, 255, 0.8);
display: flex;
align-items: flex-start;
gap: 0.75rem;
line-height: 1.6;
}

.footer-contact i {
color: var(--accent-color);
margin-top: 3px;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
}

.cookie-consent {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 10000;
padding: 2rem;
}

.cookie-consent.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 2rem;
}

.cookie-content {
flex: 1;
}

.cookie-title {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 0.5rem;
font-weight: 700;
}

.cookie-text {
color: var(--text-light);
margin-bottom: 0.5rem;
line-height: 1.6;
}

.cookie-link {
font-size: 0.9rem;
}

.cookie-link a {
color: var(--secondary-color);
text-decoration: none;
}

.cookie-link a:hover {
text-decoration: underline;
}

.cookie-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.75rem 1.5rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: var(--transition-base);
white-space: nowrap;
}

.cookie-btn.accept-all {
background: var(--gradient-primary);
color: var(--bg-white);
}

.cookie-btn.customize {
background: var(--bg-light);
color: var(--primary-color);
}

.cookie-btn.decline {
background: transparent;
color: var(--text-light);
border: 2px solid var(--border-color);
}

.cookie-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
.hero-section,
.intro-grid,
.transition-content,
.philosophy-content {
grid-template-columns: 1fr;
}
.horizons-grid,
.risk-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-white);
flex-direction: column;
padding: 2rem;
box-shadow: var(--shadow-md);
}
.nav-links.active {
display: flex;
}
.mobile-toggle {
display: flex;
}
.hero-title {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.section-heading {
font-size: 2rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.cta-features {
flex-direction: column;
gap: 1rem;
}
.cookie-container {
flex-direction: column;
text-align: center;
}
.cookie-actions {
justify-content: center;
}
.footer-grid {
grid-template-columns: 1fr;
}
.philosophy-principles {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.nav-wrapper {
padding: 1rem;
}
.hero-section,
.content-section,
.horizons-section,
.transition-section,
.risk-section,
.philosophy-section,
.cta-section,
.disclaimer-section {
padding: 3rem 1rem;
}
}