/* ==========================================
   REAL IMPACT MARKETING - MODERN STYLES
   Using: CSS Custom Props, Container Queries,
   View Transitions, color-mix(), :has(), nesting
   ========================================== */

/* ==========================================
   VARIABLES & THEMES
   ========================================== */
:root {
    /* Dark theme only */
    --primary: #00C896;
    --primary-dark: #00A077;
    --primary-light: #00F5B5;
    --secondary: #E8ECF0;
    --secondary-light: #B0BEC5;
    --accent: #FFB800;
    --accent-pink: #FF6B9D;
    --text-dark: #F0F2F5;
    --text-light: #B0B8C4;
    --bg-light: #0F1419;
    --bg-card: #1A2332;
    --white: #0D1117;
    --surface: #1A2332;
    --surface-hover: #243447;
    --border: rgba(0, 200, 150, 0.15);
    --border-hover: rgba(0, 200, 150, 0.4);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 200, 150, 0.1);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.4);
    --nav-bg: rgba(13, 17, 23, 0.85);
    --nav-bg-scroll: rgba(13, 17, 23, 0.95);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --overlay: rgba(0, 0, 0, 0.95);

    /* Sizing */
    --container: 1400px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 32px;

    /* Timing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.4s;

    color-scheme: dark;
}

/* ==========================================
   PRELOADER
   ========================================== */

/* Hide page content until loaded */
body.is-loading {
    overflow: hidden;
}

body.is-loading > *:not(.preloader) {
    opacity: 0;
}

body.is-loaded > *:not(.preloader) {
    animation: pageReveal 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

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

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg, #0a0e13);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
}

.preloader.fade-out {
    animation: preloaderExit 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    60% {
        opacity: 0.4;
        transform: scale(1.03);
    }
    100% {
        opacity: 0;
        transform: scale(1.06);
        visibility: hidden;
    }
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

/* Preloader exit: content shrinks before page fades */
.preloader.fade-out .preloader-inner {
    animation: preloaderContentExit 0.5s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes preloaderContentExit {
    to {
        opacity: 0;
        transform: scale(0.85) translateY(-10px);
    }
}

/* Circle container */
.preloader-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.preloader-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preloader-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 4;
}

.preloader-circle-fill {
    fill: none;
    stroke: url(#preloaderGradient);
    stroke: var(--primary, #00C896);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.15s ease-out;
    filter: drop-shadow(0 0 8px rgba(0, 200, 150, 0.4));
}

/* Logo inside the circle */
.preloader-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--primary, #00C896);
    animation: preloaderLogoPulse 2s ease-in-out infinite;
}

.preloader-logo-center svg {
    width: 100%;
    height: 100%;
}

@keyframes preloaderLogoPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Rotating glow behind the circle */
.preloader-circle::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(0, 200, 150, 0.15) 25%,
        transparent 50%,
        rgba(0, 200, 150, 0.08) 75%,
        transparent 100%
    );
    animation: preloaderGlow 3s linear infinite;
}

@keyframes preloaderGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    animation: preloaderTextFade 2s ease-in-out infinite alternate;
}

.preloader-percent {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary, #00C896);
    opacity: 0.7;
}

@keyframes preloaderTextFade {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-wrap: balance;
}

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

ul {
    list-style: none;
}

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

/* Optimize images for performance */
img[loading="lazy"] {
    background: var(--surface);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.section-label::before {
    right: calc(100% + 12px);
}

.section-label::after {
    left: calc(100% + 12px);
    background: linear-gradient(90deg, transparent, var(--primary));
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: color var(--duration) var(--ease);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    transition: color var(--duration) var(--ease);
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-pink) 50%, var(--accent) 100%);
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    transform-origin: left;
    transform: scaleX(0);
    will-change: transform;
}

