/* ===== ROOT VARIABLES ===== */
html {
    background-color: #0B0F14;
}

:root {
    --bg-primary: #0B0F14;
    --bg-secondary: #12171e;
    --bg-card: #161c25;
    --bg-elevated: #1a222d;

    --accent-primary: #39ecfe;
    --accent-secondary: #00c6ff;
    --accent-gradient: linear-gradient(135deg, #39ecfe 0%, #00c6ff 100%);

    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(57, 236, 254, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.bg-gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: #6366f1;
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.navbar {
    position: fixed;
    top: 12px;
    left: 24px;
    right: 24px;
    z-index: 1000;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    background: rgba(11, 15, 20, 0.65);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(57, 236, 254, 0.12);
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(57, 236, 254, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: navSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(57, 236, 254, 0.5), transparent);
    border-radius: var(--radius-full);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    right: 10%;
    height: 8px;
    background: linear-gradient(180deg, rgba(57, 236, 254, 0.06), transparent);
    pointer-events: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.navbar:hover {
    border-color: rgba(57, 236, 254, 0.22);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(57, 236, 254, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition-normal);
}

.logo:hover {
    filter: drop-shadow(0 0 8px rgba(57, 236, 254, 0.4));
    transform: scale(1.03);
}

.logo-img {
    height: 36px;
    width: auto;
    transition: var(--transition-normal);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -1px;
}

.logo-text {
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

.search-bar {
    flex: 1;
    max-width: 680px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    padding: 10px 16px 10px 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-normal);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(57, 236, 254, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-shortcut {
    position: absolute;
    right: 12px;
    padding: 4px 8px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    pointer-events: none;
}

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

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(57, 236, 254, 0.06);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

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

.nav-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-btn-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.nav-btn:hover .nav-btn-icon {
    background: rgba(57, 236, 254, 0.18);
    border-color: rgba(57, 236, 254, 0.35);
    box-shadow: 0 0 14px rgba(57, 236, 254, 0.2);
}

.nav-btn:hover .nav-btn-icon svg {
    filter: drop-shadow(0 0 4px rgba(57, 236, 254, 0.5));
}

.nav-home-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: var(--transition-normal);
}

.nav-btn:hover {
    background: rgba(57, 236, 254, 0.12);
    border-color: rgba(57, 236, 254, 0.35);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.12);
    transform: translateY(-1px);
}

.nav-btn:hover .nav-home-icon {
    filter: drop-shadow(0 0 6px rgba(57, 236, 254, 0.5));
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 16px rgba(57, 236, 254, 0.2);
    white-space: nowrap;
}

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

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(57, 236, 254, 0.35);
    filter: brightness(1.1);
}

.nav-cta:active {
    transform: scale(0.97);
}

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

.nav-profile svg {
    width: 20px;
    height: 20px;
}

.nav-profile:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 3px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    overflow: hidden;
}

.lang-toggle:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.15);
}

.lang-toggle .lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 0 12px rgba(57, 236, 254, 0.3);
}

.lang-toggle[data-lang="en"] .lang-slider {
    transform: translateX(100%);
}

.lang-toggle .lang-option {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    user-select: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.lang-toggle .lang-option.active {
    color: #fff;
}

.lang-toggle .lang-option .lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-toggle .lang-option .lang-code {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-toggle:active {
    transform: scale(0.97);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
}





.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(57, 236, 254, 0.3);
}

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

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* ===== CATEGORIES ===== */
.categories {
    position: relative;
    z-index: 1;
    padding: 0 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-tab svg {
    width: 16px;
    height: 16px;
}

.category-tab:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.category-tab.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.category-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-normal);
}

.pill:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.pill.active {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 0 24px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
}

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

a.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

a.service-card-link:hover {
    color: inherit;
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(57, 236, 254, 0.1);
    border: 1px solid rgba(57, 236, 254, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.hiw-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.hiw-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.15), rgba(57, 236, 254, 0.05));
    border: 2px solid rgba(57, 236, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.4s ease;
}

.hiw-step:hover .hiw-step-icon {
    transform: scale(1.1);
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(57, 236, 254, 0.2);
}

.hiw-step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-primary);
}

.hiw-step::before {
    content: attr(data-step);
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(24px);
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #0B0F14;
    z-index: 2;
}

.hiw-step-connector {
    display: none;
}

.hiw-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(33.33% / 2 + 40px);
    right: calc(33.33% / 2 + 40px);
    height: 2px;
    background: linear-gradient(90deg, rgba(57, 236, 254, 0.3), rgba(57, 236, 254, 0.1), rgba(57, 236, 254, 0.3));
    z-index: 0;
}

.hiw-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hiw-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hiw-steps::before {
        display: none;
    }
}

