/* ===== METINGZ LANDING PAGE - PREMIUM DESIGN ===== */
/* ===== 200% RESPONSIVE - MOBILE FIRST MASTER ===== */
/* ===== LIGHT MODE ONLY ===== */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --landing-primary: #1a56db;
    --landing-primary-dark: #1e40af;
    --landing-primary-light: #3b82f6;
    --landing-secondary: #7e3af2;
    --landing-secondary-light: #9061f9;
    --landing-accent: #059669;
    --landing-accent-light: #10b981;
    --landing-text: #111827;
    --landing-text-secondary: #374151;
    --landing-text-muted: #6b7280;
    --landing-bg: #ffffff;
    --landing-bg-secondary: #f8fafc;
    --landing-bg-tertiary: #f1f5f9;
    --landing-border: #e5e7eb;
    --landing-border-light: #f3f4f6;
    --landing-border-dark: #d1d5db;
    --landing-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --landing-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --landing-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --landing-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --landing-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --landing-radius: 0.75rem;
    --landing-radius-lg: 0.875rem;
    --landing-radius-xl: 1rem;
    --landing-radius-2xl: 1.5rem;
    --landing-radius-3xl: 2rem;
    --landing-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE RESET
   ============================================ */
.landing-wrapper {
    width: 100%;
    overflow-x: hidden;
    background: var(--landing-bg);
    padding-top: 0 !important;
    margin-top: 0 !important;
    position: relative;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--landing-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-ring {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.loading-ring::before,
.loading-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: ring-pulse 1.8s ease-in-out infinite;
}

.loading-ring::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-top-color: var(--landing-primary);
    border-bottom-color: var(--landing-secondary);
    animation: ring-spin 1s linear infinite;
}

.loading-ring::after {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 3px solid transparent;
    border-left-color: var(--landing-accent);
    border-right-color: var(--landing-secondary-light);
    animation: ring-spin 1.5s linear infinite reverse;
}

@keyframes ring-spin {
    to { transform: rotate(360deg); }
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loading-content p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--landing-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   CUSTOM ARTWORK - BACKGROUND PATTERNS
   ============================================ */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.geometric-pattern .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
}

.geometric-pattern .shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, var(--landing-primary), transparent 70%);
    animation: float-shape 20s ease-in-out infinite;
}

.geometric-pattern .shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--landing-secondary), transparent 70%);
    animation: float-shape 25s ease-in-out infinite reverse;
}

.geometric-pattern .shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 50%;
    background: radial-gradient(circle, var(--landing-accent), transparent 70%);
    animation: float-shape 18s ease-in-out infinite 2s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image: 
        linear-gradient(rgba(26, 86, 219, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 58, 242, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.floating-orb.orb-primary {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.08), transparent 70%);
    top: -10%;
    right: -5%;
    animation: orb-float 30s ease-in-out infinite;
}

.floating-orb.orb-secondary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 58, 242, 0.06), transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: orb-float 25s ease-in-out infinite reverse;
}

.floating-orb.orb-accent {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.04), transparent 70%);
    top: 40%;
    left: 40%;
    animation: orb-float 35s ease-in-out infinite 3s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--landing-bg-secondary), var(--landing-bg));
    color: var(--landing-primary);
    padding: 0.375rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border: 1px solid var(--landing-border);
    position: relative;
    box-shadow: var(--landing-shadow);
}

.section-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 9999px;
    padding: 2px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--landing-text);
    margin-bottom: 1rem;
    position: relative;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    border-radius: 2px;
    opacity: 0.3;
}

.section-subtitle {
    font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
    color: var(--landing-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 0 0.5rem;
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */
.hero-section {
    padding: 0 1.5rem 4rem;
    position: relative;
    background: linear-gradient(180deg, var(--landing-bg-secondary) 0%, var(--landing-bg) 60%, var(--landing-bg-secondary) 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

/* Hero Art */
.hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-art .art-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-art .art-blob.blob-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.06), transparent 70%);
    animation: blob-move 25s ease-in-out infinite;
}

.hero-art .art-blob.blob-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(126, 58, 242, 0.05), transparent 70%);
    animation: blob-move 30s ease-in-out infinite reverse;
}

