/* Orderly - Fintech/Logistics Tech with Glass UI */
:root {
    --primary-green: #22C55E;
    --primary-green-dark: #16A34A;
    --dark-bg: #0F172A;
    --light-bg: #F5F5F7;
    --blue: #3B82F6;
    --orange: #F97316;
    --purple: #8B5CF6;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.85);
    --bg-glass-strong: rgba(255, 255, 255, 0.9);
    --bg-glass-dark: rgba(15, 23, 42, 0.8);
    --border-glass: rgba(229, 231, 235, 0.5);
    --border-glass-strong: rgba(229, 231, 235, 0.8);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glass-hover: 0 12px 48px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Glass Navigation */
.navbar {
    position: sticky;
    top: 16px;
    z-index: 1000;
    padding: 0;
    margin: 16px auto;
    max-width: 1200px;
    width: calc(100% - 48px);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.nav-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.logo-text {
    display: inline-block;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-green);
    background: var(--bg-glass-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.language-switcher {
    margin-left: 8px;
}

.lang-btn {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: var(--bg-glass-hover);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Glass Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    position: relative;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-indicators {
    margin-top: 32px;
}

.trust-text {
    color: var(--text-light);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
    min-height: 500px;
}

.hero-dashboard-image.floating-image {
    position: absolute;
    width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    will-change: transform;
}

.hero-dashboard-image.floating-image.visible {
    opacity: 1;
}

/* Position each image at different locations */
.hero-dashboard-image.floating-image:nth-child(1) {
    top: 10%;
    left: 5%;
    transform: rotate(-5deg);
}

.hero-dashboard-image.floating-image:nth-child(2) {
    top: 30%;
    right: 10%;
    transform: rotate(8deg);
    width: 240px;
}

.hero-dashboard-image.floating-image:nth-child(3) {
    bottom: 15%;
    left: 15%;
    transform: rotate(-3deg);
    width: 260px;
}

/* Floating icons */
.floating-icon {
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    will-change: transform;
    z-index: 1;
    color: rgba(31, 174, 45, 0.6);
    filter: drop-shadow(0 4px 12px rgba(31, 174, 45, 0.2));
    animation: float 3s ease-in-out infinite;
}

.floating-icon.visible {
    opacity: 1;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
}

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

/* Random colors for variety */
.floating-icon:nth-child(4) {
    color: rgba(31, 174, 45, 0.7);
    animation-delay: 0s;
}

.floating-icon:nth-child(5) {
    color: rgba(254, 220, 0, 0.6);
    animation-delay: 0.5s;
}

.floating-icon:nth-child(6) {
    color: rgba(31, 174, 45, 0.65);
    animation-delay: 1s;
}

.floating-icon:nth-child(7) {
    color: rgba(0, 123, 255, 0.6);
    animation-delay: 0.3s;
}

.floating-icon:nth-child(8) {
    color: rgba(31, 174, 45, 0.7);
    animation-delay: 0.8s;
}

.floating-icon:nth-child(9) {
    color: rgba(254, 220, 0, 0.65);
    animation-delay: 0.2s;
}

.floating-icon:nth-child(10) {
    color: rgba(0, 123, 255, 0.6);
    animation-delay: 0.6s;
}

.floating-icon:nth-child(11) {
    color: rgba(31, 174, 45, 0.7);
    animation-delay: 0.4s;
}

.floating-icon:nth-child(12) {
    color: rgba(254, 220, 0, 0.6);
    animation-delay: 0.7s;
}

.floating-icon:nth-child(13) {
    color: rgba(31, 174, 45, 0.65);
    animation-delay: 0.1s;
}

.floating-icon:nth-child(14) {
    color: rgba(0, 123, 255, 0.6);
    animation-delay: 0.5s;
}

.floating-icon:nth-child(15) {
    color: rgba(31, 174, 45, 0.7);
    animation-delay: 0.9s;
}

.floating-icon:nth-child(16) {
    color: rgba(254, 220, 0, 0.65);
    animation-delay: 0.3s;
}

.floating-icon:nth-child(17) {
    color: rgba(0, 123, 255, 0.6);
    animation-delay: 0.6s;
}

.floating-icon:nth-child(18) {
    color: rgba(31, 174, 45, 0.7);
    animation-delay: 0.2s;
}

@media (max-width: 1024px) {
    .hero-visual {
        height: 500px;
    }
    
    .hero-dashboard-image.floating-image {
        width: 220px;
    }
    
    .hero-dashboard-image.floating-image:nth-child(2) {
        width: 200px;
    }
    
    .hero-dashboard-image.floating-image:nth-child(3) {
        width: 210px;
    }
    
    .floating-icon {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        height: 400px;
        margin-top: 60px;
    }
    
    .hero-dashboard-image.floating-image {
        width: 180px;
    }
    
    .hero-dashboard-image.floating-image:nth-child(1) {
        top: 5%;
        left: 2%;
    }
    
    .hero-dashboard-image.floating-image:nth-child(2) {
        top: 25%;
        right: 5%;
        width: 160px;
    }
    
    .hero-dashboard-image.floating-image:nth-child(3) {
        bottom: 10%;
        left: 10%;
        width: 170px;
    }
    
    .floating-icon {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 350px;
    }
    
    .hero-dashboard-image.floating-image {
        width: 140px;
    }
    
    .hero-dashboard-image.floating-image:nth-child(2) {
        width: 130px;
    }
    
    .hero-dashboard-image.floating-image:nth-child(3) {
        width: 135px;
    }
    
    .floating-icon {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Value Proposition - Glass Cards */
.value-prop {
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.value-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.value-item:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-hover);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-green);
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Features Preview - Glass Cards */
.features-preview {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.feature-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--border-glass);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-green);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.feature-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-link:hover {
    color: var(--primary-green-dark);
    gap: 10px;
}

/* Quick Guide Section - Enhanced Timeline Design */
.quick-guide {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(245, 245, 247, 0.5) 50%, var(--light-bg) 100%);
    overflow: hidden;
}

.quick-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.guide-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.guide-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.guide-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.guide-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(31, 41, 55, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.guide-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.guide-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--primary-green) 0%, 
        rgba(34, 197, 94, 0.8) 20%,
        rgba(34, 197, 94, 0.6) 40%,
        rgba(34, 197, 94, 0.4) 60%,
        rgba(34, 197, 94, 0.2) 80%,
        transparent 100%);
    z-index: 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    transform: scaleY(0);
    transform-origin: top;
    animation: timelineGrow 1.5s ease 0.5s forwards;
}

@keyframes timelineGrow {
    to {
        transform: scaleY(1);
    }
}

.guide-steps {
    position: relative;
    z-index: 1;
}

.guide-step {
    position: relative;
    margin-bottom: 100px;
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guide-step.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.guide-step:last-child {
    margin-bottom: 0;
}

.step-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(34, 197, 94, 0.1);
    transform: translateY(-4px);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #16A34A 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4),
                0 0 0 4px rgba(34, 197, 94, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transform: scale(0.7) rotate(-10deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.7s ease,
                box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.step-card:hover .step-number::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.guide-step.animate-in .step-number {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.step-card:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.5),
                0 0 0 6px rgba(34, 197, 94, 0.15);
}

.step-connector {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, var(--primary-green) 0%, rgba(34, 197, 94, 0.3) 100%);
    margin-top: 20px;
    border-radius: 2px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.guide-step.animate-in .step-connector {
    transform: scaleY(1);
}

.guide-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 20px;
}

.step-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin: 0;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.guide-step.animate-in .step-title {
    transform: translateX(0);
    opacity: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0.7) rotate(-10deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.guide-step.animate-in .step-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.12) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.2);
}

