:root {
    --color-primary: #32B8C6;
    --color-secondary: #1e293b;
    --color-accent: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark body {
    background-color: #0f172a;
    color: #f1f5f9;
}

.light {
    background-color: #ffffff;
    color: #1e293b;
}

/* Dark mode text colors */
html.dark header a,
html.dark header .text-2xl {
    color: #f1f5f9;
}

html.dark .text-gray-600 {
    color: #cbd5e1 !important;
}

html.dark .hover\:text-\[\#32B8C6\]:hover {
    color: #32B8C6 !important;
}

.gradient-text {
    background: linear-gradient(135deg, #32B8C6 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-braces {
    background: linear-gradient(135deg, #32B8C6 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    transform: scale(1, 0.6);
    vertical-align: middle;
    padding-bottom: 6px;


}

.gradient-bg {
    background: linear-gradient(135deg, #32B8C6 0%, #22d3ee 100%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(50, 184, 198, 0.2);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #32B8C6 0%, #22d3ee 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(50, 184, 198, 0.4);
}

.btn-secondary {
    border: 2px solid #32B8C6;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(50, 184, 198, 0.1);
    transform: scale(1.05);
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.section-padding {
    padding: 80px 20px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }
}

.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #32B8C6, transparent);
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

.hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background-color: currentColor;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when active */
.hamburger.active div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    max-height: 400px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    border-top: 3px solid #32B8C6;
}

html.dark .cookie-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    margin: 0;
    color: #1e293b;
    line-height: 1.6;
}

html.dark .cookie-banner-text p {
    color: #f1f5f9;
}

.cookie-banner-text p:first-child {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-banner-text p:last-child {
    font-size: 0.95rem;
    color: #64748b;
}

html.dark .cookie-banner-text p:last-child {
    color: #cbd5e1;
}

.cookie-link {
    color: #32B8C6;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #22d3ee;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #32B8C6 0%, #22d3ee 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(50, 184, 198, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(50, 184, 198, 0.4);
}

.cookie-btn-deny {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

html.dark .cookie-btn-deny {
    color: #cbd5e1;
    border-color: #475569;
}

.cookie-btn-deny:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
}

html.dark .cookie-btn-deny:hover {
    background: #334155;
    border-color: #64748b;
    color: #f1f5f9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner-text {
        min-width: 100%;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        padding: 14px 20px;
    }
}