/* ========================================
   AQUA FUSION 24/7 - Premium Investment Landing
   ======================================== */

/* CSS Variables */
:root {
    /* Color Palette */
    --navy-blue: #0A2463;
    --emerald-green: #00B4D8;
    --gold: #FFB703;
    --light-gray: #E8EBED;
    --dark: #0D1821;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy-blue) 0%, #051533 100%);
    --gradient-accent: linear-gradient(135deg, var(--emerald-green) 0%, #0096C7 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #FB8500 100%);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', cursive;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    gap: 10px;
    background: rgba(10, 36, 99, 0.9);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    padding: 8px 20px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: var(--gradient-accent);
    border-color: var(--emerald-green);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-green);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--emerald-green);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 183, 3, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(0, 180, 216, 0.2);
    border: 2px solid var(--emerald-green);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--emerald-green);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-gray);
    margin-top: 10px;
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: var(--emerald-green);
    font-size: 1.2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
    transition: var(--transition-normal);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 180, 216, 0.6);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    font-size: 0.9rem;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll i {
    font-size: 1.5rem;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Problem-Solution Section */
.problem-solution {
    padding: var(--section-padding);
    background: var(--dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.solution-card {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 150, 199, 0.05) 100%);
    border: 2px solid var(--emerald-green);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.problem-icon {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

.solution-icon {
    background: rgba(0, 180, 216, 0.2);
    color: var(--emerald-green);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.savings-banner {
    text-align: center;
    padding: 40px;
    background: var(--gradient-accent);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3);
}

.savings-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 10px;
}

.savings-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Key Metrics Section */
.key-metrics {
    padding: var(--section-padding);
    background: var(--gradient-primary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.metric-card:hover {
    transform: translateY(-10px);
    border-color: var(--emerald-green);
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.3);
}

.metric-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 5px;
}

.metric-unit {
    font-size: 0.9rem;
    color: var(--emerald-green);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-green);
    background: rgba(0, 180, 216, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.features-cta {
    text-align: center;
    padding: 30px;
    background: var(--gradient-gold);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(255, 183, 3, 0.3);
}

.features-cta p {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Technologies Section */
.technologies {
    padding: var(--section-padding);
    background: var(--gradient-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.tech-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-green);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.tech-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.tech-card li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--light-gray);
}

.tech-savings {
    padding: 15px 20px;
    background: rgba(255, 183, 3, 0.1);
    border-left: 4px solid var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
}

.tech-total {
    text-align: center;
    padding: 40px;
    background: var(--gradient-gold);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 183, 3, 0.3);
}

.tech-total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.tech-total-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Revolution Section */
.revolution {
    padding: var(--section-padding);
    background: var(--dark);
}

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

.chart-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.chart-container canvas {
    width: 100% !important;
    height: auto !important;
}

.revolution-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.pricing-table {
    margin-bottom: 40px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.pricing-row .time {
    font-weight: 600;
    color: var(--emerald-green);
}

.pricing-row .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.pricing-row .audience {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.comparison-stats {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-block {
    margin-bottom: 20px;
}

.stat-block.highlight {
    padding: 20px;
    background: var(--gradient-accent);
    border-radius: 10px;
}

.stat-label {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--light-gray);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-growth {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 20px;
}

/* Business Model Section */
.business-model {
    padding: var(--section-padding);
    background: var(--gradient-primary);
}

.business-content {
    margin-bottom: 60px;
}

.business-content .chart-container {
    max-width: 600px;
    margin: 0 auto 40px;
}

.annual-revenue {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 20px;
}

.revenue-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.revenue-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.revenue-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
}

.revenue-icon {
    font-size: 2.5rem;
}

.revenue-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--emerald-green);
}

.revenue-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.revenue-details p {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.business-stats {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.business-stat {
    text-align: center;
}

.business-stat .stat-label {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.business-stat .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

/* Forecast Section */
.forecast {
    padding: var(--section-padding);
    background: var(--dark);
}

.forecast-table {
    margin-bottom: 60px;
    overflow-x: auto;
}

.forecast-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
}

.forecast-table thead {
    background: var(--gradient-accent);
}

.forecast-table th,
.forecast-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.forecast-table th {
    font-weight: 600;
    font-size: 1rem;
}

.forecast-table td {
    font-size: 1.05rem;
}

.forecast-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-note {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-gray);
    font-style: italic;
}

.forecast-chart {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.forecast-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.highlight-card {
    text-align: center;
    padding: 40px;
    background: var(--gradient-accent);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 10px;
}

.highlight-desc {
    font-size: 1rem;
    color: var(--light-gray);
}

/* ESG Section */
.esg {
    padding: var(--section-padding);
    background: var(--gradient-primary);
}

.esg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.esg-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.esg-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-green);
}

.esg-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.esg-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.esg-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--emerald-green);
}

