/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #ff71ce;
    --primary-dark: #d94fa8;
    --secondary: #01cdfe;
    --secondary-dark: #00a3cb;
    --accent: #b967ff;
    --accent-dark: #9040d9;
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: rgba(15, 15, 40, 0.85);
    --bg-card-hover: rgba(25, 25, 60, 0.95);
    --text-light: #f0e6ff;
    --text-muted: #a89bc2;
    --text-white: #ffffff;
    --gradient-sunset: linear-gradient(180deg, #ff6b9d 0%, #ff9a56 25%, #ffd93d 50%, #ff71ce 75%, #b967ff 100%);
    --gradient-main: linear-gradient(135deg, #ff71ce 0%, #b967ff 50%, #01cdfe 100%);
    --gradient-card: linear-gradient(145deg, rgba(185, 103, 255, 0.15) 0%, rgba(1, 205, 254, 0.08) 100%);
    --gradient-hero-bg: linear-gradient(180deg, #1a0033 0%, #0d001a 30%, #0a0a1a 60%, #0a0a1a 100%);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --nav-height: 70px;
    --border-glow: 1px solid rgba(185, 103, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(185, 103, 255, 0.3), 0 0 40px rgba(255, 113, 206, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(185, 103, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   VHS & SCANLINE OVERLAYS
   ============================================ */
.vhs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(185, 103, 255, 0.015) 2px,
        rgba(185, 103, 255, 0.015) 4px
    );
    mix-blend-mode: overlay;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.04;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 3px
    );
    animation: scanlineMove 8s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(6px); }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.98) 0%, rgba(30, 10, 50, 0.98) 100%);
    border-top: 2px solid var(--accent);
    padding: 20px 24px;
    z-index: 10000;
    backdrop-filter: blur(20px);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -10px 40px rgba(185, 103, 255, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-icon {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 8px;
}

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

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject,
.btn-cookie-settings {
    font-family: var(--font-display);
    font-size: 0.75rem;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.btn-cookie-accept {
    background: var(--gradient-main);
    color: var(--bg-dark);
}

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

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

.btn-cookie-reject:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-cookie-settings:hover {
    background: rgba(1, 205, 254, 0.1);
}

.cookie-details {
    max-width: 1240px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(185, 103, 255, 0.2);
}

.cookie-detail-row {
    margin-bottom: 8px;
}

.cookie-detail-row label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-detail-row input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 9999;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185, 103, 255, 0.1);
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    background: rgba(10, 10, 26, 0.95);
    border-bottom-color: rgba(185, 103, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    position: relative;
}

.logo-neo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 113, 206, 0.5);
}

.logo-szyk {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(1, 205, 254, 0.5);
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--accent);
    letter-spacing: 4px;
    position: absolute;
    bottom: -8px;
    left: 0;
    text-transform: uppercase;
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link-cta {
    background: var(--gradient-main);
    color: var(--bg-dark) !important;
    font-weight: 700;
    border-radius: 4px;
    padding: 8px 20px !important;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 113, 206, 0.4);
}

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

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 113, 206, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 113, 206, 0.5);
    color: var(--bg-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: rgba(1, 205, 254, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(1, 205, 254, 0.3);
    color: var(--secondary);
}

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

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

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

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 1px;
}

.divider-diamond {
    width: 10px;
    height: 10px;
    background: var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

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

/* ============================================
   SECTION GRID BACKGROUNDS
   ============================================ */
.section-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(185, 103, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 103, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.hero-grid-bg {
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
    height: 50%;
    background-image:
        linear-gradient(rgba(1, 205, 254, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 205, 254, 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: gridScroll 4s linear infinite;
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 80px; }
}

.hero-sun {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff6b9d 0%, #ff9a56 30%, #ffd93d 50%, transparent 70%);
    opacity: 0.6;
    filter: blur(2px);
    animation: sunPulse 6s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.75; transform: translateX(-50%) scale(1.05); }
}

.hero-sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 6px,
        var(--bg-dark) 6px,
        var(--bg-dark) 12px
    );
}

