/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4a9b8e;
}

.nav-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 142, 0.4);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 40px;
    margin-top: 150px;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 155, 142, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 155, 142, 0.6);
}

/* Hero Icon */
.hero-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.festy-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #4a9b8e;
    position: relative;
    margin: 0 auto;
}

.festy-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    border-radius: 50%;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.festy-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    position: relative;
    margin: 0 auto;
}

.festy-icon-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 70px;
    height: 70px;
    background: #ffffff;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

/* Introduction Text Section */
.intro-text-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

.story-link {
    color: #4a9b8e;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.story-link:hover {
    color: #3a8b7e;
}

/* Introducing Festy Section */
.introducing-section {
    background-color: #000000;
    padding: 100px 0;
    text-align: center;
}

.section-title-white {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.section-title-black {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.section-title-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #000000;
}

.product-mockup {
    perspective: 1000px;
    margin-top: 60px;
}

.mockup-placeholder {
    display: inline-block;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mockup-placeholder:hover {
    transform: rotateY(-10deg) rotateX(2deg);
}

.mockup-screen {
    width: 400px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.mockup-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #000000;
    border-radius: 20px 20px 0 0;
}

.mockup-content {
    margin-top: 20px;
}

.mockup-card {
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.mockup-card-text {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.8;
}

.mockup-charts {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
}

.chart-bar {
    width: 40px;
    border-radius: 5px 5px 0 0;
    animation: grow 1s ease-out;
}

@keyframes grow {
    from {
        height: 0;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
    transform: translateX(-50%);
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.feature-list {
    list-style: decimal;
    padding-left: 25px;
    color: #333333;
    font-size: 16px;
    line-height: 2;
}

.feature-list li {
    margin-bottom: 15px;
}

.crypto-card {
    margin-top: 40px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    padding: 25px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.crypto-card-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    border-radius: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.crypto-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.crypto-card-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Statistics Bar */
.stats-bar {
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    padding: 80px 0;
    color: #ffffff;
}

.stats-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.3);
}

.stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-owner {
    font-size: 14px;
    opacity: 0.8;
}

.pricing-btn {
    padding: 12px 30px;
    background: #ffffff;
    color: #4a9b8e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.stats-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stats-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    color: #4a9b8e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

/* Taking Over Section */
.taking-over-section {
    background-color: #000000;
    padding: 100px 0;
}

.taking-over-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.event-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.event-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: grayscale(100%);
}

.taking-over-text {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
}

.world-map {
    margin: 40px 0;
}

.map-container {
    width: 100%;
    height: 300px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
}

.world-map-svg {
    width: 100%;
    height: 100%;
}

.map-dot {
    filter: drop-shadow(0 0 8px #4a9b8e);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.mobile-card {
    margin-top: 40px;
    perspective: 1000px;
}

.mobile-card-gradient {
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    border-radius: 20px;
    padding: 40px;
    transform: rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 40px rgba(74, 155, 142, 0.4);
}

.mobile-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.mobile-card-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* One Solution Section */
.one-solution-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #e0e0e0;
    opacity: 0.3;
}

.pattern-left {
    top: 50px;
    left: 50px;
    transform: rotate(45deg);
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.pattern-right {
    top: 50px;
    right: 50px;
    transform: rotate(-45deg);
    clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 100% 100%, 0% 100%);
}

.solution-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.features-diagram {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 80px auto;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-logo-bg {
    width: 180px;
    height: 180px;
    background: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.festy-octagon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a9b8e, #3a8b7e);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.diagram-feature {
    position: absolute;
    text-align: center;
    width: 120px;
}

.diagram-feature span {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    line-height: 1.4;
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    background: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Specific icon styles */
.icon-tent {
    background: linear-gradient(135deg, #ff6b9d, #ffc0cb);
    clip-path: polygon(50% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 0;
}

.icon-diamond {
    background: linear-gradient(135deg, #4a90e2, #5ba3f5);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-radius: 0;
}

.icon-bitcoin {
    background: #ffffff;
    border-radius: 50%;
    color: #000000;
    font-weight: 900;
    font-size: 36px;
    font-family: Arial, sans-serif;
    line-height: 50px;
    text-align: center;
}

.icon-bitcoin::before {
    content: 'B';
    display: block;
}

.icon-chart {
    background: transparent;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    padding-bottom: 8px;
}

.icon-chart::before {
    content: '';
    width: 10px;
    height: 25px;
    background: #4a9b8e;
    border-radius: 2px 2px 0 0;
    flex-shrink: 0;
}

.icon-chart::after {
    content: '';
    width: 10px;
    height: 35px;
    background: #ff6b35;
    border-radius: 2px 2px 0 0;
    flex-shrink: 0;
    box-shadow: 12px 0 0 #4a90e2;
}

.icon-graph {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 4px;
    position: relative;
    clip-path: polygon(0% 100%, 20% 80%, 40% 60%, 60% 40%, 80% 20%, 100% 0%, 100% 100%);
}

.icon-currency {
    background: #ffffff;
    border-radius: 50%;
    color: #000000;
    font-weight: 900;
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-currency::before {
    content: '$';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.icon-currency::after {
    content: '¥';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.icon-robot {
    background: linear-gradient(135deg, #9b59b6, #ffffff);
    border-radius: 8px;
    position: relative;
}

.icon-robot::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    left: 12px;
    top: 12px;
}

.icon-robot::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    right: 12px;
    top: 12px;
}

.icon-plug {
    background: #000000;
    border-radius: 4px;
    position: relative;
    width: 30px;
    height: 40px;
}

.icon-plug::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: #ffffff;
    top: 8px;
    left: 5px;
    border-radius: 2px;
}

.icon-plug::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: #ffffff;
    bottom: 8px;
    left: 5px;
    border-radius: 2px;
}

/* Feature positioning */
.feature-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-top-right {
    top: 15%;
    right: 5%;
    transform: translateY(-50%);
}

.feature-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.feature-bottom-right {
    bottom: 15%;
    right: 5%;
    transform: translateY(50%);
}

.feature-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-bottom-left {
    bottom: 15%;
    left: 5%;
    transform: translateY(50%);
}

.feature-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.feature-top-left {
    top: 15%;
    left: 5%;
    transform: translateY(-50%);
}

/* Footer */
.site-footer {
    background-color: #000000;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4a9b8e;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .features-grid::before {
        display: none;
    }
    
    .taking-over-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-divider {
        width: 100px;
        height: 1px;
    }
    
    .stats-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-diagram {
        width: 100%;
        max-width: 500px;
        height: 500px;
    }
    
    .center-logo-bg {
        width: 140px;
        height: 140px;
    }
    
    .festy-octagon {
        width: 90px;
        height: 90px;
    }
    
    .feature-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .diagram-feature {
        width: 100px;
    }
    
    .diagram-feature span {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title-white,
    .section-title-black {
        font-size: 32px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stats-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}
