/* ===== Design System with Light/Dark Mode ===== */
:root {
    /* Light mode (default) - soft, easy on eyes */
    --bg-primary: #fafafa;
    --bg-secondary: #f0f0f2;
    --bg-elevated: #ffffff;
    --bg-glass: rgba(0, 0, 0, 0.025);
    --text-primary: #2c2c2e;
    --text-secondary: #636366;
    --text-tertiary: #8e8e93;
    --accent: #a087ff;
    --accent-hover: #8b6fff;
    --accent-light: rgba(160, 135, 255, 0.12);
    --accent-glow: rgba(160, 135, 255, 0.25);
    --border: rgba(0, 0, 0, 0.06);
    --shadow: rgba(0, 0, 0, 0.03);
    --shadow-hover: rgba(0, 0, 0, 0.06);
    --nav-bg: rgba(250, 250, 250, 0.85);
    --card-bg: #ffffff;
    --font-system: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', SFMono-Regular, ui-monospace, Menlo, monospace;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

[data-theme="dark"] {
    /* Dark mode - przyjazny dla oczu, nie pitch black */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-elevated: #1e1e1e;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #8e8e93;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.4);
    --shadow-hover: rgba(0, 0, 0, 0.6);
    --nav-bg: rgba(10, 10, 10, 0.85);
    --card-bg: #161616;
}

/* ===== Accessibility ===== */
.skip-link,
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
}

.skip-link:focus,
.skip-to-content:focus {
    position: fixed;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(160, 135, 255, 0.4);
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-system);
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

::selection {
    background: var(--accent);
    color: white;
}

/* ===== Background Glow ===== */
.bg-glow {
    position: fixed;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 60%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .bg-glow {
    opacity: 0.15;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    height: 64px;
    padding: 0 12px 0 16px;
    background: rgba(30, 30, 35, 0.9);
    backdrop-filter: saturate(120%) blur(12px);
    -webkit-backdrop-filter: saturate(120%) blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .nav-inner {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-logo:hover,
.nav-logo:focus,
.nav-logo:active,
.nav-logo:visited,
.nav-logo:link {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 10px;
    color: white;
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.nav-logo-text span {
    color: var(--accent);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: 10px 16px;
    border-radius: 16px;
}

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

[data-theme="light"] .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1001;
}

/* Nav Contact */
.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.nav-contact-label {
    font-size: 11px;
    font-weight: 500;
    color: #f59e0b;
    letter-spacing: 0.02em;
}

.nav-contact-phone {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.nav-contact-phone:hover {
    color: var(--accent);
}

/* Nav CTA Button */
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 12px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #7c5ce0 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(160, 135, 255, 0.4);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 135, 255, 0.5);
}

.nav-cta-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.nav-cta-btn:hover .nav-cta-icon {
    transform: translate(2px, -2px);
}

/* Nav Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

[data-theme="light"] .nav-inner .lang-switch {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.lang-btn {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--accent);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* Theme Toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

[data-theme="light"] .nav-inner .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    width: 18px;
    height: 18px;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

.theme-toggle .icon-sun {
    display: none;
}

.theme-toggle .icon-moon {
    display: block;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: center;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

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

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    padding: 80px 28px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        visibility 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow-y: auto;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 48px;
}

.mobile-menu-link {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        color 0.25s ease;
    position: relative;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.mobile-menu.active .mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) {
    transition-delay: 0.08s;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    transition-delay: 0.12s;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    transition-delay: 0.16s;
}

.mobile-menu.active .mobile-menu-link:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--accent);
}

.mobile-menu-link:hover::after {
    width: 40px;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(160, 135, 255, 0.3);
}

.mobile-menu-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(160, 135, 255, 0.4);
}

.mobile-menu-cta svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.mobile-menu-cta-number {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mobile-menu-cta-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu-controls .lang-switch {
    flex: 1;
}

.mobile-menu-controls .theme-toggle {
    flex-shrink: 0;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Gradients */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: hero-gradient-float 20s ease-in-out infinite;
}

.hero-gradient-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-gradient-2 {
    width: 500px;
    height: 500px;
    background: #c4b5fd;
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.hero-gradient-3 {
    width: 400px;
    height: 400px;
    background: #f0abfc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes hero-gradient-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
}

/* Hero Social Proof */
.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px 12px 12px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
    transition: all 0.3s ease;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--card-bg);
}

.hero-social-proof:hover .hero-avatar {
    margin-left: -8px;
}

.hero-social-proof:hover .hero-avatar:first-child {
    margin-left: 0;
}

.hero-social-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-social-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #30d158;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(48, 209, 88, 0.5);
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 90%;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 100%;
    display: none;
}