/* ==========================================
   NAVIGATION
   ========================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--border);
    transition: padding var(--duration) var(--ease), background-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    contain: layout style;
}

nav.scrolled {
    padding: 0.6rem 0;
    background: var(--nav-bg-scroll);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s var(--ease);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    transition: color var(--duration) var(--ease);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s var(--ease);
    position: relative;
    padding: 4px 0;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    transition: width 0.3s var(--ease);
    border-radius: 1px;
}

.nav-links a:not(.cta-button):hover::after,
.nav-links a:not(.cta-button).active::after {
    width: 100%;
}

.nav-links a:not(.cta-button):hover,
.nav-links a:not(.cta-button).active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary, .btn-secondary, .cta-button, .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary, .cta-button, .submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 200, 150, 0.25);
}

.btn-primary::before, .cta-button::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s var(--ease);
}

.btn-primary:hover::before, .cta-button:hover::before, .submit-btn:hover::before {
    left: 100%;
}

.btn-primary:hover, .cta-button:hover, .submit-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(0, 200, 150, 0.4);
}

.btn-primary:active, .cta-button:active, .submit-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(255, 255, 255, 0.25);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

.btn-primary svg, .btn-secondary svg, .cta-button svg, .submit-btn svg {
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg, .cta-button:hover svg, .submit-btn:hover svg {
    transform: translateX(3px);
}

.btn-secondary:hover svg {
    transform: translateX(3px);
}

.cta-button {
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-size: 0.85rem;
    gap: 0;
}

.cta-button svg {
    flex-shrink: 0;
}

/* Contact Dropdown */
.nav-contact-dropdown {
    position: relative;
}

.nav-contact-dropdown .cta-button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-arrow {
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.nav-contact-dropdown .cta-button[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.contact-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s var(--ease);
    z-index: 1000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 200, 150, 0.1);
    backdrop-filter: blur(20px);
}

.contact-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(0, 200, 150, 0.1);
    color: var(--primary);
    transform: translateX(2px);
}

.dropdown-item svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s var(--ease);
}

.dropdown-item:hover svg {
    opacity: 1;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(160deg, #0A2540 0%, #0F2F4F 35%, #0D3B5F 65%, #0A2540 100%);
    color: white;
    padding: 140px 2rem 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.12) 0%, transparent 65%);
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
    will-change: transform;
    contain: strict;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    will-change: transform;
    contain: strict;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: 10%;
    left: 5%;
    animation: float 25s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-pink), transparent 70%);
    top: 50%;
    right: 10%;
    animation: float 20s infinite ease-in-out;
    animation-delay: 3s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    bottom: 10%;
    left: 15%;
    animation: float 30s infinite ease-in-out;
    animation-delay: 6s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    will-change: box-shadow, opacity;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 200, 150, 0); }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    border: 2px solid #0A2540;
    margin-left: -10px;
}

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

.trust-avatar:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-pink), #dc2743);
}

.trust-avatar:nth-child(3) {
    background: linear-gradient(135deg, var(--accent), #e08c00);
}

.trust-avatar-count {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.trust-text strong {
    color: white;
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Founder Card */
.founder-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: founderAppear 1s ease-out both 0.3s;
}

/* Animated ring behind photo */
.founder-ring {
    position: absolute;
    width: 300px;
    height: 360px;
    top: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--accent-pink);
    animation: founderRingSpin 4s linear infinite;
    will-change: transform;
    contain: strict;
}

.founder-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: var(--accent);
    border-left-color: var(--primary-light);
    animation: founderRingSpin 6s linear reverse infinite;
}

.founder-ring-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.12) 0%, transparent 70%);
    animation: founderGlowPulse 3s ease-in-out infinite;
    will-change: transform, opacity;
    contain: strict;
}

/* Photo */
.founder-photo {
    position: relative;
    width: 280px;
    height: 340px;
    border-radius: 140px;
    overflow: hidden;
    z-index: 2;
    border: 3px solid rgba(0, 200, 150, 0.3);
    background: var(--bg-light);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 200, 150, 0.1),
        inset 0 -40px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: brightness(1.1);
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.founder-card:hover .founder-photo {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 200, 150, 0.2),
        inset 0 -40px 40px rgba(0, 0, 0, 0.3);
}