.hero-art .art-blob.blob-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.04), transparent 70%);
    animation: blob-move 20s ease-in-out infinite 5s;
}

@keyframes blob-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.2); }
    66% { transform: translate(-30px, 60px) scale(0.8); }
}

/* Hero Container */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    padding: 0.375rem 1.25rem 0.375rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--landing-text-secondary);
    margin-bottom: 1.5rem;
    box-shadow: var(--landing-shadow);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.05), rgba(126, 58, 242, 0.05));
    border-radius: 9999px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--landing-accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    position: relative;
    z-index: 1;
}

.hero-badge .dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--landing-accent);
    animation: pulse-ring 2s infinite;
    opacity: 0.3;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(2); opacity: 0; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--landing-text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    border-radius: 3px;
    opacity: 0.15;
}

.hero-description {
    font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
    color: var(--landing-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    color: #ffffff;
    padding: 0.875rem 2.25rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--landing-transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
    width: 100%;
    justify-content: center;
}

.hero-actions .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--landing-primary-dark), var(--landing-secondary));
    opacity: 0;
    transition: opacity var(--landing-transition);
    border-radius: 9999px;
}

.hero-actions .btn-primary:hover::before {
    opacity: 1;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.hero-actions .btn-primary span {
    position: relative;
    z-index: 1;
}

.hero-actions .btn-primary i {
    position: relative;
    z-index: 1;
    transition: transform var(--landing-transition);
}

.hero-actions .btn-primary:hover i {
    transform: translateX(4px);
}

.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--landing-bg);
    color: var(--landing-text);
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--landing-transition);
    border: 2px solid var(--landing-border);
    box-shadow: var(--landing-shadow-sm);
    width: 100%;
    justify-content: center;
}

.hero-actions .btn-secondary:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    transform: translateY(-3px);
    box-shadow: var(--landing-shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.hero-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-text);
    letter-spacing: -0.02em;
}

.hero-stats .stat-value .currency {
    font-size: 1rem;
    color: var(--landing-text-muted);
}

.hero-stats .stat-label {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    font-weight: 500;
    text-align: center;
}

/* Hero Visual - Premium Card */
.hero-visual {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.hero-visual .floating-element {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: var(--landing-radius-xl);
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    box-shadow: var(--landing-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--landing-primary);
    animation: float-element 6s ease-in-out infinite;
    z-index: 2;
    display: none;
}

.hero-visual .floating-element.element-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-visual .floating-element.element-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
    color: var(--landing-secondary);
}

.hero-visual .floating-element.element-3 {
    top: 40%;
    right: -30px;
    animation-delay: 4s;
    color: var(--landing-accent);
}

@keyframes float-element {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.hero-card {
    background: var(--landing-bg);
    border-radius: var(--landing-radius-2xl);
    border: 1px solid var(--landing-border);
    box-shadow: var(--landing-shadow-2xl);
    overflow: hidden;
    padding: 1.25rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--landing-radius-2xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(126, 58, 242, 0.1), rgba(5, 150, 105, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--landing-border);
    margin-bottom: 0.75rem;
}

.hero-card .card-header .dots {
    display: flex;
    gap: 0.375rem;
}

.hero-card .card-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-card .card-header .dots .red { background: #ef4444; }
.hero-card .card-header .dots .yellow { background: #f59e0b; }
.hero-card .card-header .dots .green { background: #10b981; }

.hero-card .card-header .title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--landing-text-muted);
    margin-left: 0.5rem;
    letter-spacing: 0.5px;
}

.hero-card .card-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--landing-radius);
    transition: all var(--landing-transition);
    border: 1px solid transparent;
    margin-bottom: 0.5rem;
    cursor: default;
    flex-direction: column;
    text-align: center;
}

.hero-card .card-item:last-child {
    margin-bottom: 0;
}

