/* ===================================================================
   SMACZNERUSZAJ - GRADIENT MESH DESIGN SYSTEM
   =================================================================== */

/* --- CSS VARIABLES --- */
:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --secondary-dark: #5f3b85;
    --accent: #f093fb;
    --accent-light: #f5b8fd;

    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-hero: linear-gradient(135deg, #0c0d1a 0%, #1a1140 30%, #2d1b69 60%, #1a1140 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    --gradient-text: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #764ba2 100%);
    --gradient-button: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-button-hover: linear-gradient(135deg, #5568d3 0%, #5f3b85 100%);

    --bg-dark: #080a1a;
    --bg-section: #f8f7ff;
    --bg-card: #ffffff;
    --bg-card-glass: rgba(255, 255, 255, 0.88);

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888a8;
    --text-light: #ffffff;
    --text-light-secondary: rgba(255, 255, 255, 0.75);

    --border-light: rgba(102, 126, 234, 0.12);
    --border-glass: rgba(255, 255, 255, 0.18);

    --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.08);
    --shadow-md: 0 8px 32px rgba(102, 126, 234, 0.12);
    --shadow-lg: 0 16px 64px rgba(102, 126, 234, 0.16);
    --shadow-glow: 0 0 40px rgba(240, 147, 251, 0.2);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    --container-max: 1240px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- SELECTION --- */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: var(--text-primary);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 4px;
}

/* ===================================================================
   GRADIENT ORBS & MESH BACKGROUNDS
   =================================================================== */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    will-change: transform;
}

/* Hero gradient orbs */
.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    top: 20%;
    right: -8%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation: orbFloat3 20s ease-in-out infinite;
}
.gradient-orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: 50%;
    left: 50%;
    opacity: 0.3;
    animation: orbFloat4 25s ease-in-out infinite;
}
.gradient-orb-5 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%);
    top: 10%;
    left: 60%;
    opacity: 0.25;
    animation: orbFloat1 30s ease-in-out infinite reverse;
}

/* Section gradient orbs */
.gradient-orb-s1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    top: -10%; right: -5%;
    animation: orbFloat2 20s ease-in-out infinite;
}
.gradient-orb-s2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(240,147,251,0.2) 0%, transparent 70%);
    bottom: -5%; left: -3%;
    animation: orbFloat3 24s ease-in-out infinite;
}
.gradient-orb-a1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(118,75,162,0.25) 0%, transparent 70%);
    top: 10%; left: -8%;
    animation: orbFloat1 22s ease-in-out infinite;
}
.gradient-orb-a2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    bottom: 5%; right: -5%;
    animation: orbFloat4 18s ease-in-out infinite;
}
.gradient-orb-st1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,0.5) 0%, transparent 70%);
    top: -20%; left: -10%;
    animation: orbFloat1 20s ease-in-out infinite;
}
.gradient-orb-st2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240,147,251,0.35) 0%, transparent 70%);
    bottom: -15%; right: -8%;
    animation: orbFloat2 25s ease-in-out infinite;
}
.gradient-orb-st3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(118,75,162,0.4) 0%, transparent 70%);
    top: 40%; right: 20%;
    animation: orbFloat3 18s ease-in-out infinite;
}
.gradient-orb-t1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    top: 5%; right: -3%;
    animation: orbFloat4 22s ease-in-out infinite;
}
.gradient-orb-t2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,0.15) 0%, transparent 70%);
    bottom: 10%; left: -5%;
    animation: orbFloat1 26s ease-in-out infinite;
}
.gradient-orb-te1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(118,75,162,0.2) 0%, transparent 70%);
    top: -10%; left: 20%;
    animation: orbFloat2 20s ease-in-out infinite;
}
.gradient-orb-te2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
    bottom: -5%; right: 10%;
    animation: orbFloat3 24s ease-in-out infinite;
}
.gradient-orb-cs1 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(240,147,251,0.2) 0%, transparent 70%);
    top: 5%; left: -5%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.gradient-orb-cs2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
    bottom: 10%; right: -3%;
    animation: orbFloat4 22s ease-in-out infinite;
}
.gradient-orb-tr1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    top: -5%; right: 10%;
    animation: orbFloat2 20s ease-in-out infinite;
}
.gradient-orb-tr2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,0.15) 0%, transparent 70%);
    bottom: 5%; left: 5%;
    animation: orbFloat3 24s ease-in-out infinite;
}
.gradient-orb-c1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(102,126,234,0.4) 0%, transparent 70%);
    top: -15%; left: -8%;
    animation: orbFloat1 18s ease-in-out infinite;
}
.gradient-orb-c2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(240,147,251,0.3) 0%, transparent 70%);
    bottom: -10%; right: -5%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.gradient-orb-c3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(118,75,162,0.35) 0%, transparent 70%);
    top: 50%; left: 50%;
    animation: orbFloat4 20s ease-in-out infinite;
}
.gradient-orb-f1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    top: -10%; right: 10%;
    animation: orbFloat1 20s ease-in-out infinite;
}
.gradient-orb-f2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,0.15) 0%, transparent 70%);
    bottom: 10%; left: -5%;
    animation: orbFloat3 24s ease-in-out infinite;
}
.gradient-orb-l1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
    top: 5%; right: -5%;
    animation: orbFloat2 22s ease-in-out infinite;
}
.gradient-orb-l2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(240,147,251,0.1) 0%, transparent 70%);
    bottom: 5%; left: 5%;
    animation: orbFloat4 26s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-25px, 15px) scale(0.97); }
    50% { transform: translate(35px, -25px) scale(1.03); }
    75% { transform: translate(-15px, -20px) scale(1); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, 25px) scale(1.04); }
    66% { transform: translate(-30px, -15px) scale(0.96); }
}
@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(-20px, -25px) scale(1.03); }
    40% { transform: translate(25px, 10px) scale(0.97); }
    60% { transform: translate(10px, 30px) scale(1.05); }
    80% { transform: translate(-15px, 5px) scale(0.98); }
}