.hero-mountains {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 200px;
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
}

.mountain-1 {
    left: 10%;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 180px solid rgba(26, 0, 51, 0.9);
    filter: drop-shadow(0 0 10px rgba(185, 103, 255, 0.2));
}

.mountain-2 {
    left: 40%;
    border-left: 250px solid transparent;
    border-right: 250px solid transparent;
    border-bottom: 220px solid rgba(20, 0, 40, 0.95);
    filter: drop-shadow(0 0 10px rgba(255, 113, 206, 0.15));
}

.mountain-3 {
    right: 5%;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 150px solid rgba(30, 5, 55, 0.85);
    filter: drop-shadow(0 0 10px rgba(1, 205, 254, 0.15));
}

.hero-palm {
    position: absolute;
    bottom: 15%;
    width: 120px;
    height: 200px;
    z-index: 2;
}

.hero-palm-left {
    left: 5%;
}

.hero-palm-right {
    right: 5%;
    transform: scaleX(-1);
}

.hero-palm::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 140px;
    background: linear-gradient(180deg, rgba(185, 103, 255, 0.4), rgba(185, 103, 255, 0.1));
    border-radius: 4px;
}

.hero-palm::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
    border-radius: 0 80px 0 80px;
    background: radial-gradient(ellipse, rgba(1, 205, 254, 0.25), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInDown 0.8s 0.3s forwards;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0;
}

.title-line-1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(255, 113, 206, 0.5), 0 0 80px rgba(255, 113, 206, 0.2);
    animation: glitchIn 0.8s 0.5s forwards;
}

.title-line-2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(1, 205, 254, 0.3));
    animation: glitchIn 0.8s 0.7s forwards;
}

.title-line-3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 8px;
    margin-top: 8px;
    animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.3s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.6s forwards;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-arrow span {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

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

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

@keyframes glitchIn {
    0% { opacity: 0; transform: translateX(-10px) skewX(-5deg); }
    50% { opacity: 0.8; transform: translateX(5px) skewX(2deg); }
    75% { opacity: 0.9; transform: translateX(-2px) skewX(-1deg); }
    100% { opacity: 1; transform: translateX(0) skewX(0); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 5, 30, 1) 50%, var(--bg-dark) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    filter: saturate(0.8) contrast(1.1);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    filter: saturate(1) contrast(1);
    transform: scale(1.02);
}

.about-image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    opacity: 0.3;
    pointer-events: none;
}

.about-image-glitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 48%, rgba(255, 113, 206, 0.1) 49%, transparent 51%, transparent 100%);
    pointer-events: none;
    animation: glitchScan 4s linear infinite;
}

@keyframes glitchScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-main);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-neon);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-dark);
    line-height: 1;
}

.exp-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--gradient-card);
    border: var(--border-glow);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.about-feature:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 113, 206, 0.15);
}

.feature-icon {
    font-family: var(--font-mono);
    color: var(--secondary);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.trust-badges {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(1, 205, 254, 0.08), rgba(185, 103, 255, 0.05));
    border: 1px solid rgba(1, 205, 254, 0.2);
    border-radius: 8px;
}

.trust-badges h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.trust-badges p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: default;
}