.hero-card .card-item:hover {
    background: var(--landing-bg-secondary);
    border-color: var(--landing-border);
    transform: translateX(6px);
}

.hero-card .card-item .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--landing-bg-secondary), var(--landing-bg));
    border-radius: var(--landing-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--landing-primary);
    border: 1px solid var(--landing-border);
}

.hero-card .card-item .icon.purple {
    color: var(--landing-secondary);
}

.hero-card .card-item .icon.green {
    color: var(--landing-accent);
}

.hero-card .card-item .info h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0 0 0.125rem;
}

.hero-card .card-item .info p {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    margin: 0;
}

/* ============================================
   FEATURES SECTION - PREMIUM
   ============================================ */
.features-section {
    padding: 3rem 1rem;
    background: var(--landing-bg);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--landing-primary), var(--landing-secondary), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.feature-card {
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl);
    padding: 1.5rem;
    transition: all var(--landing-transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--landing-primary), var(--landing-secondary));
    opacity: 0;
    transition: opacity var(--landing-transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.02), transparent 70%);
    border-radius: 50%;
    transition: all var(--landing-transition);
    pointer-events: none;
}

.feature-card:hover::after {
    transform: scale(1.5);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow-xl);
    border-color: var(--landing-primary);
}

.feature-card .icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--landing-bg-secondary), var(--landing-bg));
    border-radius: var(--landing-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    color: var(--landing-primary);
    border: 1px solid var(--landing-border);
    position: relative;
    z-index: 1;
    transition: all var(--landing-transition);
}

.feature-card:hover .icon-wrapper {
    border-color: var(--landing-primary);
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.05), rgba(126, 58, 242, 0.05));
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--landing-text-secondary);
    line-height: 1.7;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.feature-card .tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.feature-card .tags span {
    background: var(--landing-bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--landing-text-muted);
    border: 1px solid var(--landing-border);
    transition: all var(--landing-transition);
}

.feature-card:hover .tags span {
    border-color: var(--landing-primary-light);
    color: var(--landing-primary);
}

/* ============================================
   HOW IT WORKS - PREMIUM
   ============================================ */
.how-section {
    padding: 3rem 1rem;
    background: linear-gradient(180deg, var(--landing-bg) 0%, var(--landing-bg-secondary) 100%);
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a56db' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.step-card {
    text-align: center;
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl);
    padding: 2rem 1.5rem;
    transition: all var(--landing-transition);
    position: relative;
    box-shadow: var(--landing-shadow-sm);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow-xl);
    border-color: var(--landing-primary);
}

.step-card .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.3);
}

.step-card .step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(26, 86, 219, 0.15);
    animation: pulse-ring 2s infinite;
}

.step-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0 0 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--landing-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.step-card .connector {
    display: none;
}

/* ============================================
   REFUND BANNER - PREMIUM
   ============================================ */
.refund-banner {
    max-width: 1280px;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--landing-shadow-sm);
}

.refund-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.03), transparent 70%);
    border-radius: 50%;
}

.refund-banner .content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--landing-text);
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.refund-banner .content .icon {
    width: 32px;
    height: 32px;
    background: var(--landing-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-accent);
    font-size: 0.875rem;
    border: 1px solid var(--landing-border);
    flex-shrink: 0;
}

.refund-banner .highlight {
    color: var(--landing-primary);
    font-weight: 700;
}

/* ============================================
   PRICING SECTION - PREMIUM
   ============================================ */
.pricing-section {
    padding: 3rem 1rem;
    background: var(--landing-bg);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--landing-secondary), var(--landing-accent), transparent);
    opacity: 0.2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.pricing-card {
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all var(--landing-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--landing-shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow-xl);
}

.pricing-card.popular {
    border: 2px solid var(--landing-primary);
    box-shadow: var(--landing-shadow-lg);
    background: linear-gradient(180deg, var(--landing-bg), var(--landing-bg-secondary));
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--landing-radius-2xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    color: #ffffff;
    padding: 0.25rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.pricing-card .plan-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0 0 0.25rem;
}