.mesh-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(102,126,234,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(240,147,251,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(118,75,162,0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* ===================================================================
   COOKIE BANNER
   =================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(8, 10, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 20px 24px;
    transform: translateY(100%);
    animation: slideUpCookie 0.6s var(--transition-smooth) 1s forwards;
}

@keyframes slideUpCookie {
    to { transform: translateY(0); }
}

.cookie-banner.hidden {
    transform: translateY(100%);
    animation: slideDownCookie 0.4s var(--transition-base) forwards;
    pointer-events: none;
}

@keyframes slideDownCookie {
    to { transform: translateY(100%); opacity: 0; }
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    color: var(--accent);
    flex-shrink: 0;
}

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

.cookie-text h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: var(--text-light-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--gradient-button);
    color: var(--text-light);
}
.cookie-btn-accept:hover {
    background: var(--gradient-button-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(102,126,234,0.3);
}

.cookie-btn-necessary {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border: 1px solid var(--border-glass);
}
.cookie-btn-necessary:hover {
    background: rgba(255,255,255,0.15);
}

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-setting-item {
    margin-bottom: 12px;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.cookie-setting-item p {
    font-size: 0.8rem;
    color: var(--text-light-secondary);
    margin-left: 24px;
    margin-top: 2px;
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(8, 10, 26, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light-secondary);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    background: rgba(255,255,255,0.08);
}

.nav-link-cta {
    background: var(--gradient-button) !important;
    color: var(--text-light) !important;
    padding: 8px 22px;
    margin-left: 8px;
}
.nav-link-cta:hover {
    background: var(--gradient-button-hover) !important;
    box-shadow: 0 4px 16px rgba(102,126,234,0.3);
    transform: translateY(-1px);
}

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

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-gradient-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
    color: var(--text-light);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--text-light);
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light-secondary);
    font-weight: 500;
}

.trust-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: var(--gradient-main);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.4;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-1 {
    bottom: -20px;
    left: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    top: -15px;
    right: -25px;
    animation-delay: 2s;
}

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

.hero-scroll-indicator span {
    font-size: 0.72rem;
    color: var(--text-light-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ===================================================================
   SECTION COMMON STYLES
   =================================================================== */
.section-gradient-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(240,147,251,0.1) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255,255,255,0.1);
    border-color: var(--border-glass);
    color: var(--accent-light);
}

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

.section-title-light {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle-light {
    color: var(--text-light-secondary);
}

/* ===================================================================
   SERVICES SECTION
   =================================================================== */
.services-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    perspective: 1000px;
}

.service-card-inner {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-card-inner {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102,126,234,0.2);
}

.service-card:hover .service-card-inner::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(240,147,251,0.08) 100%);
    margin-bottom: 20px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-button);
    color: var(--text-light);
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.service-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    align-self: flex-start;
}

.service-detail-btn:hover {
    background: var(--gradient-button);
    color: var(--text-light);
    border-color: transparent;
    transform: translateX(4px);
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-card);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-card);
}

.about-image-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(240,147,251,0.08) 100%);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================================================
   STATS SECTION
   =================================================================== */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.stats-gradient-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(240,147,251,0.3);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.stat-bar {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card.animated .stat-bar-fill {
    /* width is set inline */
}

/* ===================================================================
   IMAGE BANNER
   =================================================================== */
.image-banner-section {
    background: var(--bg-section);
    padding: 0;
    overflow: hidden;
}

.image-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.image-banner-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.image-banner-item:hover img {
    transform: scale(1.05);
}

.image-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 32px;
    background: linear-gradient(to top, rgba(8,10,26,0.85) 0%, transparent 100%);
}

