/**
 * Webit Changemakers - Main Stylesheet
 * styles.css
 * 
 * Структура:
 * 1. CSS Variables
 * 2. Reset & Base
 * 3. Typography
 * 4. Layout & Container
 * 5. Buttons
 * 6. Animations
 * 7. Navbar
 * 8. Section Headers
 * 9. Backgrounds
 * 10. Page Hero (subpages)
 * 11. Cards
 * 12. Quote Section
 * 13. Benefits List
 * 14. Process/Timeline
 * 15. Criteria
 * 16. Circle Section
 * 17. Final CTA
 * 18. Footer
 * 19. Floating Elements
 * 20. Cookie Consent
 * 21. Utilities
 * 22. Responsive
 */

/* ==========================================================================
   1. CSS VARIABLES
   ========================================================================== */
:root {
    /* Backgrounds */
    --bg-white: #fff;
    --bg-light: #f0f4ff;
    --bg-lavender: #ede9fe;
    --bg-dark: #1e1b4b;
    
    /* Text Colors */
    --text-dark: #1e1b4b;
    --text-secondary: #4c4687;
    --text-muted: #7c78a3;
    
    /* Brand Colors */
    --electric-blue: #2563eb;
    --violet: #7c3aed;
    --coral: #f43f5e;
    --mint: #10b981;
    --amber: #f59e0b;
    
    /* Category Colors */
    --cat1: #2563eb;
    --cat2: #7c3aed;
    --cat3: #10b981;
    --cat4: #f43f5e;
    
    /* Gradients */
    --gradient-btn: linear-gradient(135deg, #2563eb, #7c3aed);
    --gradient-text: linear-gradient(135deg, #60a5fa, #c4b5fd, #fda4af);
    --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, #2d2a5e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30,27,75,0.97) 0%, rgba(37,99,235,0.92) 50%, rgba(124,58,237,0.95) 100%);
    
    /* Border */
    --border: #e2e0f5;
    
    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-btn: 0 8px 32px rgba(37,99,235,0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 25%, #f43f5e 50%, #7c3aed 75%, #2563eb 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ==========================================================================
   4. LAYOUT & CONTAINER
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 80px 0;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 17px);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}

/* White button - used in dark hero sections */
.btn-white {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

/* Secondary/ghost button */
.btn-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

/* Light button */
.btn-light {
    background: white;
    color: var(--text-dark);
}

.btn-light:hover {
    background: var(--bg-lavender);
}

/* Outline light button */
.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Outline dark button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--violet);
    color: var(--violet);
}

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

/* Inline CTA button */
.btn-inline {
    padding: 14px 28px;
    font-size: 15px;
}

/* Share button style */
.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 14px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.btn-share:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* Large button */
.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

/* ==========================================================================
   6. ANIMATIONS
   ========================================================================== */

/* Shimmer effect for buttons */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    animation: shimmer 7.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    15%, 100% { left: 100%; }
}

/* Gradient shift animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* Rotate 3D animation for share icon */
@keyframes rotate3d {
    0%, 85% { transform: rotateY(0deg); }
    90% { transform: rotateY(180deg); }
    95% { transform: rotateY(360deg); }
    100% { transform: rotateY(360deg); }
}

/* ==========================================================================
   7. NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 72px;
    height: 48px;
	padding: 8px;
    background: var(--gradient-btn);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.nav-brand-text {
    font-weight: 700;
    font-size: 19px;
	line-height: 110%;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
	margin: 0 !important;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-dark);
    background: rgba(124,58,237,0.08);
}

.nav-links a.active {
    color: var(--violet);
    background: transparent;
    font-weight: 600;
}

.nav-cta {
    background: var(--gradient-btn) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   8. SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--coral);
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
}

/* Dark section overrides */
.bg-dark .section-label,
.bg-gradient .section-label {
    color: var(--coral);
}

.bg-dark .section-subtitle,
.bg-gradient .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.bg-dark .section-title,
.bg-gradient .section-title {
    color: white;
}