.pricing-card .plan-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--landing-text);
    margin: 0.5rem 0 0.25rem;
    letter-spacing: -0.02em;
}

.pricing-card .plan-price small {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--landing-text-muted);
}

.pricing-card .plan-desc {
    font-size: 0.8125rem;
    color: var(--landing-text-muted);
    margin: 0 0 1rem;
    min-height: 2.5rem;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-card .plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--landing-text-secondary);
    border-bottom: 1px solid var(--landing-border-light);
}

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

.pricing-card .plan-features li .check {
    color: var(--landing-accent);
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.pricing-card .plan-features li .cross {
    color: var(--landing-text-muted);
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.pricing-card .btn-plan {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--landing-transition);
    margin-top: auto;
    text-align: center;
    font-size: 0.875rem;
    width: 100%;
}

.pricing-card .btn-plan.primary {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.pricing-card .btn-plan.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.pricing-card .btn-plan.secondary {
    background: transparent;
    color: var(--landing-text);
    border: 2px solid var(--landing-border);
}

.pricing-card .btn-plan.secondary:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    transform: translateY(-2px);
}

.pricing-card.popular .btn-plan.primary {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
}

/* ============================================
   CREDITS SECTION - PREMIUM
   ============================================ */
.credits-section {
    max-width: 1280px;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, var(--landing-bg-secondary), var(--landing-bg));
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl);
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--landing-shadow-sm);
}

.credits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(126, 58, 242, 0.03), transparent 70%);
    border-radius: 50%;
}

.credits-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.03), transparent 70%);
    border-radius: 50%;
}

.credits-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

.credits-section p {
    font-size: 0.875rem;
    color: var(--landing-text-secondary);
    margin: 0 0 1.25rem;
    position: relative;
    z-index: 1;
}

.credits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.credits-option {
    background: var(--landing-bg);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-xl);
    padding: 1rem;
    transition: all var(--landing-transition);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--landing-shadow-sm);
}

.credits-option:hover {
    border-color: var(--landing-primary);
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow-lg);
}

.credits-option .amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--landing-primary);
}

.credits-option .price {
    font-size: 0.8125rem;
    color: var(--landing-text-secondary);
    margin-top: 0.25rem;
}

.credits-option .save {
    font-size: 0.6875rem;
    color: var(--landing-accent);
    font-weight: 600;
}

.credits-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    position: relative;
    z-index: 1;
}

.credits-note i {
    color: var(--landing-primary);
    margin-right: 0.375rem;
}

/* ============================================
   FINAL CTA SECTION - PREMIUM
   ============================================ */
.cta-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.cta-section .art-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-section .art-pattern .circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section .art-pattern .circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: rotate-slow 60s linear infinite;
}

.cta-section .art-pattern .circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: rotate-slow 40s linear infinite reverse;
}

.cta-section .art-pattern .circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-slow 80s linear infinite;
}

@keyframes rotate-slow {
    to { transform: rotate(360deg); }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: clamp(1.625rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.cta-container p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
    line-height: 1.8;
}

.cta-container .cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: center;
}

.cta-container .cta-actions .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    color: var(--landing-primary);
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--landing-transition);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    justify-content: center;
}

.cta-container .cta-actions .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-container .cta-actions .btn-white i {
    transition: transform var(--landing-transition);
}

.cta-container .cta-actions .btn-white:hover i {
    transform: translateX(4px);
}

.cta-container .cta-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--landing-transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    justify-content: center;
}

.cta-container .cta-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-container .cta-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.cta-container .cta-benefits span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-container .cta-benefits .check {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    display: none;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(26, 86, 219, 0.4);
    transition: all var(--landing-transition);
    font-size: 0.875rem;
}

.floating-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(26, 86, 219, 0.5);
}

/* ============================================
   PREMIUM COOKIE BANNER
   ============================================ */
.cookie-banner.premium {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl);
    box-shadow: var(--landing-shadow-2xl);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.25rem;
    backdrop-filter: blur(20px);
}