.founder-card:hover .founder-photo img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Floating particles */
.founder-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.founder-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: founderParticle 4s ease-in-out infinite;
    will-change: transform, opacity;
}

.founder-particles span:nth-child(1) { top: 5%; left: 15%; animation-delay: 0s; background: var(--primary); }
.founder-particles span:nth-child(2) { top: 15%; right: 10%; animation-delay: 0.7s; background: var(--accent); width: 4px; height: 4px; }
.founder-particles span:nth-child(3) { bottom: 25%; left: 5%; animation-delay: 1.4s; background: var(--accent-pink); width: 5px; height: 5px; }
.founder-particles span:nth-child(4) { bottom: 10%; right: 15%; animation-delay: 2.1s; background: var(--primary-light); }
.founder-particles span:nth-child(5) { top: 40%; left: 0%; animation-delay: 2.8s; background: var(--accent); width: 3px; height: 3px; }
.founder-particles span:nth-child(6) { top: 35%; right: 2%; animation-delay: 3.5s; background: var(--primary); width: 5px; height: 5px; }

/* Text */
.founder-text {
    text-align: center;
    margin-top: 1.5rem;
    z-index: 2;
}

.founder-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: founderTextSlide 0.6s ease-out both 1s;
}

.founder-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: founderTextSlide 0.6s ease-out both 1.15s;
}

/* Animations */
@keyframes founderAppear {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes founderRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes founderGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes founderParticle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.8; transform: translateY(-10px) scale(1); }
    80% { opacity: 0.4; transform: translateY(-25px) scale(0.6); }
}

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


/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 100px 2rem;
    background: var(--bg-light);
    transition: background-color var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 4%, transparent), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-pink) 4%, transparent), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem 2rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

/* Top gradient bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-pink) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

/* Background glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, color-mix(in srgb, var(--primary) 6%, transparent), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 40px color-mix(in srgb, var(--primary) 8%, transparent);
    border-color: var(--border-hover);
}

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

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

.service-card:active {
    transform: translateY(-4px);
    transition-duration: 0.1s;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Popular card variant */
.service-card--popular {
    border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}

.service-card--popular::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--primary), var(--accent-pink), var(--accent));
}

/* Service number */
.service-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--primary) 8%, transparent);
    line-height: 1;
    transition: color 0.5s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .service-number {
    color: color-mix(in srgb, var(--primary) 15%, transparent);
}

/* Popular badge */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.service-icon {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), color-mix(in srgb, var(--accent-pink) 6%, transparent));
    border-radius: 16px;
    transition: all 0.5s var(--ease);
    color: var(--primary);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    transition: transform 0.5s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(0, 200, 150, 0.3);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: var(--secondary);
    transition: color 0.3s var(--ease);
    font-weight: 700;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.92rem;
}

.service-features {
    list-style: none;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.45rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.88rem;
    transition: color var(--duration) var(--ease);
}

.service-card:hover .service-features li {
    color: var(--secondary);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
}

.service-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-55%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
}

/* Service card CTA link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.service-link svg {
    transition: transform 0.3s var(--ease);
}

.service-link:hover {
    color: var(--primary-light);
    gap: 0.75rem;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Services bottom CTA */
.services-cta {
    text-align: center;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.services-cta-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.25);
}

.services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 200, 150, 0.35);
}

.services-cta-btn svg {
    transition: transform 0.3s var(--ease);
}

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

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

/* ==========================================
   TEAM SECTION
   ========================================== */
.team {
    padding: 100px 2rem;
    background: var(--white);
    transition: background-color var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 5%, transparent), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-pink) 5%, transparent), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.team-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 40px color-mix(in srgb, var(--primary) 8%, transparent);
    border-color: var(--border-hover);
}

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

.team-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.team-card:hover .team-photo::before {
    opacity: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    position: relative;
    z-index: 1;
    border: 4px solid var(--surface);
    transition: transform 0.5s var(--ease);
}

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

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 4px solid var(--surface);
    transition: transform 0.5s var(--ease);
}