/* ===== WHY EYOTECH ===== */
.why-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s ease;
}

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

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-icon-speed {
    background: linear-gradient(135deg, rgba(255, 196, 46, 0.15), rgba(255, 196, 46, 0.05));
}

.why-icon-speed svg {
    stroke: #ffc42e;
}

.why-icon-allinone {
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.15), rgba(57, 236, 254, 0.05));
}

.why-icon-allinone svg {
    stroke: var(--accent-primary);
}

.why-icon-personal {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
}

.why-icon-personal svg {
    stroke: #8b5cf6;
}

.why-icon-hosting {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
}

.why-icon-hosting svg {
    stroke: #10b981;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.testimonial-featured {
    border-color: rgba(57, 236, 254, 0.3);
    background: linear-gradient(135deg, var(--bg-card), rgba(57, 236, 254, 0.03));
}

.testimonial-stars {
    color: #ffc42e;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #0B0F14;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
}

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

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

.card-preview {
    padding: 20px 20px 0;
}

.preview-mockup {
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:first-child {
    background: #ff6b6b;
}

.mockup-dots span:nth-child(2) {
    background: #ffd93d;
}

.mockup-dots span:last-child {
    background: #6bcb77;
}

.mockup-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-content {
    padding: 20px;
    min-height: 140px;
}

/* Video Editing Mockup */
.video-editing .mockup-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.timeline-track {
    height: 24px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.timeline-track.video {
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-primary) 30%, transparent 30%, transparent 35%, var(--accent-primary) 35%, var(--accent-primary) 70%, transparent 70%);
}