/* Animated blobs */
.hero-blobs {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}
.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
}
.hero-blob-1 {
	width: 500px;
	height: 500px;
	background: rgba(244,63,94,0.4);
	top: -100px;
	right: -50px;
	animation: blob1 20s ease-in-out infinite;
}
.hero-blob-2 {
	width: 450px;
	height: 450px;
	background: rgba(6,182,212,0.35);
	bottom: -80px;
	left: -100px;
	animation: blob2 25s ease-in-out infinite;
}
.hero-blob-3 {
	width: 350px;
	height: 350px;
	background: rgba(255,255,255,0.15);
	top: 40%;
	left: 20%;
	animation: blob3 18s ease-in-out infinite;
}
.hero-blob-4 {
	width: 300px;
	height: 300px;
	background: rgba(124,58,237,0.3);
	top: 20%;
	right: 20%;
	animation: blob4 22s ease-in-out infinite;
}

@keyframes blob1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(-80px, 60px) scale(1.1); }
	50% { transform: translate(-40px, 120px) scale(0.95); }
	75% { transform: translate(60px, 40px) scale(1.05); }
}
@keyframes blob2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(100px, -40px) scale(1.08); }
	50% { transform: translate(60px, -100px) scale(0.92); }
	75% { transform: translate(-40px, -60px) scale(1.04); }
}
@keyframes blob3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(80px, -80px) scale(1.15); }
	66% { transform: translate(-60px, 60px) scale(0.9); }
}
@keyframes blob4 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	20% { transform: translate(-60px, 80px) scale(1.1); }
	40% { transform: translate(-120px, 40px) scale(0.95); }
	60% { transform: translate(-80px, -40px) scale(1.08); }
	80% { transform: translate(40px, -20px) scale(0.98); }
}
	

/* ==========================================================================
   9. BACKGROUNDS
   ========================================================================== */
.bg-white {
    background: var(--bg-white);
}

.bg-light {
    background: var(--bg-light);
}

.bg-lavender {
    background: var(--bg-lavender);
}

.bg-dark {
    background: var(--bg-dark);
    color: white;
}

.bg-gradient {
    background: var(--gradient-dark);
    color: white;
}

/* ==========================================================================
   10. PAGE HERO (subpages)
   ========================================================================== */
.page-hero {
    background: var(--gradient-hero);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(244,63,94,0.25);
    top: -150px;
    right: -150px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(16,185,129,0.2);
    bottom: -100px;
    left: -100px;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(124,58,237,0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Decorative circles */
.hero-bg-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-bg-circle-1 { width: 300px; height: 300px; top: 10%; left: 5%; }
.hero-bg-circle-2 { width: 200px; height: 200px; top: 60%; right: 10%; border-width: 2px; opacity: 0.12; }
.hero-bg-circle-3 { width: 450px; height: 450px; bottom: -100px; left: 30%; }
.hero-bg-circle-4 { width: 150px; height: 150px; top: 20%; right: 25%; background: rgba(255,255,255,0.03); }

.hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-subtitle {
    font-size: clamp(17px, 1.8vw, 21px);
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero text block - for two-line titles */
.hero-text-block {
    max-width: 850px;
    margin: 0 auto 36px;
}

.hero-text-line {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.hero-text-line-1 {
    margin-bottom: 12px;
}

/* ==========================================================================
   11. CARDS
   ========================================================================== */

/* Generic card */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30,27,75,0.1);
    border-color: var(--violet);
}

/* Feature/Format card */
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(30,27,75,0.12);
    border-color: var(--violet);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-lavender);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--violet);
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--violet);
    color: white;
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: clamp(17px, 1.5vw, 19px);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--violet);
    background: var(--bg-lavender);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.feature-card p {
    font-size: clamp(14px, 1.15vw, 15px);
    color: var(--text-muted);
    line-height: 1.7;
}

/* Why card (numbered) */
.why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: all var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30,27,75,0.1);
    border-color: var(--violet);
}

.why-card-number {
    width: 40px;
    height: 40px;
    background: var(--bg-lavender);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--violet);
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Circle card (dark background) */
.circle-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-normal);
}

.circle-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.circle-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--coral);
    margin-bottom: 20px;
}

.circle-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.circle-card .tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--mint);
    background: rgba(16,185,129,0.15);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.circle-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* ==========================================================================
   12. QUOTE SECTION
   ========================================================================== */
.section-quote {
    padding: 80px 0;
    background: var(--bg-dark);
    color: white;
}

.quote-inner {
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 48px;
    color: var(--violet);
    margin-bottom: 28px;
    opacity: 0.6;
}