.team-photo-placeholder span {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.team-card:hover .team-photo-placeholder {
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    transition: color 0.3s var(--ease);
}

.team-card:hover .team-info h3 {
    color: var(--primary);
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 200, 150, 0.3);
}

/* Team responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-photo-placeholder span {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem 1.5rem;
    }

    .service-number {
        font-size: 2.5rem;
    }
}

/* ==========================================
   PORTFOLIO SECTION - FAN CARDS
   ========================================== */
.portfolio {
    padding: 100px 2rem 80px;
    background: var(--white);
    transition: background-color var(--duration) var(--ease);
    overflow: hidden;
}

/* Filter Tabs */
.portfolio-filters {
    max-width: var(--container);
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.portfolio-filter-btn {
    padding: 0.6rem 1.4rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-filter-btn:hover {
    color: var(--primary-light);
    border-color: var(--border-hover);
    background: rgba(0, 200, 150, 0.08);
}

.portfolio-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.3);
}

/* Fan Card Container */
.portfolio-fan {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Individual Fan Card */
.fan-card {
    position: absolute;
    width: 300px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform-origin: center bottom;
    transform: translateX(var(--tx)) translateY(var(--ty)) rotate(var(--rotation)) scale(var(--scale));
    z-index: var(--z);
    opacity: var(--opacity);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.fan-card:hover {
    filter: brightness(1.05);
}

.fan-card--active {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 200, 150, 0.1);
}

.fan-card--active:hover {
    transform: translateX(var(--tx)) translateY(calc(var(--ty) - 8px)) rotate(var(--rotation)) scale(calc(var(--scale) + 0.02));
}

.fan-card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.fan-card-video-container {
    width: 100%;
    height: 100%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fan-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fan-card-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fan-card-video-placeholder svg {
    opacity: 0.5;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Navigation */
.portfolio-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.portfolio-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.3);
}

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

.portfolio-counter {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    min-width: 60px;
    text-align: center;
}

/* Project Info */
.portfolio-info {
    text-align: center;
    margin-top: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-info-category {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), color-mix(in srgb, var(--accent-pink) 8%, transparent));
    border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.portfolio-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    transition: color 0.3s var(--ease);
}

.portfolio-info-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Portfolio responsive */
@media (max-width: 1024px) {
    .portfolio-fan {
        height: 420px;
    }

    .fan-card {
        width: 260px;
        height: 360px;
    }
}

@media (max-width: 640px) {
    .portfolio-fan {
        height: 360px;
    }

    .fan-card {
        width: 220px;
        height: 300px;
        border-radius: 16px;
    }

    .portfolio-info-title {
        font-size: 1.25rem;
    }

    .portfolio-filters {
        gap: 0.4rem;
    }

    .portfolio-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
    padding: 100px 2rem;
    background: linear-gradient(180deg, #0A1628 0%, #0F1F38 50%, #0A1628 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process .section-header {
    position: relative;
    z-index: 1;
}

.process .section-label {
    color: var(--primary);
}

.process .section-title {
    color: white;
}

.process .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.process-steps {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 1rem 1rem 2rem;
    transition: transform 0.5s var(--ease);
    position: relative;
}

.process-step:hover {
    transform: translateY(-6px);
}

/* Step header: icon circle + connector line */
.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.75rem;
    height: 80px;
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
    transition: border-color 0.5s var(--ease), background-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
    flex-shrink: 0;
}

.step-icon {
    display: flex;
    color: var(--primary);
    transition: color 0.4s var(--ease);
}

.step-num {
    position: absolute;
    bottom: -6px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid #0F1F38;
    box-shadow: 0 4px 12px rgba(0, 200, 150, 0.4);
}

.process-step:hover .step-number {
    border-color: var(--primary);
    background: rgba(0, 200, 150, 0.08);
    box-shadow: 0 0 0 8px rgba(0, 200, 150, 0.06), 0 12px 32px rgba(0, 200, 150, 0.15);
}

.process-step:hover .step-icon {
    transform: scale(1.15);
}

/* Connector line between steps */
.step-connector {
    position: absolute;
    top: 50%;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
    border-radius: 1px;
}

