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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a3329;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-content {
    background: #ffffff;
    color: #333;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px;
    text-align: left;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a3329;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept, .btn-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accept {
    background-color: #1a3329;
    color: white;
}

.btn-decline {
    background-color: #1a3329;
    color: white;
}

.btn-accept:hover, .btn-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 51, 41, 0.3);
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: #1a3329;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 51, 41, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #4ade80;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a3329 0%, #2a4a3a 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-visual {
    position: relative;
 
    margin: 3rem 0;
    background: linear-gradient(45deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 15px;
    overflow: hidden;
}

.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    background: #4ade80;
    color: #1a3329;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.point:nth-child(2) {
    animation-delay: -1s;
}

.point:nth-child(3) {
    animation-delay: -2s;
}

.point:nth-child(4) {
    animation-delay: -1.5s;
}

.point:nth-child(5) {
    animation-delay: -0.5s;
}

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

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.3), transparent);
    animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-btn {
    background: #4ade80;
    color: #1a3329;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    background: #22c55e;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #1a3329;
}

.stats-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stats-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #2a4a3a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4ade80;
}

.service-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Method Section */
.method-section {
    padding: 80px 0;
    background: #1a3329;
}

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

.method-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.method-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.method-visual {
    display: flex;
    justify-content: center;
}

.laptop-mockup {
    width: 400px;
    height: 250px;
    background: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.laptop-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

.screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 60%;
    margin-bottom: 20px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #4ade80, #22c55e);
    border-radius: 2px;
    animation: growBar 2s ease-in-out infinite alternate;
}

@keyframes growBar {
    from { transform: scaleY(0.8); }
    to { transform: scaleY(1.2); }
}

.chart-line {
    height: 40%;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #2a4a3a;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
}

.service-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4ade80;
}

.service-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a3329;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form button {
    background: #4ade80;
    color: #1a3329;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
    background: #22c55e;
}

/* Footer */
.footer {
    background: #0f1f17;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-left .logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-right a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-right a:hover {
    opacity: 1;
    color: #4ade80;
}

/* Thank You Page Styles */
.thank-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a3329 0%, #2a4a3a 100%);
}

.thank-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.thank-btn {
    background: #4ade80;
    color: #1a3329;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.thank-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    background: #22c55e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .burger-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a3329;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .method-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-visual {
        height: 200px;
    }

    .stats-section,
    .services-section,
    .method-section,
    .additional-services,
    .contact-section {
        padding: 60px 0;
    }

    .method-text h2,
    .stats-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .laptop-mockup {
        width: 300px;
        height: 180px;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .cookie-content h3 {
        font-size: 1.5rem;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

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

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

    .services-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 0 10px;
    }

    .thank-content h1 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.text p {
    text-align: left;
}