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

:root {
    --primary-color: #ff6633;
    --primary-hover: #e55529;
    --secondary-color: #1e90a8;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 30px 20px;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-consent.active {
    display: block;
}

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

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

.cookie-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.btn-accept,
.btn-refuse {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    font-family: 'Inter', sans-serif;
}

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

.btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-refuse {
    background: transparent;
    color: var(--text-dark);
    border: none;
}

.btn-refuse:hover {
    color: var(--text-light);
}

/* Header */
.header {
    background: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

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

.burger-menu span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-size: 15px;
}

.nav-menu li a:hover {
    opacity: 0.8;
}

.btn-contact {
    background: var(--primary-color);
    padding: 10px 24px;
    border-radius: 4px;
}

.btn-contact:hover {
    background: var(--primary-hover) !important;
    opacity: 1 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 51, 0.3);
}

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

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h2 {
    font-size: 52px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: white;
}

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

.technology-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.technology-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.technology-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Automated Investments Section */
.automated-investments {
    background: var(--bg-light);
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investments-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.investments-text > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-circle.blue {
    background: var(--secondary-color);
}

.feature-text h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    padding: 40px 30px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon.blue {
    background: rgba(30, 144, 168, 0.1);
}

.service-icon.green {
    background: rgba(16, 185, 129, 0.1);
}

.service-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.service-icon.orange {
    background: rgba(255, 102, 51, 0.1);
}

.icon-placeholder {
    width: 35px;
    height: 35px;
    background: currentColor;
    border-radius: 6px;
}

.service-icon.blue .icon-placeholder {
    color: var(--secondary-color);
}

.service-icon.green .icon-placeholder {
    color: #10b981;
}

.service-icon.purple .icon-placeholder {
    color: #8b5cf6;
}

.service-icon.orange .icon-placeholder {
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.contact-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-content > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 51, 0.3);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.copyright {
    margin-top: 20px;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .technology-text h2,
    .investments-text h2,
    .services-header h2,
    .contact-content h2 {
        font-size: 32px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--secondary-color);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        align-items: flex-start;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 15px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-item h2 {
        font-size: 48px;
    }

    /* Technology */
    .technology {
        padding: 60px 0;
    }

    .technology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .technology-text h2 {
        font-size: 28px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

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

    .services-header h2 {
        font-size: 28px;
    }

    /* Automated Investments */
    .automated-investments {
        padding: 60px 0;
    }

    .investments-text h2 {
        font-size: 28px;
    }

    .feature-item {
        flex-direction: column;
        gap: 15px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    /* Cookie Consent */
    .cookie-content {
        padding: 0 10px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .thank-you-content {
        padding: 40px 30px;
    }
}

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

    .stat-item h2 {
        font-size: 40px;
    }

    .technology-text h2,
    .investments-text h2,
    .services-header h2,
    .contact-content h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .btn-primary,
    .btn-submit,
    .btn-accept {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.thank-you-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.thank-you-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: checkmark 0.8s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thank-you-wrapper h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.thank-you-wrapper h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-item p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
    max-width: 350px;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    padding: 14px 32px;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.countdown-timer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(30, 144, 168, 0.05);
    border-radius: 8px;
}

.countdown-timer p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.countdown-timer span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 16px;
}

/* Confetti Animation */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 9999;
    animation: confetti-fall linear forwards;
    pointer-events: none;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-wrapper {
        padding: 40px 30px;
    }

    .thank-you-wrapper h1 {
        font-size: 28px;
    }

    .thank-you-wrapper h2 {
        font-size: 24px;
    }

    .thank-you-info {
        padding: 20px;
    }

    .info-icon {
        font-size: 28px;
    }

    .info-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .thank-you-page {
        padding: 40px 0;
    }

    .thank-you-wrapper {
        padding: 30px 20px;
    }

    .thank-you-wrapper h1 {
        font-size: 24px;
    }

    .thank-you-wrapper h2 {
        font-size: 20px;
    }

    .thank-you-message {
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}