.step-connector-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), rgba(0, 200, 150, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s var(--ease);
}

.process-step:hover .step-connector-fill,
.process-step.aos-animate .step-connector-fill {
    transform: scaleX(1);
}

/* Step content */
.step-content {
    position: relative;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: white;
    transition: color 0.3s var(--ease);
}

.process-step:hover h3 {
    color: var(--primary);
}

.process-step p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.65;
    transition: color 0.3s var(--ease);
}

.process-step:hover p {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.instagram-section {
    padding: 100px 2rem;
    background: var(--white);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.instagram-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ig-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.ig-glow-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743);
    top: -150px;
    right: -100px;
}

.ig-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #cc2366, #bc1888);
    bottom: -100px;
    left: -80px;
}

.ig-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.instagram-container {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ig-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(240, 148, 51, 0.15), rgba(188, 24, 136, 0.15));
    border: 1px solid rgba(225, 48, 108, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e1306c;
    margin-bottom: 1.5rem;
}

.ig-badge svg {
    color: #e1306c;
}

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

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

/* Instagram Showcase */
.instagram-showcase {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Profile Card */
.ig-profile-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
}

.ig-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ig-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    padding: 3px;
}

.ig-avatar > svg {
    background: var(--surface);
    border-radius: 50%;
    padding: 8px;
    width: 100%;
    height: 100%;
    color: var(--primary);
}

.ig-profile-info {
    flex: 1;
    min-width: 0;
}

.ig-profile-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ig-profile-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.ig-follow-btn {
    padding: 7px 20px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

/* Stats */
.ig-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

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

.ig-stat-number {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
}

.ig-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

.ig-bio {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Posts Grid */
.ig-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    border-radius: var(--radius);
    overflow: hidden;
}

.ig-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.ig-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.ig-post:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post:hover img {
    transform: scale(1.08);
}

.ig-post-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.ig-post-likes svg {
    flex-shrink: 0;
}

/* CTA */
.ig-cta {
    text-align: center;
    margin-top: 3rem;
}

.ig-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 14px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.25);
    position: relative;
    overflow: hidden;
}

.ig-cta-button::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.6s var(--ease);
}

.ig-cta-button:hover::before {
    left: 100%;
}

.ig-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 48px rgba(225, 48, 108, 0.4);
}

.ig-cta-button:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.1s;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 100px 2rem;
    background: var(--bg-light);
    transition: background-color var(--duration) var(--ease);
}

.testimonials-slider {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.testimonial-card:hover .testimonial-quote {
    opacity: 0.5;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 6px 18px rgba(0, 200, 150, 0.35);
}

.testimonial-quote {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 0.75rem;
    left: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color var(--duration) var(--ease);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 200, 150, 0.25);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--secondary);
    transition: color var(--duration) var(--ease);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: color var(--duration) var(--ease);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 100px 2rem;
    background: var(--white);
    transition: background-color var(--duration) var(--ease);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: color var(--duration) var(--ease);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    transition: color var(--duration) var(--ease);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s var(--ease);
}

.contact-item:hover {
    transform: translateX(6px);
}

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 18px rgba(0, 200, 150, 0.25);
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 28px rgba(0, 200, 150, 0.35);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
}

.contact-item h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    transition: color var(--duration) var(--ease);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color var(--duration) var(--ease);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 46px;
    height: 46px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 24px rgba(0, 200, 150, 0.35);
}

.social-link:active {
    transform: translateY(-2px) scale(1.05);
    transition-duration: 0.1s;
}

.social-link svg {
    transition: transform 0.3s var(--ease);
}

.social-link:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.contact-form {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease);
}

.contact-form:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
    transition: color var(--duration) var(--ease);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    background: var(--white);
    color: var(--text-dark);
    appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}

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

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

/* Form validation styles */
.form-group input:user-invalid,
.form-group textarea:user-invalid {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-pink) 12%, transparent);
}

.form-group input:user-valid,
.form-group textarea:user-valid {
    border-color: var(--primary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #050A10;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    width: 42px;
    height: 42px;
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0, 200, 150, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 200, 150, 0.45);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
    transition-duration: 0.1s;
}

