/* ============================================
   EXCELMEDIAUK — STYLE SYSTEM
   Website Design & Creation Preview
   ============================================ */

/* === VARIABLES === */
:root {
    --bg: #060a10;
    --bg-secondary: #0a0f18;
    --bg-card: #0d1420;
    --bg-card-hover: #111a2a;
    --text: #e8ecf1;
    --text-secondary: #8a94a6;
    --text-muted: #4a5568;
    --accent: #00d4ff;
    --accent-secondary: #0099cc;
    --gradient: linear-gradient(135deg, #00d4ff, #0099cc);
    --gradient-subtle: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,153,204,0.08));
    --border: rgba(0,212,255,0.08);
    --border-hover: rgba(0,212,255,0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --shadow: 0 4px 30px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 60px rgba(0,212,255,0.1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Syne', 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: var(--bg);
}

html::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button, input, textarea, select {
    font-family: inherit;
    cursor: auto;
}

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NOISE OVERLAY === */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.preloader-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(90deg);
    animation: letterIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--i) * 0.1s);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.preloader-percent {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    padding: 12px 40px;
    background: rgba(10,10,10,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.logo-text { color: var(--text); }
.logo-accent { color: var(--accent); }
.logo-uk { 
    font-size: 0.65em; 
    color: var(--text-muted);
    margin-left: 2px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition-fast);
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.nav-social:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.8rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
    transition-delay: calc(var(--i) * 0.05s);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:hover {
    color: var(--accent);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,212,255,0.2);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(0,212,255,0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Magnetic Button Effect (handled in JS) */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

/* Hero has no canvas now */

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-word {
    display: inline-block;
    margin-right: 0.2em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.outline-text {
    -webkit-text-stroke: 2px var(--accent);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #00d4ff;
    top: -200px;
    right: -200px;
    animation: orbFloat 15s ease-in-out infinite;
    opacity: 0.12;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #0077b6;
    bottom: -100px;
    left: -100px;
    animation: orbFloat 12s ease-in-out infinite reverse;
    opacity: 0.1;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === MARQUEE === */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.marquee-content span {
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--accent) !important;
    font-size: 0.8em;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === SECTION STYLING === */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === SERVICES === */
.services {
    padding: 140px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    position: absolute;
    top: 16px;
    right: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: var(--gradient-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-tags span {
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.service-card:hover .service-tags span {
    border-color: var(--accent);
    color: var(--accent);
}

.service-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--accent);
    color: var(--accent);
}

/* === PORTFOLIO === */
.portfolio {
    padding: 140px 0 80px;
    overflow: hidden;
}

.portfolio-showcase {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 40px 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portfolio-showcase::-webkit-scrollbar {
    display: none;
}

.portfolio-track {
    display: flex;
    gap: 32px;
    width: max-content;
    padding-right: 40px;
}

.portfolio-item {
    width: 500px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.portfolio-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.portfolio-item-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.portfolio-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-banner {
    transform: scale(1.05);
}

.vik-banner-bg {
    background: #000;
}

.vik-banner {
    object-fit: contain;
    width: 80%;
    margin: 0 auto;
    display: block;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, var(--bg)), color-mix(in srgb, var(--accent) 3%, var(--bg-secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-live-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(0,212,255,0.15);
    border: 1px solid rgba(0,212,255,0.3);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    z-index: 2;
}

.placeholder-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent);
    opacity: 0.6;
    z-index: 1;
    position: relative;
}

.portfolio-item-info {
    padding: 28px 32px;
}

.portfolio-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-mono);
}

.portfolio-item-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 8px 0;
}

.portfolio-item-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition-fast);
}

.portfolio-link:hover {
    color: var(--text);
    gap: 8px;
}

/* === TEXT REVEAL SECTION === */
.text-reveal-section {
    padding: 160px 0;
    overflow: hidden;
}

.big-text-reveal {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.reveal-word {
    display: inline-block;
    margin-right: 0.2em;
    opacity: 0.15;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: calc(var(--i) * 0.05s);
}

.reveal-word.visible {
    opacity: 1;
}

.accent-word {
    color: var(--accent);
}

/* === PROCESS === */
.process {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-line-fill {
    width: 100%;
    height: 0%;
    background: var(--gradient);
    transition: height 0.3s linear;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 1;
}

.process-step-number span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.process-step.active .process-step-number {
    border-color: var(--accent);
    background: var(--gradient);
    box-shadow: 0 0 30px rgba(0,212,255,0.2);
}

.process-step.active .process-step-number span {
    color: #fff;
}

.process-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    padding-top: 4px;
}

.process-step-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* === CONTACT SOCIAL LINKS === */
.contact-socials {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.contact-social-link svg {
    width: 24px;
    height: 24px;
}

.contact-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    cursor: pointer;
}

/* === REAL RESULTS === */
.results {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.result-banner {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.result-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-card:hover .result-banner img {
    transform: scale(1.05);
}

.vik-result-banner {
    background: #000;
}

.vik-result-banner img {
    object-fit: contain;
    width: 70%;
    margin: 0 auto;
    display: block;
}

.result-body {
    padding: 32px 40px 40px;
}

.result-client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.result-pfp {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border);
}

.result-client span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.result-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.result-before {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.2);
}

.result-before small,
.result-after small {
    font-size: 0.5em;
    font-weight: 500;
}

.result-arrow-icon {
    flex-shrink: 0;
}

.result-after {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.result-highlight {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

.result-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.result-desc a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.result-desc a:hover {
    color: var(--text);
}

.result-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
}

/* === PARTNERS === */
.sponsors-section {
    padding: 80px 0 60px;
    overflow: hidden;
}

.partners-reveal {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Center-expanding line */
.partners-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 48px;
    overflow: hidden;
}

.partners-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 100%;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
    box-shadow: 0 0 12px rgba(0,212,255,0.6);
}

.partners-reveal.revealed .partners-line::before {
    width: 100%;
}

.partners-reveal.revealed .partners-line::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Grid */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Card — clip-path mask reveal */
.partner-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transition:
        clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1) calc(0.4s + var(--i) * 0.1s),
        opacity 0.4s ease calc(0.4s + var(--i) * 0.1s),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.partners-reveal.revealed .partner-card {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
}

/* Hover */
.partner-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
    transform: translateY(-3px);
}

.partner-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.partner-card span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.partner-card:hover span {
    color: var(--text);
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 10px;
    }
    .partner-card {
        padding: 10px 20px;
        gap: 10px;
    }
    .partner-card img {
        width: 28px;
        height: 28px;
    }
    .partner-card span {
        font-size: 0.8rem;
    }
}