.quote-text {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 36px;
    text-align: left;
}

.quote-author-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-author-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

.quote-author-info {
    text-align: left;
}

.quote-author-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.quote-author-title {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   13. BENEFITS LIST
   ========================================================================== */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-lavender);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Dark version */
.bg-dark .benefit-item {
    border-color: rgba(255,255,255,0.1);
}

.bg-dark .benefit-icon {
    background: rgba(124,58,237,0.3);
    color: #c4b5fd;
}

.bg-dark .benefit-text {
    color: rgba(255,255,255,0.9);
}

/* ==========================================================================
   14. PROCESS/TIMELINE
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--violet);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Timeline vertical */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--electric-blue), var(--violet), var(--coral));
}

.process-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

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

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-btn);
}

.process-content h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-content p {
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   15. CRITERIA
   ========================================================================== */
.criteria-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.criteria-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.criteria-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--violet), transparent);
}

.criteria-num {
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 25%, #f43f5e 50%, #7c3aed 75%, #2563eb 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    margin-bottom: 10px;
}

.criteria-title {
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 17px);
    margin-bottom: 6px;
}

.criteria-desc {
    font-size: clamp(12px, 1vw, 14px);
    color: var(--text-muted);
}

/* ==========================================================================
   16. CIRCLE SECTION
   ========================================================================== */
.circle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Circle bg shapes */
.circle-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle-bg-shape {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    background: transparent;
}

.circle-bg-shape-filled {
    background: rgba(255,255,255,0.03);
    border: none;
}

.circle-buttons {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   17. FINAL CTA
   ========================================================================== */
.final-cta,
.join-cta {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.final-cta {
    text-align: center;
}
.join-cta-blob,
.final-cta-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    background: var(--violet);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: clamp(16px, 1.5vw, 19px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.final-cta-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.final-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.final-step-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
}

.final-step span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.final-cta .btn-primary {
    padding: 18px 40px;
    font-size: 17px;
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 100px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 74px;
    height: 50px;
    background: var(--gradient-btn);
    border-radius: 8px;
	padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.footer-brand-text {
    font-weight: 700;
    font-size: 18px;
	line-height: 110%;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--coral);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   19. FLOATING ELEMENTS
   ========================================================================== */

/* Floating CTA (Mobile) */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    padding: 14px 32px;
    background: var(--gradient-btn);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(37,99,235,0.4);
    transition: all var(--transition-normal);
    opacity: 0;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-cta:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.5);
}

/* Floating Share Button */
.floating-share {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.share-toggle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f43f5e, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 32px rgba(244,63,94,0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.share-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(244,63,94,0.5);
}

.share-toggle i {
    animation: rotate3d 4s ease-in-out infinite;
}

.share-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.share-options.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.copy { background: var(--violet); }

/* ==========================================================================
   20. COOKIE CONSENT
   ========================================================================== */
.cookie-consent {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.cookie-consent.show {
    display: flex;
}

.cookie-consent-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    margin: 24px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    font-size: 48px;
    color: var(--amber);
    margin-bottom: 20px;
}

.cookie-consent-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cookie-consent-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cookie-consent-box a {
    color: var(--violet);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-cookie-accept {
    background: var(--gradient-btn);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 15px;
    font-family: inherit;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
}

.btn-cookie-decline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 15px;
    font-family: inherit;
}

.btn-cookie-decline:hover {
    border-color: var(--text-secondary);
    color: var(--text-dark);
}

/* ==========================================================================
   21. UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Inline CTA box */
.inline-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.inline-cta-text {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Intro box */
.intro-box {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.intro-text {
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.85;
    color: var(--text-secondary);
}

.intro-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.intro-meta-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.intro-meta-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

/* Proof section (lavender) */
.section-proof {
    padding: 80px 0;
    background: var(--bg-lavender);
}

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

.proof-icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--violet);
    margin: 0 auto 28px;
    box-shadow: 0 8px 32px rgba(124,58,237,0.15);
}

.proof-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.proof-text {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Season section */
.season-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.season-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 24px;
    padding: 48px;
}

.season-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
}

.season-item {
    padding: 24px;
    background: white;
    border-radius: 16px;
    height: 100%;
}

.season-item-label {
    font-size: 13px;
    color: var(--violet);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.season-item-value {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    color: var(--text-dark);
}

/* ==========================================================================
   FORM STYLES
   Добави този код в styles.css
   ========================================================================== */

/* Form Hero */
.form-hero {
    position: relative;
    padding: 140px 0 50px;
    overflow: hidden;
}

.form-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.form-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,27,75,0.95) 0%, rgba(37,99,235,0.9) 50%, rgba(124,58,237,0.92) 100%);
}