.timeline-track.audio {
    background: linear-gradient(90deg, #6366f1 0%, #6366f1 45%, transparent 45%, transparent 50%, #6366f1 50%, #6366f1 85%, transparent 85%);
}

.timeline-track.effects {
    background: linear-gradient(90deg, transparent 0%, transparent 20%, #10b981 20%, #10b981 40%, transparent 40%, transparent 60%, #10b981 60%, #10b981 90%, transparent 90%);
}

.preview-window {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    min-height: 60px;
}

.play-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    color: white;
}

.play-button svg {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

/* Discord Bot Mockup */
.bot-ui {
    display: flex;
    gap: 12px;
}

.bot-sidebar {
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 18px;
    overflow: hidden;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bot-menu-items span {
    width: 30px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 3px;
    opacity: 0.3;
}

.bot-menu-items span.active {
    background: var(--accent-primary);
    opacity: 1;
}

.bot-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bot-stats {
    display: flex;
    gap: 12px;
}

.bot-stat {
    flex: 1;
    padding: 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-txt {
    font-size: 10px;
    color: var(--text-muted);
}

.bot-chart {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    background-image: linear-gradient(135deg, transparent 40%, rgba(57, 236, 254, 0.1) 40%, rgba(57, 236, 254, 0.1) 60%, transparent 60%);
}

/* Telegram Mockup (Index Page Card) */
.tg-mockup-ui {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.tg-mock-msg {
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 10px;
    max-width: 80%;
    line-height: 1.4;
}

.tg-mock-bot {
    background: var(--bg-elevated);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.tg-mock-user {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: white;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.tg-mock-buttons {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.tg-mock-buttons span {
    padding: 3px 8px;
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 4px;
    font-size: 9px;
    color: #0088cc;
}



/* Coding Mockup */
.code-ui {
    padding: 8px 0 !important;
}

.code-lines {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    line-height: 1.8;
}

.code-line {
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.line-num {
    width: 24px;
    color: var(--text-muted);
    opacity: 0.5;
    margin-right: 12px;
}

.keyword {
    color: #c792ea;
}

.variable {
    color: var(--accent-primary);
}

.string {
    color: #c3e88d;
}

.indent {
    width: 24px;
}

.code-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--accent-primary);
    animation: blink 1s infinite;
    margin-left: 4px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Card Info */
.card-info {
    padding: 24px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.card-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #000;
}

.card-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
}

.card-btn {
    padding: 10px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

.card-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(57, 236, 254, 0.05) 50%, transparent 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ===== WHATSAPP CTA BUTTON ===== */
.btn-whatsapp {
    background: var(--bg-elevated);
    color: #25d366 !important;
    border: 1px solid rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
    color: #2ee872 !important;
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9998;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(37, 211, 102, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

.whatsapp-float svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(37, 211, 102, 0.15);
    color: #2ee872;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

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

/* Responsive */
@media (max-width: 400px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .footer-copy {
        width: auto;
        margin-top: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .search-bar {
        display: none;
    }

    .nav-btn span:not(svg) {
        display: none;
    }

    .nav-btn {
        padding: 10px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

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

    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-title,
.hero-subtitle,
.hero-cta,
.hero-stats {
    animation: fadeInUp 0.6s ease backwards;
}

.hero-subtitle {
    animation-delay: 0.1s;
}

.hero-cta {
    animation-delay: 0.2s;
}

.hero-stats {
    animation-delay: 0.3s;
}

.service-card {
    animation: fadeInUp 0.5s ease backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ===== ENHANCED SERVICE CARD EFFECTS ===== */

/* --- Shimmer sweep on card preview hover --- */
.card-preview {
    position: relative;
    overflow: hidden;
}

.card-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 55%,
            transparent 60%);
    transform: translateX(-120%);
    transition: none;
    z-index: 5;
    pointer-events: none;
}

.service-card:hover .card-preview::after {
    transform: translateX(120%);
    transition: transform 0.7s ease;
}

/* --- 3D tilt on hover --- */
.service-card {
    perspective: 800px;
}

.service-card:hover {
    transform: translateY(-4px) rotateX(1.5deg);
}

/* --- Accent glow line at top of preview mockup on hover --- */
.preview-mockup {
    position: relative;
}

.service-card:hover .preview-mockup {
    box-shadow: inset 0 1px 0 rgba(57, 236, 254, 0.4);
}

/* --- Video Editing Enhancements --- */
/* Glowing playhead on timeline tracks */
.timeline-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 2px;
    background: white;
    box-shadow: 0 0 8px rgba(57, 236, 254, 0.6), 0 0 20px rgba(57, 236, 254, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: playheadMove 3s ease-in-out infinite;
    z-index: 2;
}

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

@keyframes playheadMove {
    0% {
        left: 10%;
    }

    100% {
        left: 85%;
    }
}

/* Track inner shimmer */
.timeline-track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    z-index: 1;
}

/* Pulsing play button */
.play-button {
    position: relative;
}

.play-button::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(57, 236, 254, 0.3);
    animation: playPulse 2s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes playPulse {

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

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* --- Discord Bot Enhancements --- */
/* Live chart wave animation */
.bot-chart {
    position: relative;
    overflow: hidden;
}

.bot-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(57, 236, 254, 0.08));
    clip-path: polygon(0% 80%, 10% 60%, 20% 70%, 30% 40%, 40% 55%,
            50% 30%, 60% 45%, 70% 20%, 80% 35%, 90% 15%, 100% 25%,
            100% 100%, 0% 100%);
    transition: opacity 0.5s ease;
}

.bot-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    border-top: 2px solid rgba(57, 236, 254, 0.4);
    clip-path: polygon(0% 80%, 10% 60%, 20% 70%, 30% 40%, 40% 55%,
            50% 30%, 60% 45%, 70% 20%, 80% 35%, 90% 15%, 100% 25%);
    filter: drop-shadow(0 0 4px rgba(57, 236, 254, 0.3));
}

/* Stat number glow on hover */
.service-card:hover .stat-num {
    text-shadow: 0 0 10px rgba(57, 236, 254, 0.3);
}

/* Active indicator on sidebar */
.bot-menu-items span.active {
    position: relative;
}

.bot-menu-items span.active::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 6px var(--accent-primary);
}

/* --- Telegram Bot Enhancements --- */
/* Online status dot */
.telegram-bot .mockup-header::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.telegram-bot .mockup-header {
    position: relative;
}

/* Typing dots animation on hover */
.tg-mockup-ui::after {
    content: '';
    display: block;
    width: 36px;
    height: 12px;
    border-radius: 8px;
    background:
        radial-gradient(circle 2px at 6px 6px, rgba(0, 136, 204, 0.4) 100%, transparent 100%),
        radial-gradient(circle 2px at 18px 6px, rgba(0, 136, 204, 0.4) 100%, transparent 100%),
        radial-gradient(circle 2px at 30px 6px, rgba(0, 136, 204, 0.4) 100%, transparent 100%);
    animation: tgTyping 1.4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 2px;
}

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

@keyframes tgTyping {

    0%,
    100% {
        background:
            radial-gradient(circle 2px at 6px 6px, rgba(0, 136, 204, 0.2) 100%, transparent 100%),
            radial-gradient(circle 2px at 18px 6px, rgba(0, 136, 204, 0.5) 100%, transparent 100%),
            radial-gradient(circle 2px at 30px 6px, rgba(0, 136, 204, 0.2) 100%, transparent 100%);
    }

    33% {
        background:
            radial-gradient(circle 2px at 6px 6px, rgba(0, 136, 204, 0.6) 100%, transparent 100%),
            radial-gradient(circle 2px at 18px 6px, rgba(0, 136, 204, 0.2) 100%, transparent 100%),
            radial-gradient(circle 2px at 30px 6px, rgba(0, 136, 204, 0.4) 100%, transparent 100%);
    }

    66% {
        background:
            radial-gradient(circle 2px at 6px 6px, rgba(0, 136, 204, 0.2) 100%, transparent 100%),
            radial-gradient(circle 2px at 18px 6px, rgba(0, 136, 204, 0.2) 100%, transparent 100%),
            radial-gradient(circle 2px at 30px 6px, rgba(0, 136, 204, 0.6) 100%, transparent 100%);
    }
}

/* Hover glow on inline buttons */
.service-card:hover .tg-mock-buttons span {
    background: rgba(0, 136, 204, 0.25);
    box-shadow: 0 0 8px rgba(0, 136, 204, 0.15);
    transition: all 0.3s ease;
}

/* Checkmarks on user messages */
.tg-mock-user {
    position: relative;
}

.tg-mock-user::after {
    content: '✓✓';
    position: absolute;
    bottom: 1px;
    right: 6px;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -1px;
}

/* --- Design Card Enhancements --- */
/* (Uses inline styles — enhance via parent class) */
/* Subtle rotation of design icon on hover */
.service-card[data-category="design"] .mockup-content>div>div:first-child {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card[data-category="design"]:hover .mockup-content>div>div:first-child {
    transform: scale(1.1) rotate(10deg);
}

/* Color swatch pulse on hover */
.service-card[data-category="design"] .mockup-content>div>div:last-child>div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card[data-category="design"]:hover .mockup-content>div>div:last-child>div {
    box-shadow: 0 0 12px currentColor;
}

.service-card[data-category="design"]:hover .mockup-content>div>div:last-child>div:nth-child(1) {
    transform: translateY(-3px);
    transition-delay: 0s;
}

.service-card[data-category="design"]:hover .mockup-content>div>div:last-child>div:nth-child(2) {
    transform: translateY(-3px);
    transition-delay: 0.05s;
}

.service-card[data-category="design"]:hover .mockup-content>div>div:last-child>div:nth-child(3) {
    transform: translateY(-3px);
    transition-delay: 0.1s;
}

.service-card[data-category="design"]:hover .mockup-content>div>div:last-child>div:nth-child(4) {
    transform: translateY(-3px);
    transition-delay: 0.15s;
}

/* --- Code Editor Enhancements --- */
/* Active line highlight on hover */
.code-line {
    transition: background 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.service-card:hover .code-line:nth-child(2) {
    background: rgba(57, 236, 254, 0.05);
}

.service-card:hover .code-line:nth-child(2)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-primary);
    border-radius: 1px;
}

/* Glow on code cursor */
.code-cursor {
    box-shadow: 0 0 8px rgba(57, 236, 254, 0.4);
}

/* String value glow */
.service-card:hover .string {
    text-shadow: 0 0 8px rgba(195, 232, 141, 0.3);
}

/* --- Custom Orders Enhancements --- */
/* Progress indicator animation on checkmarks */
.service-card[data-category="custom"] .mockup-content div div:nth-child(4) span:last-child {
    transition: color 0.3s ease;
}

.service-card[data-category="custom"]:hover .mockup-content div div:nth-child(4) span:last-child {
    color: #a78bfa !important;
    filter: drop-shadow(0 0 4px rgba(167, 139, 250, 0.5));
}

/* Subtle background grid pattern for custom card */
.service-card[data-category="custom"] .preview-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

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

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
    letter-spacing: -1px;
    z-index: 2;
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loader-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    animation: progress 1.8s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    20% {
        width: 20%;
    }

    50% {
        width: 60%;
    }

    80% {
        width: 85%;
    }

    100% {
        width: 100%;
    }
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.lang-toggle::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.25), rgba(88, 101, 242, 0.25));
    box-shadow: 0 0 12px rgba(57, 236, 254, 0.2);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    left: 4px;
    top: 4px;
    z-index: 0;
}

.lang-toggle.en::before {
    transform: translateX(40px);
}

.lang-toggle:hover {
    border-color: rgba(57, 236, 254, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.08);
}

.lang-active,
.lang-inactive {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.lang-active {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.lang-inactive {
    filter: grayscale(0.4) brightness(0.7);
    opacity: 0.6;
}

.lang-inactive:hover {
    filter: grayscale(0) brightness(0.9);
    opacity: 0.85;
}

.lang-divider {
    display: none;
}

/* ===== LOGO IMAGES ===== */
.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

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

    50% {
        transform: translateY(-3px);
    }
}

.logo:hover .logo-img {
    animation: none;
    transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgba(57, 236, 254, 0.6));
}

.loader-logo {
    position: relative;
    width: 280px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo-img {
    width: 240px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(57, 236, 254, 0.3)) drop-shadow(0 0 20px rgba(57, 236, 254, 0.2)) drop-shadow(0 0 30px rgba(57, 236, 254, 0.1));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(57, 236, 254, 0.6)) drop-shadow(0 0 40px rgba(57, 236, 254, 0.4)) drop-shadow(0 0 60px rgba(57, 236, 254, 0.2));
        transform: scale(1.02);
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(57, 236, 254, 0.3)) drop-shadow(0 0 20px rgba(57, 236, 254, 0.2)) drop-shadow(0 0 30px rgba(57, 236, 254, 0.1));
        transform: scale(1);
    }
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo-img {
    filter: drop-shadow(0 0 8px rgba(57, 236, 254, 0.4));
}

/* ===== LIVE CHAT WIDGET ===== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(57, 236, 254, 0.3);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(57, 236, 254, 0.4);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    fill: #0B0F14;
}

.chat-toggle .chat-close {
    display: none;
}

.chat-widget.active .chat-toggle .chat-icon {
    display: none;
}

.chat-widget.active .chat-toggle .chat-close {
    display: block;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-widget.active .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border-bottom: 1px solid var(--border-color);
}

.chat-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.chat-header p {
    font-size: 13px;
    color: var(--text-secondary);
}

.chat-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-reset-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-reset-btn:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(57, 236, 254, 0.1);
}

.chat-reset-btn:hover svg {
    transform: rotate(-180deg);
    transition: transform 0.4s ease;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ca40;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.chat-message.user .chat-avatar {
    background: var(--bg-secondary);
}

.chat-bubble {
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.bot .chat-bubble {
    border-top-left-radius: 4px;
}

.chat-message.user .chat-bubble {
    background: var(--accent-primary);
    color: #0B0F14;
    border-top-right-radius: 4px;
}

.chat-input-area {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
}

.chat-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition-normal);
}

.chat-input:focus {
    border-color: var(--accent-primary);
}

.chat-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
}

.chat-send svg {
    width: 20px;
    height: 20px;
    fill: #0B0F14;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 48px);
        height: 70vh;
        right: -12px;
    }
}

.typing-dots {
    display: inline-flex;
    gap: 3px;
}

.typing-dots span {
    display: inline-block;
    font-size: 20px;
    font-weight: 800;
    animation: typing-bounce 1.4s infinite ease-in-out;
    color: var(--text-secondary);
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

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

    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* --- Chat Quick-Reply Buttons --- */
.chat-quick-replies {
    display: flex;
    gap: 6px;
    padding: 8px 16px;
    overflow-x: auto;
    border-top: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
}

.chat-quick-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    background: rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(57, 236, 254, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.chat-quick-btn:hover {
    background: rgba(57, 236, 254, 0.18);
    border-color: rgba(57, 236, 254, 0.4);
    transform: translateY(-1px);
}

/* --- Chat Unread Badge --- */
.chat-unread-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    animation: badge-pop 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

@keyframes badge-pop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

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

/* --- Chat Quick-Reply Button Icons --- */
.chat-quick-btn svg {
    vertical-align: middle;
    margin-right: 2px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.chat-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* --- Chat Email Fallback --- */
.chat-email-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.chat-email-input {
    flex: 1;
    padding: 8px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-email-input:focus {
    border-color: var(--accent-primary);
}

.chat-email-send {
    padding: 8px 14px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-sm);
    color: #0B0F14;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.chat-email-send:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* --- Smart links in chat bubbles --- */
.chat-bubble a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.chat-bubble a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.chat-message.user .chat-bubble a {
    color: #0B0F14;
    text-decoration: underline;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-modal {
    width: 90%;
    max-width: 600px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(57, 236, 254, 0.08);
    overflow: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: transform 0.2s ease;
}

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

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.search-modal-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.search-modal-header input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
}

.search-modal-header input::placeholder {
    color: var(--text-muted);
}

.search-modal-esc {
    padding: 4px 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--text-muted);
    font-family: inherit;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}

.search-category {
    padding: 8px 12px 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.15s ease;
    cursor: pointer;
}

.search-result-item:hover,
.search-result-item.selected {
    background: rgba(57, 236, 254, 0.06);
}

.search-result-item.selected {
    outline: 1px solid rgba(57, 236, 254, 0.2);
}

.search-result-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(57, 236, 254, 0.15);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: var(--accent-primary);
}

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

.search-result-text {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.search-result-title mark {
    background: rgba(57, 236, 254, 0.2);
    color: var(--accent-primary);
    border-radius: 2px;
    padding: 0 2px;
}

.search-result-desc {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-desc mark {
    background: rgba(57, 236, 254, 0.15);
    color: var(--accent-primary);
    border-radius: 2px;
    padding: 0 2px;
}

.search-result-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.search-result-item:hover .search-result-arrow,
.search-result-item.selected .search-result-arrow {
    opacity: 1;
}

.search-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.search-empty-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.search-empty p {
    font-size: 14px;
}

.search-footer {
    display: flex;
    gap: 16px;
    padding: 10px 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

.search-footer kbd {
    display: inline-block;
    padding: 2px 6px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 10px;
    font-family: inherit;
    margin-right: 4px;
}

@media (max-width: 640px) {
    .search-overlay {
        padding-top: 10vh;
    }

    .search-modal {
        width: 95%;
    }

    .search-footer {
        display: none;
    }
}

/* Search bar clickable cursor */
.search-bar {
    cursor: pointer;
}

.search-bar input {
    cursor: pointer;
}

/* ===== Cookie Consent Modal (DSGVO) ===== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cookie-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-overlay.visible .cookie-modal {
    transform: translateY(0) scale(1);
}

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

.cookie-modal-header svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.cookie-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

/* Categories */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 14px 16px;
    transition: border-color 0.2s;
}

.cookie-category:hover {
    border-color: var(--border-color);
}

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

.cookie-cat-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.cookie-cat-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-primary);
    background: rgba(57, 236, 254, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.cookie-cat-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 6px 0 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
    margin: 0;
}

.cookie-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cookie-toggle:hover .cookie-slider {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.cookie-toggle input:checked+.cookie-slider {
    background: rgba(57, 236, 254, 0.3);
    border-color: rgba(57, 236, 254, 0.5);
    box-shadow: 0 0 8px rgba(57, 236, 254, 0.2);
}

.cookie-toggle input:checked+.cookie-slider::before {
    transform: translateX(20px);
    background: var(--accent-primary);
    box-shadow: 0 0 6px rgba(57, 236, 254, 0.5);
}

.cookie-toggle.disabled .cookie-slider {
    cursor: not-allowed;
    background: rgba(57, 236, 254, 0.12);
    border-color: rgba(57, 236, 254, 0.15);
}

.cookie-toggle.disabled .cookie-slider::before {
    transform: translateX(20px);
    background: var(--accent-primary);
    opacity: 0.5;
    box-shadow: none;
}

/* Action Buttons */
.cookie-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-gradient);
    color: #0B0F14;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(57, 236, 254, 0.3);
}

.cookie-btn-save {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cookie-btn-save:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.cookie-privacy-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.cookie-privacy-link:hover {
    color: var(--accent-primary);
}

/* Mobile */
@media (max-width: 640px) {
    .cookie-modal {
        padding: 24px 20px;
        border-radius: 16px;
    }

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

    .cookie-btn {
        width: 100%;
    }
}

/* ===== HOMEPAGE TEMPLATES SHOWCASE ===== */
.templates-showcase {
    padding: 80px 40px 60px;
    position: relative;
    z-index: 1;
}

.home-templates-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .templates-showcase {
        padding: 60px 20px 40px;
    }

    .home-templates-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

/* ===== CART BADGE ===== */
.cart-nav-btn {
    position: relative;
}

/* Hide cart text on desktop, show only icon */
.cart-nav-btn>span {
    display: none;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid var(--bg-primary, #0a0a0f);
    z-index: 2;
    transition: transform 0.2s ease;
}

.cart-badge-pop {
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.35);
    }

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

/* ===== CART TOAST ===== */
.cart-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(20, 20, 35, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 380px;
}

.cart-toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.cart-toast-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cart-toast-text strong {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-toast-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.cart-toast-link {
    color: var(--primary, #8b5cf6);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
}

.cart-toast-link:hover {
    color: var(--primary-light, #a78bfa);
}

@media (max-width: 768px) {
    .cart-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* ===== SOCIAL LINKS ===== */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-primary, #39ecfe);
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.social-link svg {
    flex-shrink: 0;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 8px;
}

/* About Socials */
.about-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.about-socials .social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }

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

/* ===== Share Widget ===== */
.share-fab {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
}

.share-fab-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(57, 236, 254, 0.3);
    background: rgba(20, 20, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--accent-primary, #39ecfe);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(57, 236, 254, 0.1);
}

.share-fab-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent-primary, #39ecfe);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), 0 0 25px rgba(57, 236, 254, 0.2);
}

.share-fab-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.share-fab.open .share-fab-btn svg {
    transform: rotate(45deg);
}

.share-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.share-fab.open .share-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.share-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 35, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.share-option:nth-child(1) {
    transition-delay: 0.05s;
}

.share-option:nth-child(2) {
    transition-delay: 0.1s;
}

.share-option:nth-child(3) {
    transition-delay: 0.15s;
}

.share-option:nth-child(4) {
    transition-delay: 0.2s;
}

.share-option:hover {
    transform: scale(1.15);
    border-color: var(--accent-primary, #39ecfe);
    color: var(--accent-primary, #39ecfe);
    box-shadow: 0 0 15px rgba(57, 236, 254, 0.15);
}

.share-option svg {
    width: 18px;
    height: 18px;
}

.share-option .share-tooltip {
    position: absolute;
    right: 52px;
    background: rgba(20, 20, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.share-option:hover .share-tooltip {
    opacity: 1;
}

.share-option.copied {
    border-color: #4ade80;
    color: #4ade80;
}

.share-option.copied .share-tooltip {
    opacity: 1;
    color: #4ade80;
}

@media (max-width: 768px) {
    .share-fab {
        bottom: 80px;
        right: 16px;
    }

    .share-fab-btn {
        width: 44px;
        height: 44px;
    }

    .share-option {
        width: 38px;
        height: 38px;
    }

    .share-option .share-tooltip {
        display: none;
    }
}

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE RESPONSIVE (≤ 768px) ===== */
@media (max-width: 768px) {

    /* --- Hamburger visible --- */
    .nav-hamburger {
        display: flex;
    }

    /* --- Navbar --- */
    .navbar {
        left: 10px;
        right: 10px;
        top: 8px;
        padding: 8px 14px;
        border-radius: 16px;
    }

    .nav-container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo-img {
        height: 28px;
    }

    .search-bar {
        display: none;
    }

    /* --- Nav actions slide down --- */
    .nav-actions {
        display: none;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        order: 10;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 4px;
    }

    .nav-actions.mobile-open {
        display: flex;
    }

    .nav-btn {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: var(--radius-md);
        justify-content: flex-start;
        width: 100%;
    }

    .nav-btn span {
        display: inline !important;
    }

    .nav-cta {
        padding: 12px 18px;
        justify-content: center;
        border-radius: var(--radius-md);
        width: 100%;
    }

    .nav-profile {
        width: 100%;
        border-radius: var(--radius-md);
        height: auto;
        padding: 10px;
    }

    .lang-toggle {
        align-self: stretch;
        width: 100%;
        justify-content: center;
        border-radius: var(--radius-md);
        padding: 6px;
    }

    .lang-toggle .lang-option {
        flex: 1;
        justify-content: center;
        padding: 8px 12px;
    }

    /* Show cart text on mobile */
    .cart-nav-btn>span {
        display: inline !important;
    }

    /* Admin profile button styled like other nav items */
    .nav-profile {
        width: 100%;
        border-radius: var(--radius-md);
        height: auto;
        padding: 10px 14px;
        justify-content: center;
    }

    /* --- Hero --- */
    .hero-section,
    .hero-content {
        padding: 20px 16px;
        padding-top: 80px;
    }

    .hero-section h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .hero-section p,
    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-buttons a,
    .hero-buttons .hero-btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* --- Section headings --- */
    .section-label {
        font-size: 11px;
    }

    .section-title,
    h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* --- Service cards grid --- */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 8px;
    }

    .service-card {
        padding: 20px;
    }

    /* --- How it works --- */
    .hiw-section {
        padding: 40px 16px;
    }

    /* --- Why section --- */
    .why-section {
        padding: 40px 16px;
    }

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

    /* --- Testimonials --- */
    .testimonials-section {
        padding: 40px 16px;
    }

    /* --- CTA / Contact --- */
    .cta-section,
    .contact-section {
        padding: 40px 16px;
    }

    .cta-box {
        padding: 32px 20px;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 16px;
    }

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

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

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

    /* --- Templates page --- */
    .templates-hero {
        padding-top: 80px !important;
    }

    .template-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 8px;
    }

    .category-tabs,
    .pill-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding-bottom: 8px;
        justify-content: flex-start;
    }

    .category-tab,
    .pill-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 12px;
        padding: 8px 14px;
    }

    /* --- Order / Tracking page --- */
    .order-form,
    .tracking-card {
        margin: 80px 12px 24px;
        padding: 24px 16px;
    }

    /* --- Checkout --- */
    .checkout-container {
        padding: 80px 12px 24px;
    }

    .checkout-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- About page --- */
    .about-hero {
        padding: 80px 16px 40px;
    }

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

    .about-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Service detail pages --- */
    .detail-hero,
    .service-hero {
        padding: 80px 16px 40px;
    }

    .pricing-grid,
    .packages-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .pricing-card,
    .package-card {
        padding: 24px 16px;
    }

    /* --- Body top padding for fixed nav --- */
    body {
        padding-top: 0;
    }

    /* --- General spacing adjustments --- */
    section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container,
    .max-w-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ===== SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 24px !important;
    }

    .section-title,
    h2 {
        font-size: 20px !important;
    }

    .stat-card .stat-value,
    .stat-value {
        font-size: 28px;
    }

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

    .navbar {
        left: 6px;
        right: 6px;
        padding: 8px 10px;
    }
}

/* Consultation CTA Button */
.btn-consult {
    position: relative;
    transition: all .3s ease;
}

.btn-consult:hover {
    background: linear-gradient(135deg, rgba(57, 236, 254, .18), rgba(0, 198, 255, .12)) !important;
    border-color: rgba(57, 236, 254, .5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(57, 236, 254, .15);
}

.btn-consult-pulse {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 1px solid rgba(57, 236, 254, .4);
    animation: consultPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes consultPulse {

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

    50% {
        opacity: .6;
        transform: scale(1.03);
    }
}

/* ===== PAGE TRANSITIONS ===== */

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: 0.15s ease-out both vt-out;
}

::view-transition-new(root) {
    animation: 0.25s ease-in both vt-in;
}

@keyframes vt-out {
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@keyframes vt-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* ===== Extracted from inline styles ===== */
.btn-consult-styled {
    background: linear-gradient(135deg, rgba(57, 236, 254, .12), rgba(0, 198, 255, .06));
    border: 1px solid rgba(57, 236, 254, .35);
    color: #39ecfe;
    position: relative;
    overflow: hidden;
}

.btn-consult-styled svg {
    margin-right: 6px;
}

.section-header-spaced {
    margin-top: 40px;
    margin-bottom: 40px;
}

.preview-mockup-design {
    background: linear-gradient(135deg, #1a1025 0%, #2d1b4e 100%);
}

.preview-mockup-custom {
    background: linear-gradient(135deg, #1a1025 0%, #2d1040 100%);
}

.mockup-center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mockup-text-center {
    text-align: center;
}

.mockup-circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-color-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.mockup-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.mockup-dot-purple {
    background: #8b5cf6;
}

.mockup-dot-light-purple {
    background: #a78bfa;
}

.mockup-dot-lighter-purple {
    background: #c4b5fd;
}

.mockup-dot-pink {
    background: #ec4899;
}

.mockup-code-content {
    padding: 14px;
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.mockup-code-title {
    color: #a78bfa;
    font-weight: 700;
}

.mockup-tree-branch {
    color: rgba(255, 255, 255, 0.3);
}

.mockup-check {
    color: #22c55e;
}

/* ===== App Development Card Mockup ===== */
.preview-mockup-app {
    background: linear-gradient(135deg, #0a0614 0%, #1a0f2e 50%, #120a20 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.preview-mockup-app::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Phone Frame */
.app-phone {
    width: 130px;
    height: 200px;
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 24px;
    background: linear-gradient(180deg, #130d22 0%, #0d0818 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow:
        0 0 30px rgba(124, 58, 237, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-phone-notch {
    width: 50px;
    height: 6px;
    background: #1a1030;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-phone-camera {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a3e, #0e0a1a);
    border: 1px solid rgba(124, 58, 237, 0.35);
}

/* Status Bar */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 12px;
    font-size: 7px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.app-status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.app-signal,
.app-wifi,
.app-battery {
    display: block;
}

.app-signal {
    width: 8px;
    height: 5px;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.6) 25%, transparent 25%,
            transparent 30%, rgba(255, 255, 255, 0.6) 30%,
            rgba(255, 255, 255, 0.6) 50%, transparent 50%,
            transparent 55%, rgba(255, 255, 255, 0.6) 55%,
            rgba(255, 255, 255, 0.6) 75%, transparent 75%,
            transparent 80%, rgba(255, 255, 255, 0.4) 80%);
}

.app-wifi {
    width: 7px;
    height: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.app-battery {
    width: 10px;
    height: 5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5px;
    position: relative;
}

.app-battery::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: 60%;
    height: calc(100% - 2px);
    background: #22c55e;
    border-radius: 0.5px;
}

/* App Screen Content */
.app-mock-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 8px;
    overflow: hidden;
}

/* Hero Image */
.app-mock-hero-img {
    height: 50px;
    min-height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 40%, #ec4899 100%);
    position: relative;
    overflow: hidden;
}

.app-mock-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: appHeroShine 3s ease-in-out infinite;
}

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

    100% {
        background-position: -200% 0;
    }
}

.app-mock-hero-circle {
    position: absolute;
    bottom: -8px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

/* Story Circles */
.app-mock-stories {
    display: flex;
    gap: 7px;
    padding: 4px 0;
}

.app-story {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    position: relative;
    flex-shrink: 0;
}

.app-story::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #130d22;
}

/* Content Cards */
.app-mock-cards {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.app-content-card {
    display: flex;
    gap: 7px;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.app-card-img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    flex-shrink: 0;
}

.app-card-img.alt {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.app-card-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    flex: 1;
}

.app-line-long {
    height: 4px;
    width: 85%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}

.app-line-short {
    height: 4px;
    width: 55%;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
}

/* Bottom Nav (dot style) */
.app-mock-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.app-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.app-nav-dot.active {
    width: 18px;
    border-radius: 4px;
    background: #7c3aed;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Floating Action Button */
.app-mock-fab {
    position: absolute;
    bottom: 34px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.5), 0 0 16px rgba(124, 58, 237, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1;
}

.service-card:hover .app-mock-fab {
    transform: scale(1.2) rotate(90deg);
    box-shadow: 0 2px 14px rgba(124, 58, 237, 0.65), 0 0 24px rgba(124, 58, 237, 0.3);
}