.esg-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.esg-card li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--light-gray);
}

.esg-certifications p {
    font-weight: 600;
    margin-bottom: 10px;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert-list span {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.esg-impact {
    text-align: center;
    padding: 40px;
    background: var(--gradient-gold);
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Investment Section */
.investment {
    padding: var(--section-padding);
    background: var(--dark);
}

.investment-amount {
    text-align: center;
    margin-bottom: 60px;
}

.amount-label {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.amount-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold);
}

/* Single Equity Option - Centered */
.investment-option.equity-only {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 150, 199, 0.05) 100%);
    border: 3px solid var(--emerald-green);
    border-radius: 25px;
    box-shadow: 0 12px 48px rgba(0, 180, 216, 0.3);
    transition: var(--transition-normal);
}

.investment-option.equity-only:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(0, 180, 216, 0.4);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.option-icon {
    font-size: 3rem;
}

.option-header h3 {
    font-size: 2rem;
    color: var(--gold);
}

.option-content {
    display: grid;
    gap: 25px;
}

.option-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--emerald-green);
}

.option-section ul {
    list-style: none;
}

.option-section li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.option-irr {
    text-align: center;
    padding: 25px;
    background: var(--gradient-gold);
    border-radius: 15px;
    font-size: 1.3rem;
    margin-top: 15px;
}

.option-irr strong {
    display: block;
    font-size: 2rem;
    margin-top: 10px;
}

/* Investment Guarantees */
.investment-guarantees {
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.investment-guarantees h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--emerald-green);
    transition: var(--transition-fast);
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.guarantee-item span {
    font-size: 1rem;
    line-height: 1.5;
}

/* Risks Section */
.risks {
    padding: var(--section-padding);
    background: var(--gradient-primary);
}

.risks-accordion {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.risk-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.risk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.risk-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

.risk-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.risk-icon {
    font-size: 1.5rem;
}

.risk-status {
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.risk-status.low {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.risk-status.medium {
    background: rgba(255, 183, 3, 0.1);
    color: var(--gold);
}

.risk-header i.fa-chevron-down {
    transition: var(--transition-fast);
}

.risk-item.active .risk-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.risk-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.risk-item.active .risk-content {
    max-height: 1000px;
}

.risk-content {
    padding: 0 30px 30px;
}

.risk-content h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--emerald-green);
}

.risk-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.risk-content li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.risk-level {
    padding: 15px 20px;
    background: rgba(0, 255, 0, 0.1);
    border-left: 4px solid #00ff00;
    font-weight: 600;
    margin-top: 20px;
}

.breakeven-section {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.breakeven-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--gold);
}

.breakeven-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.breakeven-stat {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.breakeven-stat .stat-label {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.breakeven-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-green);
}

.breakeven-note {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap {
    padding: var(--section-padding);
    background: var(--dark);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: scale(1.03);
    border-color: var(--emerald-green);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.timeline-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.timeline-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.phase-result {
    padding: 12px 15px;
    background: rgba(0, 180, 216, 0.1);
    border-left: 4px solid var(--emerald-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.phase-result.highlight {
    background: var(--gradient-gold);
    border-left-color: var(--gold);
}

/* Why Now Section */
.why-now {
    padding: var(--section-padding);
    background: var(--gradient-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-green);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.why-card ul {
    list-style: none;
}

.why-card li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--light-gray);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--dark);
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-person {
    margin-bottom: 40px;
}

.contact-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-phone {
    font-size: 2rem;
    font-weight: 600;
}

.contact-phone a {
    color: var(--emerald-green);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-phone a:hover {
    color: var(--gold);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.contact-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: var(--white);
}

.contact-btn.phone {
    background: var(--gradient-accent);
    color: var(--white);
}

.contact-btn i {
    font-size: 1.5rem;
}

.contact-materials {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-materials p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin: 0;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--gradient-primary);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--emerald-green);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--emerald-green);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 9998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .revolution-content {
        grid-template-columns: 1fr;
    }

    .revenue-breakdown {
        grid-template-columns: 1fr;
    }

    .esg-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .breakeven-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 36, 99, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .forecast-highlights {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .amount-value {
        font-size: 3rem;
    }

    .contact-name {
        font-size: 2rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .lang-switcher {
        top: 10px;
        right: 10px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .lang-switcher,
    .scroll-to-top,
    .hero-scroll {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title::after {
        background: black;
    }
}