.form-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.form-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.form-hero-subtitle {
    font-size: clamp(15px, 1.4vw, 17px);
    color: rgba(255,255,255,0.9);
    max-width: 550px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    padding: 50px 0 70px;
    background: var(--bg-light);
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(30,27,75,0.08);
    border: 1px solid var(--border);
    max-width: 680px;
    margin: 0 auto;
}

.form-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
    color: var(--text-dark);
}

.form-card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: center;
}

/* Form Group */
.form-group {
    margin-bottom: 24px;
}

.form-group-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--violet);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-lavender);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-title i {
    font-size: 12px;
}

/* Form Field */
.form-field {
    margin-bottom: 14px;
}

.form-field:last-child {
    margin-bottom: 0;
}

/* Form Label */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--coral);
    margin-left: 2px;
}

.form-label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 12px;
    margin-left: 4px;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--violet-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

/* Form Row (2 columns) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-row:last-child {
    margin-bottom: 0;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-light);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.checkbox-item:hover {
    background: var(--bg-lavender);
}

.checkbox-item:has(.checkbox-input:checked) {
    background: var(--bg-lavender);
    border-color: var(--violet);
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--violet);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 13px;
    color: var(--text-dark);
    flex: 1;
    cursor: pointer;
}

/* Form Agreement */
.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.form-agreement .checkbox-input {
    margin-top: 2px;
}

.form-agreement label {
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.form-agreement a {
    color: var(--violet);
    text-decoration: none;
    font-weight: 500;
}

.form-agreement a:hover {
    text-decoration: underline;
}

/* Form Submit Button */
.form-submit {
    width: 100%;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: var(--gradient-btn);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Form Responsive */
@media (max-width: 640px) {
    .form-card {
        padding: 24px 20px;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .form-hero {
        padding: 120px 0 40px;
    }
}

/* ==========================================================================
   22. RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
    /* Mobile Navigation */
	.nav-toggle {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: white;
		flex-direction: column;
		padding: 80px 24px 24px;
		gap: 8px;
		box-shadow: -4px 0 20px rgba(0,0,0,0.1);
		transition: right 0.3s ease;
		z-index: 100;
	}

	.nav-links.active {
		right: 0;
	}

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

	.nav-links a {
		display: block;
		width: 100%;
		padding: 14px 16px;
		font-size: 16px;
	}

	.nav-links .nav-cta {
		margin-top: 16px;
		text-align: center;
		justify-content: center;
	}
}
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .circle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .criteria-grid {
        flex-wrap: wrap;
    }
    
    .criteria-item {
        flex: 0 0 33%;
        max-width: 33%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .intro-meta {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .page-hero {
        padding: 120px 0 80px;
    }
    
    

    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .circle-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 24px 16px;
    }
    
    .criteria-item:not(:last-child)::after {
        display: none;
    }
    
    .criteria-num {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .circle-buttons {
        flex-direction: column;
    }
    
    .intro-meta {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .final-cta-steps {
        gap: 24px;
    }
    
    .final-step-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    /* Floating elements mobile */
    .floating-cta {
        display: flex;
        align-items: center;
        gap: 8px;
        left: auto;
        right: 88px;
        transform: none;
        padding: 14px 24px;
    }
    
    .floating-cta:hover {
        transform: translateY(-3px);
    }
    
    .floating-share {
        bottom: 24px;
        right: 24px;
        flex-direction: row;
        gap: 8px;
    }
    
    .share-toggle {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
    
    .share-options {
        flex-direction: row;
        position: absolute;
        right: 60px;
        bottom: 0;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .quote-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-author-info {
        text-align: center;
    }
    
    .hero-text-line {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .process-timeline::before {
        left: 24px;
    }
    
    .process-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .process-item {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .cookie-consent-box {
        padding: 32px 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