.back-to-top svg {
    transition: transform 0.3s var(--ease);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* ==========================================
   SIGNATURE OVERLAY (scroll to top)
   ========================================== */
.signature-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 19, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.signature-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.signature-overlay.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease 0.3s, visibility 0.6s ease 0.3s;
}

.signature-svg {
    width: min(80vw, 500px);
    height: auto;
    color: var(--primary, #00C896);
    filter: drop-shadow(0 0 20px rgba(0, 200, 150, 0.3));
}

/* Handwriting draw animation */
.signature-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.signature-underline {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.signature-overlay.active .signature-path {
    animation: signatureDraw 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.signature-overlay.active .signature-path:nth-child(2) {
    animation-delay: 0.3s;
}

.signature-overlay.active .signature-path:nth-child(3) {
    animation-delay: 0.7s;
}

.signature-overlay.active .signature-path:nth-child(4) {
    animation-delay: 1.0s;
}

.signature-overlay.active .signature-underline {
    animation: signatureDraw 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: 1.6s;
}

@keyframes signatureDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Glow pulse after signature is drawn */
.signature-overlay.active .signature-svg {
    animation: signatureGlow 2s ease-in-out 2s 1;
}

@keyframes signatureGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 200, 150, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(0, 200, 150, 0.6));
    }
}

@media (max-width: 768px) {
    .signature-svg {
        width: 90vw;
    }
}

/* ==========================================
   NOTIFICATION
   ========================================== */
.notification {
    font-family: 'Inter', system-ui, sans-serif;
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
    font-family: 'Inter', system-ui, sans-serif;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    25% {
        transform: translate3d(30px, -40px, 0) scale(1.05);
    }
    50% {
        transform: translate3d(-20px, -80px, 0) scale(0.95);
    }
    75% {
        transform: translate3d(40px, -40px, 0) scale(1.02);
    }
}

.rotate-slow {
    animation: rotate 25s linear infinite;
}

.rotate-reverse {
    animation: rotate-reverse 18s linear infinite;
}