.image-banner-overlay h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.image-banner-overlay p {
    font-size: 0.92rem;
    color: var(--text-light-secondary);
    line-height: 1.6;
}

/* ===================================================================
   TEAM SECTION
   =================================================================== */
.team-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.team-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102,126,234,0.2);
}

.team-avatar {
    margin-bottom: 20px;
}

.team-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(240,147,251,0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary);
    transition: all var(--transition-base);
}

.team-avatar-alt {
    background: linear-gradient(135deg, rgba(118,75,162,0.15) 0%, rgba(102,126,234,0.15) 100%);
    color: var(--secondary);
}

.team-card:hover .team-avatar-placeholder {
    background: var(--gradient-button);
    color: var(--text-light);
    transform: scale(1.08);
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================================================
   TESTIMONIALS SECTION
   =================================================================== */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-card);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-button);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===================================================================
   CASE STUDIES SECTION
   =================================================================== */
.case-studies-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, rgba(102,126,234,0.04) 0%, rgba(240,147,251,0.04) 100%);
    border-bottom: 1px solid var(--border-light);
}

.case-study-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-button);
    color: var(--text-light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.case-study-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.case-study-body {
    padding: 24px 28px 28px;
}

.case-study-section {
    margin-bottom: 16px;
}

.case-study-section h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.case-study-section p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.cs-stat {
    text-align: center;
}

.cs-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================================================================
   TRUST SECTION
   =================================================================== */
.trust-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-card);
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(102,126,234,0.2);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.trust-card a {
    font-weight: 600;
}

/* ===================================================================
   CONTACT SECTION
   =================================================================== */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.contact-gradient {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(16px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.required {
    color: var(--accent);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.2);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #ff6b6b;
    margin-top: 6px;
    min-height: 0;
}

.form-group-checkbox {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
    color: var(--text-light-secondary) !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* Contact Info */
.contact-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(16px);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.contact-info-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.88rem;
    color: var(--text-light-secondary);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--accent-light);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.main-footer {
    position: relative;
    background: #050714;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-gradient-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo span:last-child {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-contact-title {
    margin-top: 24px;
}

.footer-links-col ul li {
    margin-bottom: 8px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-light-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-bottom a {
    color: var(--text-light-secondary);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ===================================================================
   MODAL
   =================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(8, 10, 26, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(240,147,251,0.08) 100%);
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.modal-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.modal-body h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    margin-top: 20px;
}

.modal-body ul, .modal-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.modal-body ul {
    list-style: disc;
}

.modal-body ol {
    list-style: decimal;
}

.modal-body li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.legal-page {
    background: var(--bg-section);
}

.legal-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: rgba(248, 247, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

.legal-back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.legal-back-link:hover {
    background: rgba(102,126,234,0.08);
    color: var(--secondary);
}

.legal-main {
    position: relative;
    min-height: calc(100vh - var(--nav-height) - 60px);
    overflow: hidden;
}

.legal-gradient-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.legal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(102,126,234,0.06);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-section ul, .legal-section ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.gdpr-right-card {
    padding: 24px;
    background: linear-gradient(135deg, rgba(102,126,234,0.03) 0%, rgba(240,147,251,0.03) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.gdpr-right-card:hover {
    border-color: rgba(102,126,234,0.2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.gdpr-right-icon {
    margin-bottom: 14px;
}

.gdpr-right-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    margin-top: 0;
}

.gdpr-right-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

.legal-footer {
    padding: 20px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
}

.legal-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.legal-footer a {
    color: var(--primary);
    text-decoration: none;
}

.legal-footer a:hover {
    color: var(--accent);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .team-card:nth-child(4),
    .team-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust-badges {
        justify-content: center;
    }
    .hero-image-container {
        max-width: 560px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(8, 10, 26, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition-smooth);
        border-left: 1px solid var(--border-glass);
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .nav-link-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .image-banner-container {
        grid-template-columns: 1fr;
    }
    .image-banner-item {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .floating-card {
        display: none;
    }
    .about-image-secondary {
        width: 180px;
        bottom: -20px;
        right: -10px;
    }
    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
    .legal-content {
        padding: 28px 20px;
    }
    .contact-form-wrapper,
    .contact-info-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
    .hero-content {
        padding: 40px 16px 60px;
    }
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

/* ===================================================================
   ACCESSIBILITY
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .gradient-orb {
        animation: none !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print */
@media print {
    .main-nav, .cookie-banner, .hero-scroll-indicator, .modal-overlay {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}