/* === CONTACT === */
.contact {
    padding: 140px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-detail svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* === FOOTER === */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand > span,
.footer-brand .logo-text,
.footer-brand .logo-accent,
.footer-brand .logo-uk {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links-group {
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav {
        padding: 16px 20px;
    }
    .nav.scrolled {
        padding: 12px 20px;
    }
    .portfolio-item {
        width: 340px;
    }
    .big-text-reveal {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .portfolio-item {
        width: 280px;
    }
    .marquee-content {
        font-size: 1rem;
    }
}

/* === SMOOTH PAGE TRANSITION OVERLAY === */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    z-index: 99998;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

/* === GLITCH EFFECT ON HOVER (FOR FUN) === */
@keyframes glitch1 {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -1px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 3px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(3px, 1px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-3px, -2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -3px); }
}

/* === SIDE PANEL === */
.side-panel-trigger {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.side-panel-trigger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.side-panel-trigger:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.side-panel-trigger:hover span {
    background: var(--accent);
}

.side-panel-trigger:hover span:nth-child(1) {
    width: 12px;
    transform: translateX(-4px);
}

.side-panel-trigger:hover span:nth-child(3) {
    width: 12px;
    transform: translateX(4px);
}

.side-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.side-panel.active {
    transform: translateX(0);
}

.side-panel-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.side-panel-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.side-panel-content {
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.side-panel-header {
    margin-bottom: 60px;
}

.side-panel-header .logo-text,
.side-panel-header .logo-accent,
.side-panel-header .logo-uk {
    font-size: 1.2rem;
}

.side-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.side-panel-link {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.side-panel-link:first-child {
    border-top: 1px solid var(--border);
}

.side-panel-link:hover {
    padding-left: 8px;
}

.side-panel-link-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.side-panel-link-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s ease;
}

.side-panel-link:hover .side-panel-link-text {
    color: var(--accent);
}

.side-panel-link-sub {
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 0;
    margin-top: -4px;
    transition: color 0.3s ease;
}

.side-panel-link:hover .side-panel-link-sub {
    color: var(--text-secondary);
}

.side-panel-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.side-panel-footer p {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .side-panel-trigger {
        right: 16px;
        top: auto;
        bottom: 24px;
        transform: none;
    }
    .side-panel-content {
        padding: 80px 24px 24px;
    }
    .side-panel-link-text {
        font-size: 1.2rem;
    }
}

/* === SELECTION STYLES === */
::selection {
    background: rgba(0,212,255,0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(0,212,255,0.3);
    color: #fff;
}