.rotate-fast {
    animation: rotate 12s linear infinite;
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

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

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ==========================================
   FOCUS-VISIBLE (Accessibility)
   ========================================== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 8px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* ==========================================
   CUSTOM SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

::selection {
    background: color-mix(in srgb, var(--primary) 30%, transparent);
    color: var(--text-dark);
}

/* ==========================================
   PERFORMANCE - content-visibility
   ========================================== */
.services,
.portfolio,
.process,
.instagram-section,
.testimonials,
.clients-section,
.team,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Isolate card repaints from parent layout + GPU compositing */
.service-card,
.team-card,
.testimonial-card,
.fan-card,
.process-step,
.client-logo {
    contain: layout style;
    backface-visibility: hidden;
}

/* ==========================================
   VIEW TRANSITIONS
   ========================================== */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.3s;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .founder-photo {
        width: 210px;
        height: 260px;
        border-radius: 105px;
    }

    .founder-ring {
        width: 230px;
        height: 280px;
    }

    .founder-name {
        font-size: 1.3rem;
    }

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

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

    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--ease);
        gap: 0.5rem;
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        border-radius: 12px;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover {
        background: color-mix(in srgb, var(--primary) 8%, transparent);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .contact-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        display: none;
        flex-direction: column;
        gap: 4px;
        min-width: auto;
        backdrop-filter: none;
    }

    .contact-dropdown.active {
        display: flex;
    }

    .dropdown-item {
        justify-content: center;
        background: var(--surface);
        border-radius: 10px;
    }

    .hero {
        padding: 120px 1.5rem 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 500px;
    }

    .step-header {
        flex-direction: column;
        height: auto;
        margin-bottom: 1rem;
    }

    .step-connector {
        position: relative;
        top: auto;
        left: auto;
        width: 2px;
        height: 40px;
        transform: none;
        margin: 8px auto;
    }

    .step-connector-fill {
        transform: scaleY(0);
        transform-origin: top;
    }

    .process-step:hover .step-connector-fill,
    .process-step.aos-animate .step-connector-fill {
        transform: scaleY(1);
    }

    .process-step {
        padding: 1rem 1rem 0.5rem;
    }

    .instagram-showcase {
        grid-template-columns: 1fr;
    }

    .ig-profile-card {
        position: static;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials {
        padding: 60px 1rem;
    }

    .testimonials-slider {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-card {
        width: 100%;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.7;
        padding-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-quote {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .section-label::before,
    .section-label::after {
        display: none;
    }

    /* Contact section mobile */
    .contact {
        padding: 60px 1rem;
    }

    .contact-container {
        gap: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item p {
        font-size: 0.8rem;
        word-break: break-all;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    /* Contact mobile small */
    .contact {
        padding: 50px 0.75rem;
    }

    .contact-container {
        gap: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info > p {
        font-size: 0.9rem;
    }

    .contact-item {
        gap: 0.75rem;
    }

    .contact-item p {
        font-size: 0.75rem;
        word-break: break-all;
        overflow-wrap: anywhere;
    }

    .contact-item h4 {
        font-size: 0.85rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }

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

    .contact-form {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem 0.85rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
}

/* ==========================================
   MOBILE PERFORMANCE: disable heavy animations
   ========================================== */
@media (max-width: 768px) {
    /* Kill floating shapes & glow - saves GPU + battery */
    .floating-shape,
    .hero-glow {
        animation: none !important;
        opacity: 0.04;
    }

    .hero-glow {
        filter: blur(60px);
        width: 300px;
        height: 300px;
    }

    /* Simplify founder card - remove ring rotation & particles */
    .founder-ring {
        animation: none !important;
        border-color: rgba(0, 200, 150, 0.15);
    }

    .founder-ring::before {
        animation: none !important;
    }

    .founder-ring-glow {
        animation: none !important;
        opacity: 0.3;
    }

    .founder-particles span {
        animation: none !important;
        display: none;
    }

    /* Simplify grid overlay on mobile */
    .grid-overlay {
        display: none;
    }

    /* Reduce preloader glow rotation */
    .preloader-circle::before {
        animation-duration: 6s;
    }

    /* Disable will-change on mobile to free GPU memory */
    .hero-glow,
    .floating-shape,
    .founder-ring {
        will-change: auto;
        contain: layout;
    }

    /* Slower marquee to reduce repaints */
    .clients-track {
        animation-duration: 35s;
    }

    /* Reduce badge-dot pulse */
    .badge-dot {
        animation: none !important;
        opacity: 1;
        box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.2);
    }
}

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

    .floating-shape,
    .founder-ring,
    .founder-ring::before,
    .founder-ring-glow,
    .founder-particles span,
    .hero-glow,
    .badge-dot {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   SKELETON LOADING
   ========================================== */
.portfolio-skeleton {
    position: absolute;
    inset: 0;
    background: var(--bg-secondary, #1a1f25);
    border-radius: inherit;
    z-index: 1;
    overflow: hidden;
}

.portfolio-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 100%
    );
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

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

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    padding: 60px 2rem;
    background: linear-gradient(135deg, #0A1628 0%, #0F2F4F 50%, #0A1628 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 150, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 150, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.stats-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 200, 150, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }
}

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

/* ==========================================
   CLIENTS MARQUEE SECTION
   ========================================== */
.clients-section {
    padding: 80px 2rem 60px;
    background: var(--white);
    overflow: hidden;
}

.clients-marquee {
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.clients-track {
    display: flex;
    gap: 1.5rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

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

.client-logo {
    flex-shrink: 0;
    padding: 1.25rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s var(--ease);
    min-width: 200px;
}

.client-logo:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 200, 150, 0.12);
}

.client-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.1), rgba(0, 200, 150, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.client-logo:hover .client-icon {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(0, 200, 150, 0.1));
    transform: scale(1.05);
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}

.client-type {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease);
}

.client-logo:hover .client-name {
    color: var(--primary);
}

.client-logo:hover .client-type {
    opacity: 1;
}

/* Clients count banner */
.clients-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: var(--container);
    margin: 2.5rem auto 0;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.08), rgba(0, 200, 150, 0.03));
    border: 1px solid rgba(0, 200, 150, 0.15);
    border-radius: 16px;
}

.clients-count-number {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.clients-count-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 50px 1rem 40px;
    }

    .clients-track {
        gap: 1rem;
    }

    .client-logo {
        padding: 1rem 1.25rem;
        min-width: 170px;
        gap: 10px;
    }

    .client-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .client-icon svg {
        width: 18px;
        height: 18px;
    }

    .client-name {
        font-size: 0.9rem;
    }

    .clients-count {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }

    .clients-count-number {
        font-size: 1.5rem;
    }

    .clients-count-text {
        font-size: 0.85rem;
    }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: scale(0) translateY(20px);
    cursor: pointer;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   PORTFOLIO LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 85vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-media {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.5s var(--ease);
}

.lightbox.active .lightbox-media {
    transform: scale(1);
}

.lightbox-info {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 600px;
}

.lightbox-category {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 200, 150, 0.15);
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.lightbox-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================
   ACCESSIBILITY - Focus Visible
   ========================================== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.cta-button:focus-visible,
.submit-btn:focus-visible,
.services-cta-btn:focus-visible {
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.3);
}

.social-link:focus-visible,
.dropdown-item:focus-visible {
    outline-offset: 2px;
}

/* ==========================================
   ACCESSIBILITY - Reduced Motion
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .preloader-logo-center,
    .preloader-circle::before,
    .founder-ring,
    .founder-ring::before,
    .founder-ring-glow,
    .founder-particles span,
    .floating-shape,
    .hero-glow,
    .badge-dot,
    .clients-track {
        animation: none !important;
    }

    .preloader-circle-fill {
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }
}

/* ==========================================
   SUBMIT BUTTON - Disabled State
   ========================================== */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.submit-btn:disabled::before {
    display: none;
}

/* ==========================================
   UX - Section Highlight on Nav Click
   ========================================== */
@keyframes sectionHighlight {
    0% { box-shadow: inset 0 0 0 0 rgba(0, 200, 150, 0); }
    30% { box-shadow: inset 0 0 0 3px rgba(0, 200, 150, 0.15); }
    100% { box-shadow: inset 0 0 0 0 rgba(0, 200, 150, 0); }
}

.section-highlight {
    animation: sectionHighlight 1.5s ease-out;
}

/* ==========================================
   UX - Form Field Feedback
   ========================================== */
.form-group {
    position: relative;
}

.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
    border-color: var(--primary);
}