.cookie-banner.premium.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

.cookie-banner-left {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-direction: column;
    text-align: left;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    border-radius: var(--landing-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.cookie-text h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0 0 0.25rem;
}

.cookie-text p {
    font-size: 0.8125rem;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-links {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.cookie-links a {
    color: var(--landing-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    transition: color var(--landing-transition);
}

.cookie-links a:hover {
    color: var(--landing-primary-dark);
    text-decoration: underline;
}

.cookie-link-divider {
    color: var(--landing-text-muted);
    font-size: 0.75rem;
}

.cookie-banner-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.cookie-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    cursor: pointer;
    transition: all var(--landing-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

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

.cookie-btn-customize:hover {
    background: var(--landing-bg-tertiary);
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--landing-text-muted);
    border: 1px solid transparent;
}

.cookie-btn-decline:hover {
    background: var(--landing-bg-secondary);
    color: var(--landing-text);
    border-color: var(--landing-border);
    transform: translateY(-2px);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-2xl) var(--landing-radius-2xl) 0 0;
    box-shadow: var(--landing-shadow-2xl);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cookie-settings-panel.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--landing-border);
    background: var(--landing-bg-secondary);
}

.cookie-settings-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-settings-title i {
    font-size: 1.125rem;
    color: var(--landing-primary);
}

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

.cookie-settings-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--landing-bg);
    color: var(--landing-text-muted);
    cursor: pointer;
    transition: all var(--landing-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.cookie-settings-close:hover {
    background: var(--landing-bg-tertiary);
    color: var(--landing-text);
    transform: rotate(90deg);
}

.cookie-settings-body {
    padding: 1.25rem;
    overflow-y: auto;
    max-height: calc(90vh - 160px);
}

.cookie-settings-description {
    font-size: 0.8125rem;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.cookie-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--landing-border-light);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option.essential {
    opacity: 0.7;
}

.cookie-option-info {
    width: 100%;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.cookie-option-header h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--landing-text);
    margin: 0;
}

.cookie-badge {
    font-size: 0.5625rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-badge.required {
    background: #fef3c7;
    color: #92400e;
}

.cookie-badge.optional {
    background: #e0e7ff;
    color: var(--landing-primary);
}

.cookie-option-info p {
    font-size: 0.75rem;
    color: var(--landing-text-muted);
    margin: 0;
    line-height: 1.5;
}

.cookie-option-toggle {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

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

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--landing-border-dark);
    border-radius: 9999px;
    transition: all var(--landing-transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: all var(--landing-transition);
    box-shadow: var(--landing-shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
}

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

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-status {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--landing-text-muted);
}

.toggle-status.active {
    color: var(--landing-accent);
}

.cookie-settings-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--landing-border);
    background: var(--landing-bg-secondary);
}

.cookie-settings-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-settings-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    cursor: pointer;
    transition: all var(--landing-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.cookie-settings-btn-primary {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-secondary));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.cookie-settings-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.4);
}

.cookie-settings-btn-secondary {
    background: transparent;
    color: var(--landing-text-muted);
    border: 1px solid var(--landing-border);
}

.cookie-settings-btn-secondary:hover {
    background: var(--landing-bg);
    color: var(--landing-text);
    border-color: var(--landing-border-dark);
    transform: translateY(-2px);
}

/* ============================================
   COOKIE OVERLAY
   ============================================ */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   LARGE SCREENS (1025px - 1440px)
   ============================================ */