.hero-trust-badges {
    display: none !important;
}

.cta-content>div:last-child {
    display: none !important;
}

.contact-form>div[style*="background"] {
    display: none !important;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 50%, #f0abfc 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease-in-out infinite;
    position: relative;
}

@keyframes shimmer {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Hero Benefits */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 48px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: left;
}

.hero-benefits li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.hero-benefits li span {
    flex: 1;
}

/* Button Large */
.btn-large {
    padding: 16px 28px;
    font-size: 16px;
}

/* Button Ghost */
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--accent);
}

.btn-ghost svg {
    transition: transform 0.3s ease;
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    background: var(--card-bg);
    border: 2px solid rgba(160, 135, 255, 0.2);
    border-radius: 50%;
    padding: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-stat:hover {
    border-color: var(--accent);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(160, 135, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-text {
    opacity: 0.6;
}

.scroll-indicator svg {
    animation: float-arrow 2.5s ease-in-out infinite;
}

@keyframes float-arrow {

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

    50% {
        transform: translateY(8px);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--font-system);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-light);
}

.btn-full {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    padding: 100px 24px;
    max-width: 1120px;
    margin: 0 auto;
}

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

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 95%;
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
}

/* ===== About Section ===== */
.about {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
    max-width: 95%;
}

/* Avatar */
.about-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 50%, #f0abfc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(160, 135, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.about-avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

.avatar-gradient {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--bg-primary);
    z-index: 1;
}

.avatar-initials {
    position: relative;
    z-index: 2;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.avatar-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #30d158;
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 3;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(48, 209, 88, 0);
        transform: scale(1.1);
    }
}

/* Avatar Decorations */
.avatar-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
    animation: float-decoration 6s ease-in-out infinite;
}

.avatar-decoration-1 {
    width: 60px;
    height: 60px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.avatar-decoration-2 {
    width: 40px;
    height: 40px;
    bottom: -10px;
    left: -30px;
    animation-delay: -2s;
}

.avatar-decoration-3 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    animation-delay: -4s;
}

@keyframes float-decoration {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10px, -10px) scale(1.1);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.9);
    }
}

.about-text-content {
    flex: 1;
}

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

.about-text p {
    margin-bottom: 1.25rem;
    max-width: 65ch;
    line-height: 1.7;
}

.section-description p {
    margin-bottom: 1.25rem;
    max-width: 70ch;
    line-height: 1.7;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Badges */
.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.badge:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 130px;
    height: 130px;
    background: var(--card-bg);
    border: 2px solid rgba(160, 135, 255, 0.2);
    border-radius: 50%;
    padding: 12px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat:hover {
    border-color: var(--accent);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(160, 135, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 8.5px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 2px;
    display: block;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 24px;
    background: var(--bg-secondary);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1120px;
    margin: 0 auto;
}

.service-card {
    padding: 32px 28px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-hover), 0 0 0 1px var(--accent);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--accent);
}

.service-title {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    background: var(--bg-secondary);
    padding: 5px 10px;
    border-radius: 6px;
}

[data-theme="dark"] .service-tag {
    background: var(--bg-elevated);
}

.service-card-partner {
    border-style: dashed;
}

.service-partner-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.service-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.service-partner-link:hover {
    gap: 10px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 24px;
}

.testimonials-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -12px;
    padding: 0 12px;
}

.testimonials-carousel {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 calc(25% - 12px);
    min-width: 280px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonials-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.testimonials-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.1);
}