.form-group input:not(:placeholder-shown):valid ~ .field-check,
.form-group textarea:not(:placeholder-shown):valid ~ .field-check {
    opacity: 1;
}

.field-check {
    position: absolute;
    right: 14px;
    top: 44px;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}

/* ==========================================
   UX - WhatsApp Pulse Animation
   ========================================== */
.whatsapp-float.visible::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Auto-hide pulse after 8s to avoid annoyance */
.whatsapp-float.pulse-done::after {
    display: none;
}

/* ==========================================
   UX - Mobile Swipe Indicator (Portfolio)
   ========================================== */
.swipe-hint {
    display: none;
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 1rem;
    gap: 8px;
    align-items: center;
    justify-content: center;
    animation: swipeHintFade 3s ease-out forwards;
}

.swipe-hint svg {
    animation: swipeHintSlide 1.5s ease-in-out infinite;
}

@keyframes swipeHintSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

@keyframes swipeHintFade {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

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

/* ==========================================
   UX - Skeleton Loading
   ========================================== */
.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, var(--surface-hover) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius);
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================
   UX - Testimonial Card hover glow
   ========================================== */
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(0, 200, 150, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}

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

/* ==========================================
   UX - Service Card Ripple
   ========================================== */
.service-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 200, 150, 0.15);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes rippleEffect {
    to { transform: scale(4); opacity: 0; }
}