@media (min-width: 1025px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: auto;
    }

    .hero-visual .floating-element {
        display: flex;
    }

    .hero-card .card-item {
        flex-direction: row;
        text-align: left;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-card {
        text-align: left;
    }

    .feature-card .icon-wrapper {
        margin: 0 0 1rem;
    }

    .feature-card .tags {
        justify-content: flex-start;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-card .connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(90deg, var(--landing-border), transparent);
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .credits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-container .cta-actions {
        flex-direction: row;
    }

    .cta-container .cta-actions .btn-white,
    .cta-container .cta-actions .btn-outline {
        width: auto;
    }

    .cta-container .cta-benefits {
        flex-direction: row;
    }

    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-banner-left {
        flex-direction: row;
        text-align: left;
    }

    .cookie-banner-right {
        flex-direction: row;
        width: auto;
        flex-shrink: 0;
    }

    .cookie-btn {
        width: auto;
    }

    .cookie-settings-panel {
        border-radius: var(--landing-radius-2xl) var(--landing-radius-2xl) 0 0;
    }

    .cookie-option {
        flex-direction: row;
        align-items: center;
    }

    .cookie-option-toggle {
        width: auto;
        flex-shrink: 0;
    }

    .cookie-settings-actions {
        flex-direction: row;
        justify-content: flex-end;
    }

    .cookie-settings-btn {
        width: auto;
    }

    .floating-cta {
        display: none !important;
    }
}

/* ============================================
   TABLET (768px - 1024px)
   ============================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: auto;
    }

    .hero-visual .floating-element {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .hero-card .card-item {
        flex-direction: row;
        text-align: left;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container .cta-actions {
        flex-direction: row;
    }

    .cta-container .cta-actions .btn-white,
    .cta-container .cta-actions .btn-outline {
        width: auto;
    }

    .cta-container .cta-benefits {
        flex-direction: row;
    }

    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-banner-left {
        flex-direction: row;
        text-align: left;
    }

    .cookie-banner-right {
        flex-direction: row;
        width: auto;
        flex-shrink: 0;
    }

    .cookie-btn {
        width: auto;
    }

    .cookie-option {
        flex-direction: row;
        align-items: center;
    }

    .cookie-option-toggle {
        width: auto;
        flex-shrink: 0;
    }

    .cookie-settings-actions {
        flex-direction: row;
        justify-content: flex-end;
    }

    .cookie-settings-btn {
        width: auto;
    }
}

/* ============================================
   MOBILE (320px - 767px) - FULLY OPTIMIZED
   ============================================ */
@media (max-width: 767px) {
    .hero-section {
        padding: 0 0.75rem 3rem;
    }

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

    .hero-title .gradient-text::after {
        height: 4px;
        bottom: 2px;
    }

    .hero-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.75rem 0.25rem 0.375rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stats .stat-value {
        font-size: 1.25rem;
    }

    .hero-stats .stat-label {
        font-size: 0.6875rem;
    }

    .hero-card {
        padding: 1rem;
        border-radius: var(--landing-radius-xl);
    }

    .hero-card .card-item {
        padding: 0.625rem;
        margin-bottom: 0.375rem;
        flex-direction: row;
        text-align: left;
    }

    .hero-card .card-item .icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .hero-card .card-item .info h4 {
        font-size: 0.75rem;
    }

    .hero-card .card-item .info p {
        font-size: 0.6875rem;
    }

    .hero-card .card-header .title {
        font-size: 0.6875rem;
    }

    .hero-visual .floating-element {
        display: none;
    }

    .features-section {
        padding: 2rem 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-subtitle {
        font-size: 0.875rem;
    }

    .section-badge {
        font-size: 0.625rem;
        padding: 0.25rem 1rem;
    }

    .features-grid {
        gap: 1rem;
        padding: 0;
    }

    .feature-card {
        padding: 1.25rem;
        border-radius: var(--landing-radius-xl);
    }

    .feature-card .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .feature-card .tags span {
        font-size: 0.625rem;
        padding: 0.1875rem 0.625rem;
    }

    .how-section {
        padding: 2rem 0.75rem;
    }

    .steps-grid {
        gap: 1rem;
        padding: 0;
    }

    .step-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--landing-radius-xl);
    }

    .step-card .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.8125rem;
    }

    .refund-banner {
        padding: 0.875rem 1rem;
        margin-top: 1.5rem;
        border-radius: var(--landing-radius-xl);
    }

    .refund-banner .content {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }

    .refund-banner .content .icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .pricing-section {
        padding: 2rem 0.75rem;
    }

    .pricing-grid {
        gap: 1rem;
        padding: 0;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--landing-radius-xl);
    }

    .pricing-card .plan-name {
        font-size: 1rem;
    }

    .pricing-card .plan-price {
        font-size: 2rem;
    }

    .pricing-card .plan-price small {
        font-size: 0.75rem;
    }

    .pricing-card .plan-desc {
        font-size: 0.75rem;
        min-height: 2rem;
    }

    .pricing-card .plan-features li {
        font-size: 0.75rem;
        padding: 0.375rem 0;
    }

    .pricing-card .popular-badge {
        font-size: 0.625rem;
        padding: 0.1875rem 1rem;
        top: -10px;
    }

    .pricing-card .btn-plan {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }

    .credits-section {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-radius: var(--landing-radius-xl);
    }

    .credits-section h3 {
        font-size: 1rem;
    }

    .credits-section p {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .credits-grid {
        gap: 0.5rem;
    }

    .credits-option {
        padding: 0.75rem;
        border-radius: var(--landing-radius-lg);
    }

    .credits-option .amount {
        font-size: 1rem;
    }

    .credits-option .price {
        font-size: 0.75rem;
    }

    .credits-option .save {
        font-size: 0.625rem;
    }

    .credits-note {
        font-size: 0.6875rem;
        margin-top: 0.75rem;
    }

    .cta-section {
        padding: 2rem 0.75rem;
    }

    .cta-container h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .cta-container p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .cta-container .cta-actions {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-container .cta-actions .btn-white,
    .cta-container .cta-actions .btn-outline {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }

    .cta-container .cta-benefits {
        gap: 0.5rem;
    }

    .cta-container .cta-benefits span {
        font-size: 0.75rem;
    }

    .floating-cta {
        display: block;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .floating-cta a {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }

    .cookie-banner.premium {
        padding: 1rem;
        border-radius: var(--landing-radius-xl);
        bottom: 0.75rem;
        width: 96%;
    }

    .cookie-banner-left {
        flex-direction: column;
        text-align: center;
    }

    .cookie-icon {
        margin: 0 auto;
    }

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

    .cookie-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .cookie-settings-panel {
        border-radius: var(--landing-radius-xl) var(--landing-radius-xl) 0 0;
    }

    .cookie-settings-header {
        padding: 1rem;
    }

    .cookie-settings-title h3 {
        font-size: 0.9375rem;
    }

    .cookie-settings-body {
        padding: 1rem;
        max-height: calc(90vh - 140px);
    }

    .cookie-settings-description {
        font-size: 0.75rem;
    }

    .cookie-option {
        padding: 0.75rem 0;
    }

    .cookie-option-header h5 {
        font-size: 0.8125rem;
    }

    .cookie-option-info p {
        font-size: 0.6875rem;
    }

    .cookie-settings-footer {
        padding: 0.875rem 1rem;
    }

    .cookie-settings-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (320px - 380px)
   ============================================ */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }

    .hero-stats .stat-value {
        font-size: 1.125rem;
    }

    .hero-stats .stat-label {
        font-size: 0.625rem;
    }

    .hero-card .card-item {
        padding: 0.5rem;
    }

    .hero-card .card-item .icon {
        width: 28px;
        height: 28px;
        font-size: 0.6875rem;
    }

    .hero-card .card-item .info h4 {
        font-size: 0.6875rem;
    }

    .hero-card .card-item .info p {
        font-size: 0.625rem;
    }

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

    .feature-card {
        padding: 1rem;
    }

    .step-card {
        padding: 1.25rem 1rem;
    }

    .pricing-card {
        padding: 1.25rem 1rem;
    }

    .pricing-card .plan-price {
        font-size: 1.75rem;
    }

    .credits-option {
        padding: 0.625rem;
    }

    .credits-option .amount {
        font-size: 0.9375rem;
    }

    .cta-container h2 {
        font-size: 1.375rem;
    }

    .cookie-banner.premium {
        padding: 0.75rem;
        border-radius: var(--landing-radius-lg);
    }

    .cookie-text h4 {
        font-size: 0.8125rem;
    }

    .cookie-text p {
        font-size: 0.6875rem;
    }

    .cookie-btn {
        font-size: 0.6875rem;
        padding: 0.4375rem 0.875rem;
    }
}

/* ============================================
   LANDSCAPE MOBILE
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 0.5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-container {
        gap: 1.5rem;
    }

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

    .hero-description {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .hero-actions {
        margin-bottom: 1.25rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }

    .hero-stats .stat-value {
        font-size: 1.125rem;
    }

    .hero-card {
        padding: 0.75rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-card .card-item {
        padding: 0.375rem;
        margin-bottom: 0.25rem;
    }

    .hero-card .card-item .icon {
        width: 28px;
        height: 28px;
        font-size: 0.6875rem;
    }

    .hero-card .card-item .info h4 {
        font-size: 0.6875rem;
    }

    .hero-card .card-item .info p {
        font-size: 0.625rem;
    }

    .hero-visual .floating-element {
        display: none;
    }

    .features-section,
    .how-section,
    .pricing-section,
    .cta-section {
        padding: 1.5rem 0.75rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

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

    .features-grid,
    .steps-grid,
    .pricing-grid {
        gap: 0.75rem;
    }

    .feature-card {
        padding: 0.75rem;
    }

    .step-card {
        padding: 0.75rem;
    }

    .step-card .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .pricing-card {
        padding: 0.75rem;
    }

    .pricing-card .plan-price {
        font-size: 1.5rem;
    }

    .floating-cta {
        display: none !important;
    }
}

/* ============================================
   TOUCH DEVICES OPTIMIZATION
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .step-card:hover,
    .pricing-card:hover,
    .credits-option:hover,
    .hero-card .card-item:hover {
        transform: none !important;
    }

    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-white:hover,
    .btn-outline:hover {
        transform: none !important;
    }

    .floating-cta a:hover {
        transform: none !important;
    }

    .hero-actions .btn-primary {
        padding: 0.875rem 2.25rem;
    }

    .cookie-btn:hover,
    .cookie-settings-btn:hover,
    .cookie-settings-close:hover {
        transform: none !important;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .loading-ring::before,
    .loading-ring::after {
        animation: none !important;
    }

    .hero-badge .dot {
        animation: none !important;
    }

    .hero-badge .dot::before {
        animation: none !important;
    }

    .geometric-pattern .shape {
        animation: none !important;
    }

    .floating-orb {
        animation: none !important;
    }

    .hero-art .art-blob {
        animation: none !important;
    }

    .hero-visual .floating-element {
        animation: none !important;
    }

    .cta-section .art-pattern .circle {
        animation: none !important;
    }

    .step-card .step-number::after {
        animation: none !important;
    }

    .cookie-banner.premium,
    .cookie-settings-panel,
    .cookie-overlay {
        transition: none !important;
    }

    .cookie-btn,
    .cookie-settings-btn,
    .cookie-settings-close {
        transition: none !important;
    }

    .toggle-slider {
        transition: none !important;
    }

    .toggle-slider::before {
        transition: none !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .hero-section,
    .features-section,
    .how-section,
    .pricing-section,
    .cta-section {
        padding: 1.5rem 0 !important;
        min-height: auto !important;
    }

    .hero-container {
        display: block !important;
        text-align: center !important;
    }

    .hero-actions,
    .hero-stats,
    .hero-visual,
    .floating-cta,
    .cookie-banner,
    .cookie-overlay,
    .loading-screen {
        display: none !important;
    }

    .geometric-pattern,
    .hero-art,
    .floating-orb {
        display: none !important;
    }

    .pricing-card.popular {
        border: 2px solid #000 !important;
    }

    .section-title .highlight {
        -webkit-text-fill-color: var(--landing-primary) !important;
        background: none !important;
    }

    .hero-title .gradient-text {
        -webkit-text-fill-color: var(--landing-primary) !important;
        background: none !important;
    }
}

/* ============================================
   END OF LANDING.CSS
   ============================================ */