.service-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-main);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 8px;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-inner {
    background: var(--bg-card-hover);
    border-color: transparent;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(185, 103, 255, 0.1);
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.service-card:hover .service-number {
    color: rgba(185, 103, 255, 0.25);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover .service-icon-wrap {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 113, 206, 0.3);
    transform: rotate(-5deg);
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: var(--primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

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

.service-features li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.service-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.service-more-btn {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--secondary);
    background: none;
    border: 1px solid var(--secondary);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    align-self: flex-start;
}

.service-more-btn:hover {
    background: rgba(1, 205, 254, 0.1);
    box-shadow: 0 0 15px rgba(1, 205, 254, 0.3);
    transform: translateX(4px);
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
    overflow: hidden;
    padding: 4px 0;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 4px;
    animation: galleryScroll 30s linear infinite;
    width: max-content;
}

.gallery-item {
    width: 300px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.1);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.05);
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 0, 40, 1) 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 113, 206, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 113, 206, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.stat-bar {
    width: 80%;
    height: 4px;
    background: rgba(185, 103, 255, 0.15);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

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

.stat-bar-fill.animated {
    width: var(--fill-width);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    position: relative;
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 8px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.team-card-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 113, 206, 0.1), rgba(185, 103, 255, 0.05));
    pointer-events: none;
}

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

.team-avatar {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.team-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(255, 113, 206, 0.3);
    transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 4px 30px rgba(255, 113, 206, 0.5);
}

.team-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 5, 30, 1) 50%, var(--bg-dark) 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 12px;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card.exit-left {
    opacity: 0;
    transform: translateX(-60px);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.testimonial-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-rating {
    margin-top: 16px;
}

.star-filled {
    font-family: var(--font-mono);
    color: #ffd93d;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    background: none;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-family: var(--font-mono);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(185, 103, 255, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(185, 103, 255, 0.5);
}

.testimonial-dot:hover {
    border-color: var(--primary);
}

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

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7);
    transition: var(--transition-smooth);
}

.case-card:hover .case-image img {
    filter: saturate(1);
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 26, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.case-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--secondary);
    background: rgba(1, 205, 254, 0.15);
    border: 1px solid rgba(1, 205, 254, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.case-content {
    padding: 24px;
}

.case-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.case-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.case-content strong {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 0, 40, 1) 50%, var(--bg-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 8px;
    padding: 32px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(185, 103, 255, 0.2);
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    background: rgba(185, 103, 255, 0.1);
    border-color: var(--primary);
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-item a {
    color: var(--secondary);
    font-size: 0.85rem;
}

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

.contact-item small {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: var(--border-glow);
    border-radius: 8px;
    padding: 32px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(1, 205, 254, 0.2);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

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

.form-error {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #ff4444;
    margin-top: 4px;
    min-height: 16px;
}

.form-consent {
    margin-top: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-muted) !important;
    line-height: 1.4 !important;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.85rem;
    margin-top: 8px;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--bg-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

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

.form-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-align: center;
}

.form-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.form-error-msg {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.modal-content {
    background: linear-gradient(145deg, rgba(15, 15, 40, 0.98), rgba(25, 10, 50, 0.98));
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 40px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(185, 103, 255, 0.2);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    background: none;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(185, 103, 255, 0.2);
}

.modal-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.modal-body ul {
    margin-bottom: 16px;
}

.modal-body li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.modal-body li::before {
    content: '>>';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.modal-cta {
    display: inline-block;
    margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: var(--bg-darker);
    border-top: 2px solid rgba(185, 103, 255, 0.2);
    overflow: hidden;
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(185, 103, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 103, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    position: relative;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-address {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-contact-heading {
    margin-top: 24px !important;
}

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

.footer-links-col ul li a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-links-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(185, 103, 255, 0.1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

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

.footer-legal-links a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 24px 40px;
        gap: 4px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(185, 103, 255, 0.2);
        z-index: 10000;
    }

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

    .nav-link {
        font-size: 0.85rem;
        padding: 12px 16px;
        width: 100%;
        text-align: left;
    }

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

    .about-image-col {
        order: -1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-palm {
        display: none;
    }

    .mountain-1, .mountain-3 {
        display: none;
    }

    .gallery-item {
        width: 200px;
        height: 120px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .modal-content {
        padding: 24px;
    }

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

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-sun {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent), var(--secondary));
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(185, 103, 255, 0.3);
    color: var(--text-white);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

    .vhs-overlay,
    .scanlines {
        display: none;
    }

    .hero-grid-bg {
        animation: none;
    }

    .gallery-track {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}
