:root {
    --primary: #0b9ecd;
    --primary-gradient: #4ECDC4;
    --secondary: #ff6133;
    --secondary-gradient: #ff9966;
    --success: #2a9859;
    --success-gradient: #3dd98a;
    --info: #1A535C;
    --info-gradient: #4ecdc4;
    --warning: #bc9133;
    --warning-gradient: #ffd166;
    --danger: #E63946;
    --danger-gradient: #ff7b84;

    --light: #F9FAFB;
    --dark: #111827;

    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --body-font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --body-font-size: 1rem;
    --body-font-weight: 400;
    --body-line-height: 1.5;
    --body-color: var(--gray-900);
    --body-bg: var(--light);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--body-color);
    background: var(--body-bg);
}

.hero-section {
    background: var(--light);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, rgba(11, 158, 205, 0.03) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gradient) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 700px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gradient) 100%);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 16px 48px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(11, 158, 205, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(11, 158, 205, 0.35);
    color: white;
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.floating-circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-gradient) 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warning) 0%, var(--warning-gradient) 100%);
    top: 60%;
    left: 15%;
    animation-delay: 5s;
}

.floating-circle-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-gradient) 100%);
    top: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-20px) translateX(10px);
    }

    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.about-section {
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--gray-900);
    font-weight: 600;
}

.benefits-section {
    background: var(--gray-100);
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.benefit-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.signup-section {
    background: white;
    padding: 100px 0;
}

.signup-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    background: var(--success);
    color: white;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 158, 205, 0.1);
    outline: none;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-gradient) 100%);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    width: 100%;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(11, 158, 205, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 158, 205, 0.4);
}

.closing-section {
    background: linear-gradient(135deg, var(--info) 0%, var(--info-gradient) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.closing-text {
    font-size: 1.375rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9375rem;
}

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-eyebrow {
        font-size: 0.8125rem;
        padding: 6px 16px;
    }

    .floating-circle {
        display: none;
    }

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

    .signup-card {
        padding: 30px;
    }

    .benefit-card {
        padding: 30px;
        margin-bottom: 1.5rem;
    }
}

.success-message {
    display: none;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-gradient) 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cookie Consent Component Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gray-900);
    color: var(--gray-300);
    /* padding: 1.25rem 1.5rem; */
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; */
}


.cookie-banner .cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    flex: 1 1 auto;
    max-width: 70%;
}


.cookie-banner .cookie-text i {
    font-size: 1.5rem;
    color: #f5a623;
}


.cookie-banner .cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}


.cookie-banner .btn {
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}