.testimonials-btn:active {
    transform: scale(0.95);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.testimonial-card {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.testimonial-card:hover {
    border-color: rgba(160, 135, 255, 0.3);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.star {
    width: 14px;
    height: 14px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 11px;
    color: var(--text-tertiary);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.google-icon {
    width: 14px;
    height: 14px;
}

/* ===== Projects Section ===== */
.projects {
    padding: 100px 24px;
    background: var(--bg-secondary);
}

.projects-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.projects-header {
    margin-bottom: 48px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.project-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.project-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}

.project-image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
}

.project-card-featured .project-image-link {
    aspect-ratio: 16/9;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-featured .project-image {
    aspect-ratio: auto;
}

.project-placeholder {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-tertiary);
    opacity: 0.2;
}

.project-info {
    padding: 28px;
}

.project-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.project-title {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.project-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.project-link:hover {
    gap: 10px;
}

/* More Projects */
.projects-more {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.projects-more-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.project-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.project-mini:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.project-mini-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.project-mini-category {
    font-size: 11px;
    color: var(--text-tertiary);
}

/* ===== Trust Badges Section ===== */
.trust-badges {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.trust-badges-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.trust-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

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

.trust-badge-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trust-badge-content p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ===== Floating CTA Mobile ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(160, 135, 255, 0.4);
    transition: var(--transition);
    animation: floating-cta-pulse 3s ease-in-out infinite;
}

.floating-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(160, 135, 255, 0.5);
}

.floating-cta svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.floating-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.floating-cta-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.floating-cta-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes floating-cta-pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(160, 135, 255, 0.4);
    }

    50% {
        box-shadow: 0 8px 32px rgba(160, 135, 255, 0.6), 0 0 0 8px rgba(160, 135, 255, 0.1);
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 24px;
    background: var(--bg-secondary);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-item:hover {
    border-color: rgba(160, 135, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-system);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-tertiary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== Process Section ===== */
.process-section {
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 100px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(160, 135, 255, 0.3) 15%,
            rgba(160, 135, 255, 0.3) 85%,
            transparent 100%);
    z-index: 0;
    border-radius: 2px;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.process-step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 24px;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.process-step:hover .process-step-number {
    background: var(--accent);
    color: var(--bg-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(160, 135, 255, 0.4);
}

.process-step-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .process-step-content {
    border-color: var(--accent);
    transform: translateY(-12px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(160, 135, 255, 0.1);
}

.process-step:hover .process-step-content::before {
    opacity: 1;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(160, 135, 255, 0.1) 0%, rgba(196, 181, 253, 0.1) 100%);
    border: 1px solid rgba(160, 135, 255, 0.2);
    border-radius: 18px;
    margin: 0 auto 24px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.process-step:hover .process-step-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(160, 135, 255, 0.3);
}

.process-step-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.process-step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.process-step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-step-line {
    display: none;
}

/* ===== For Who Section ===== */
.for-who-section {
    padding: 100px 24px;
    background: var(--bg-secondary);
}

.for-who-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.for-who-header {
    text-align: center;
    margin-bottom: 60px;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.for-who-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.for-who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px var(--shadow-hover);
}

.for-who-yes {
    border-color: rgba(48, 209, 88, 0.3);
}

.for-who-yes:hover {
    border-color: #30d158;
}

.for-who-yes .for-who-icon {
    background: rgba(48, 209, 88, 0.1);
    color: #30d158;
}

.for-who-no {
    border-color: rgba(255, 69, 58, 0.3);
}

.for-who-no:hover {
    border-color: #ff453a;
}

.for-who-no .for-who-icon {
    background: rgba(255, 69, 58, 0.1);
    color: #ff453a;
}

.for-who-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.for-who-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.for-who-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.for-who-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.for-who-list li:last-child {
    margin-bottom: 0;
}

.for-who-yes .for-who-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #30d158;
    font-weight: 700;
}

.for-who-no .for-who-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff453a;
    font-weight: 700;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 24px;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 24px;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-header {
    margin-bottom: 32px;
}

.contact-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-title span {
    color: var(--accent);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.contact-link:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.contact-link-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-link-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 8px var(--shadow);
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-system);
    font-size: 16px;
    /* 16px prevents zoom on iOS */
    transition: var(--transition);
    resize: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group label .required {
    color: var(--accent);
    font-weight: 500;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

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

.form-group select option {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 12px;
}

.form-checkbox {
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-top: 2px;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.checkbox-label input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(160, 135, 255, 0.3);
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkbox-label input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-light);
}

.checkbox-label input[type="checkbox"]:active {
    transform: scale(0.95);
}

.checkbox-label input[type="checkbox"]:checked::before {
    animation: checkmarkAppear 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Dark mode checkbox adjustments */
[data-theme="dark"] .checkbox-label input[type="checkbox"] {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .checkbox-label input[type="checkbox"]:hover {
    border-color: var(--accent);
    background: rgba(160, 135, 255, 0.05);
}

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

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

.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    font-size: 14px;
}

.form-success {
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.3);
    color: #30d158;
}

.form-error {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: #ff453a;
}

.form-message svg {
    flex-shrink: 0;
}

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

.btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 24px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.footer-contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-info-item {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Prevent auto-link styling on mobile for NIP */
.footer-nip,
.footer-nip span {
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: var(--text-secondary) !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.footer-nip:hover,
.footer-nip:focus,
.footer-nip:active,
.footer-nip:visited,
.footer-nip:link,
.footer-nip span:hover,
.footer-nip span:focus,
.footer-nip span:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
    -webkit-text-fill-color: var(--text-secondary) !important;
}

.footer-area {
    display: flex;
    flex-direction: column;
}

.footer-area-item {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-area-link {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-area-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer-legal {
    margin-top: 12px;
}

.footer-legal-link {
    font-size: 13px;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-legal-separator {
    margin: 0 8px;
    color: var(--text-tertiary);
    font-size: 13px;
}

/* ===== Language Selection Modal ===== */
.lang-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lang-modal {
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: langModalSlideIn 0.3s ease-out;
}

@keyframes langModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lang-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lang-modal-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.lang-modal-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-color);
}

.lang-modal-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== Cookie Banner ===== */
/* ===== Cookie Banner - RODO/UE Compliant ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    z-index: 10000;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 24px;
    animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-banner-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.cookie-banner-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cookie-banner-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Cookie Categories */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 8px 0;
}

.cookie-category {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cookie-category-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-category-desc {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

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

.cookie-toggle-slider {
    width: 44px;
    height: 24px;
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--text-tertiary);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

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

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

.cookie-toggle-disabled {
    cursor: default;
    opacity: 0.7;
}

.cookie-toggle-always {
    font-size: 11px;
    color: var(--text-tertiary);
    white-space: nowrap;
}

/* Cookie Banner Actions */
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-system);
}

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

.cookie-btn-settings:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

.cookie-btn-reject:hover {
    background: var(--bg-elevated);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(160, 135, 255, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 135, 255, 0.4);
}

.cookie-btn-save {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #c4b5fd 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(160, 135, 255, 0.3);
}

.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 135, 255, 0.4);
}

/* Cookie Banner Footer */
.cookie-banner-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.cookie-banner-footer a {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.cookie-banner-footer a:hover {
    text-decoration: underline;
}

.cookie-banner-separator {
    color: var(--border);
    font-size: 12px;
}

.cookie-banner-info {
    font-size: 11px;
    color: var(--text-tertiary);
}

/* ===== Privacy Policy Page ===== */
.privacy-page {
    min-height: 100vh;
    padding: 80px 24px;
    background: var(--bg-primary);
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 40px;
    transition: var(--transition);
}

.privacy-back:hover {
    color: var(--accent-hover);
    transform: translateX(-4px);
}

.privacy-page h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.privacy-updated {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 48px;
}

.privacy-section {
    margin-bottom: 48px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    margin-top: 32px;
}

.privacy-section h2:first-child {
    margin-top: 0;
}

.privacy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-section li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: underline;
}

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

/* Legacy footer-content for backwards compatibility */
.footer-content {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.footer-logo:hover,
.footer-logo:focus,
.footer-logo:active,
.footer-logo:visited,
.footer-logo:link {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo .nav-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 10px;
    color: white;
}

.footer-logo .nav-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== Content Links - Normal Underlines ===== */
.content-link,
.about-text a,
.service-description a,
.project-description a,
.cta-text a,
.faq-answer a,
p a:not(.btn):not(.nav-link):not(.project-link):not(.service-partner-link):not(.contact-link):not(.footer-nav-link):not(.footer-legal-link) {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: currentColor;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
    transition: opacity 0.2s ease;
}

.content-link:hover,
.about-text a:hover,
.service-description a:hover,
.project-description a:hover,
.cta-text a:hover,
.faq-answer a:hover,
p a:not(.btn):not(.nav-link):not(.project-link):not(.service-partner-link):not(.contact-link):not(.footer-nav-link):not(.footer-legal-link):hover {
    opacity: 0.7;
    text-decoration: underline;
    text-decoration-color: currentColor;
}

[data-theme="dark"] .content-link,
[data-theme="dark"] .about-text a,
[data-theme="dark"] .service-description a,
[data-theme="dark"] .project-description a,
[data-theme="dark"] .cta-text a,
[data-theme="dark"] .faq-answer a,
[data-theme="dark"] p a:not(.btn):not(.nav-link):not(.project-link):not(.service-partner-link):not(.contact-link):not(.footer-nav-link):not(.footer-legal-link) {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: currentColor;
}

[data-theme="dark"] .content-link:hover,
[data-theme="dark"] .about-text a:hover,
[data-theme="dark"] .service-description a:hover,
[data-theme="dark"] .project-description a:hover,
[data-theme="dark"] .cta-text a:hover,
[data-theme="dark"] .faq-answer a:hover,
[data-theme="dark"] p a:not(.btn):not(.nav-link):not(.project-link):not(.service-partner-link):not(.contact-link):not(.footer-nav-link):not(.footer-legal-link):hover {
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: currentColor;
}

.footer-logo .nav-logo-text span {
    color: var(--accent);
}

.footer-text {
    font-size: 12px;
    color: var(--text-tertiary);
}

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

.footer-link {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== Loading Screen ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-logo span {
    color: var(--accent);
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .about-avatar-wrapper {
        margin: 0 auto;
    }

    .about-stats {
        gap: 20px;
    }

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

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

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step-number {
        width: 56px;
        height: 56px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .process-step-content {
        padding: 32px 24px;
    }

    .process-step-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

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

    .testimonials-carousel .testimonial-card {
        flex: 0 0 calc(50% - 8px);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

    .contact {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 12px 16px;
    }

    .nav-inner {
        padding: 0 12px 0 14px;
        height: 56px;
    }

    .nav-logo-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .nav-logo-icon svg {
        width: 16px;
        height: 16px;
    }

    .nav-logo-text {
        font-size: 16px;
    }

    .nav-center {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .nav-cta-btn {
        display: none;
    }

    .nav-controls {
        display: none;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
    }

    .trust-badges {
        padding: 60px 20px;
    }

    .trust-badges-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-badge {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }

    .floating-cta {
        display: flex;
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }

    .floating-cta-text {
        display: flex;
    }

    .floating-cta svg {
        width: 20px;
        height: 20px;
    }

    .section {
        padding: 80px 20px;
    }

    .hero {
        padding: 120px 20px 80px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(40px, 11vw, 64px);
    }

    .hero-description {
        font-size: clamp(17px, 2vw, 19px);
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
        text-align: center;
    }

    .hero-avatars {
        justify-content: center;
    }

    .hero-benefits {
        gap: 12px;
    }

    .hero-benefits li {
        font-size: 15px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stat {
        width: 95px;
        height: 95px;
        padding: 12px;
        border-width: 1.5px;
    }

    .hero-stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .hero-stat-label {
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .services {
        padding: 80px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 80px 20px;
    }

    .testimonials-carousel .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .process-header {
        margin-bottom: 60px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 0;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        padding: 0;
    }

    .process-step-number {
        width: 56px;
        height: 56px;
        font-size: 18px;
        margin-bottom: 24px;
    }

    .process-step-content {
        padding: 32px 24px;
    }

    .process-step-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

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

    .process-step-title {
        font-size: 19px;
        margin-bottom: 14px;
    }

    .process-step-desc {
        font-size: 15px;
        line-height: 1.7;
    }

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

    .for-who-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .for-who-card {
        padding: 32px 24px;
    }

    .projects {
        padding: 80px 20px;
    }

    .projects-list {
        grid-template-columns: 1fr;
    }

    .about-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-avatar {
        width: 120px;
        height: 120px;
    }

    .avatar-initials {
        font-size: 36px;
    }

    .about-badges {
        justify-content: center;
    }

    .about-stats {
        gap: 12px;
    }

    .stat {
        width: 95px;
        height: 95px;
        padding: 12px;
        border-width: 1.5px;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .trust-badges {
        padding: 60px 20px;
    }

    .trust-badges-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .floating-cta {
        display: flex;
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }

    .floating-cta-text {
        display: none;
    }

    .floating-cta svg {
        width: 24px;
        height: 24px;
    }

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

    .contact {
        padding: 80px 20px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer {
        padding: 20px;
    }

    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .cookie-btn-settings {
        order: 3;
    }

    .footer {
        padding: 60px 20px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact,
    .footer-nav {
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===== Focus States ===== */
.btn:focus-visible,
.nav-link:focus-visible,
.contact-link:focus-visible,
.theme-toggle:focus-visible,
.lang-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== Keyboard Navigation ===== */
body:not(.keyboard-nav) *:focus {
    outline: none;
}

/* ===== Very Small Screens ===== */
@media (max-width: 380px) {
    .hero-stats {
        gap: 8px;
    }

    .hero-stat {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .hero-stat-number {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .hero-stat-label {
        font-size: 7px;
    }

    .about-stats {
        gap: 8px;
    }

    .stat {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .stat-number {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 7px;
    }
}

/* ===== Print Styles ===== */
@media print {

    .nav,
    .loader,
    .bg-glow,
    .scroll-indicator,
    .cta-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}