.step-card:hover .step-icon svg {
    transform: scale(1.1);
}

.step-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.guide-step.animate-in .step-description {
    transform: translateX(0);
    opacity: 1;
}

.step-visual {
    margin-top: 32px;
}

.step-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--border-glass);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 0 rgba(34, 197, 94, 0);
    transform: translate3d(0, 40px, 0) scale(0.95);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
                opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

.guide-step.animate-in .step-image-container {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
}

.step-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.step-card:hover .step-image-container::before {
    opacity: 1;
}

.step-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 0;
}

.step-card:hover .step-screenshot {
    transform: scale(1.03);
}

.step-card:hover .step-image-container {
    box-shadow: 0 30px 80px rgba(34, 197, 94, 0.2),
                0 0 0 4px rgba(34, 197, 94, 0.1);
    transform: translate3d(0, -8px, 0) scale(1.01);
    border-color: rgba(34, 197, 94, 0.3);
}

/* Background Elements */
.guide-bg-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    filter: blur(40px);
    animation: float 25s ease-in-out infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.bg-circle-3 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: 20%;
    animation-delay: 10s;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: rgba(34, 197, 94, 0.03);
    animation: gradientShift 20s ease-in-out infinite;
}

.bg-gradient-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.bg-gradient-2 {
    bottom: 0;
    right: 0;
    animation-delay: 7.5s;
    transform: rotate(180deg);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    33% {
        transform: translate3d(20px, -20px, 0);
    }
    66% {
        transform: translate3d(-15px, 15px, 0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.15;
        transform: translate3d(0, 0, 0);
    }
    50% {
        opacity: 0.25;
        transform: translate3d(15px, -15px, 0);
    }
}

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

/* Quick Guide Responsive Design */
@media (max-width: 968px) {
    .quick-guide {
        padding: 80px 0;
    }
    
    .guide-header {
        margin-bottom: 60px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .step-card {
        gap: 24px;
        padding: 24px;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }
    
    .step-connector {
        height: 50px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .step-icon {
        width: 44px;
        height: 44px;
    }
    
    .step-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 640px) {
    .quick-guide {
        padding: 60px 0;
    }
    
    .guide-header {
        margin-bottom: 40px;
    }
    
    .guide-title {
        font-size: 2rem;
    }
    
    .guide-subtitle {
        font-size: 1.125rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-indicator {
        position: absolute;
        left: -20px;
    }
    
    .step-card {
        padding: 20px;
        padding-left: 60px;
        gap: 16px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .step-connector {
        height: 40px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Social Proof - Glass Card */
.social-proof {
    padding: 80px 0;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-glass);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-title {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing Preview - Glass Cards */
.pricing-preview {
    padding: 80px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.pricing-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glass-hover);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    background: var(--bg-glass-strong);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 48px rgba(34, 197, 94, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 4px;
    letter-spacing: -0.02em;
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    text-align: center;
    margin-top: 32px;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    background: var(--primary-green);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: var(--shadow-glass);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.cta-section .btn-primary:hover {
    background: var(--light-bg);
    color: var(--primary-green-dark);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--border-glass);
    padding: 64px 0 32px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    margin: 48px 0 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link.producthunt {
    width: auto;
    height: auto;
    padding: 8px;
    background: transparent;
    border: none;
}

.social-link.producthunt:hover {
    background: transparent;
    transform: translateY(-2px);
}

.social-link.producthunt img {
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.social-link.producthunt:hover img {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Page Styles */
.page-header {
    padding: 80px 0 48px;
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.page-content {
    padding: 64px 0;
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text a {
    font-size: 1.125rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--primary-green-dark);
}

.contact-form-container {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-glass);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
}

.alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-green-dark);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-success svg {
    color: var(--primary-green);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-error svg {
    color: #DC2626;
}

.contact-form .btn {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

/* Responsive Contact */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .contact-form-container {
        padding: 24px;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        top: 8px;
        width: calc(100% - 16px);
        margin: 8px auto;
    }
    
    .nav-wrapper {
        padding: 12px 16px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid var(--border-glass);
        border-radius: 16px;
        flex-direction: column;
        padding: 16px;
        margin-top: 8px;
        box-shadow: var(--shadow-glass);
        gap: 4px;
    }
    
    .nav-menu a {
        color: var(--text-dark);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }
    
    .hero {
        padding: 48px 0 64px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .value-grid,
    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-content {
        padding: 48px 24px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .social-link.producthunt img {
        width: 150px;
        height: 32px;
    }
}

/* Feature Detail Pages */
.feature-detail {
    padding: 64px 0;
    border-bottom: 1px solid var(--border-glass);
}

.feature-detail:last-child {
    border-bottom: none;
}

.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-detail-content.reverse {
    direction: rtl;
}

.feature-detail-content.reverse > * {
    direction: ltr;
}

.feature-detail-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.feature-detail-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-detail-visual {
    text-align: center;
}

.feature-image-placeholder {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glass);
}

.feature-icon-svg {
    width: 160px;
    height: 160px;
    color: var(--primary-green);
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-icon-svg .icon-main {
    animation: iconPulse 2.5s ease-in-out infinite;
    transform-origin: center;
}

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

@keyframes iconPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-3px);
    }
}

@keyframes iconDraw {
    0% {
        stroke-dashoffset: 100;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 100;
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 768px) {
    .feature-detail-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feature-detail-content.reverse {
        direction: ltr;
    }
    
    .feature-image-placeholder {
        padding: 30px;
        min-height: 250px;
    }
    
    .feature-icon-svg {
        width: 120px;
        height: 120px;
    }
}

/* Steps/How It Works */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.step-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.faq-item {
    padding: 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* GPU Acceleration for transforms */
.value-item,
.feature-card,
.pricing-card,
.testimonial-card {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-glass-hover);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner-main {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.cookie-banner-icon svg {
    width: 24px;
    height: 24px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-banner-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.cookie-btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
}

.cookie-btn-secondary {
    background: var(--bg-glass-hover);
    color: var(--text-dark);
    border: 1px solid var(--border-glass);
}

.cookie-btn-secondary:hover {
    background: var(--bg-glass-strong);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.cookie-btn-customize {
    background: transparent;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.cookie-btn-customize:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Cookie Settings Modal */
.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.cookie-settings.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cookie-settings-content {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass-strong);
    border-radius: 16px;
    box-shadow: var(--shadow-glass-hover);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings.show .cookie-settings-content {
    transform: scale(1);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
}

.cookie-settings-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.cookie-settings-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: var(--bg-glass);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cookie-settings-close:hover {
    background: var(--bg-glass-hover);
    color: var(--primary-green);
}

.cookie-settings-close svg {
    width: 20px;
    height: 20px;
}

.cookie-settings-body {
    padding: 24px;
}

.cookie-setting-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glass);
}

.cookie-setting-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-setting-header-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.cookie-setting-info {
    flex: 1;
}

.cookie-setting-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cookie-setting-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    transition: 0.3s ease;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-green);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.cookie-settings-footer {
    padding: 24px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: flex-end;
}

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

    .cookie-banner-content {
        padding: 20px;
    }

    .cookie-banner-main {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-settings-content {
        max-width: 100%;
        margin: 0;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
    }

    .cookie-setting-header-item {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-toggle {
        align-self: flex-start;
    }
}
