:root {
    --bg-color: #030305;
    --text-color: #ffffff;
    --text-muted: #888899;
    --accent-1: #00f0ff;
    --accent-2: #8a2be2;
    --nav-width: 450px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(3, 3, 5, 0.6), rgba(3, 3, 5, 0.85)), url('rasm.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* --- Premium Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(3, 3, 5, 0.9);
}

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

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

/* Header & 3D Logo */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    pointer-events: none;
}

header > * {
    pointer-events: auto;
}

.logo-container {
    padding: 10px;
    display: flex;
    align-items: center;
}

.coder-logo {
    display: flex;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
}

.coder-logo:hover {
    transform: scale(1.05);
}

.coder-logo .bracket {
    color: var(--accent-1);
    opacity: 0.8;
}

.coder-logo .logo-name {
    margin: 0 8px;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.coder-logo .slash {
    color: var(--accent-2);
}

.coder-logo .blinking-cursor {
    color: var(--accent-1);
    margin-left: 2px;
    font-weight: 400;
    animation: blinkCursor 1s step-end infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Menu Button */
.menu-btn-container {
    position: relative;
    z-index: 200;
}

.menu-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.3);
    transform: scale(1.1);
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-btn.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-1);
}

.menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-btn.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-1);
}

/* Liquid Menu */
.liquid-menu-wrapper {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100vh;
    pointer-events: none;
    z-index: 150;
    display: flex;
    justify-content: flex-end;
}

.liquid-menu-bg {
    position: absolute;
    top: 0; right: calc(-1 * var(--nav-width) - 100px);
    width: calc(var(--nav-width) + 100px);
    height: 100vh;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    border-top-left-radius: 70%;
    border-bottom-left-radius: 70%;
    
    transition: right 0.8s cubic-bezier(0.7, 0, 0.1, 1.2),
                border-radius 0.8s cubic-bezier(0.7, 0, 0.1, 1.2),
                background 0.5s;
                
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.liquid-menu-wrapper.active {
    pointer-events: auto;
}

.liquid-menu-wrapper.active .liquid-menu-bg {
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: rgba(10, 10, 15, 0.85);
}

.liquid-menu-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.liquid-menu-wrapper.active .liquid-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.liquid-nav {
    position: relative;
    width: var(--nav-width);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 60px;
    z-index: 2;
}

.liquid-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.liquid-nav li {
    overflow: hidden;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(120%);
    opacity: 0;
    transition: 0.4s ease;
}

.nav-num {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent-1);
    opacity: 0.7;
    transition: 0.3s;
}

.liquid-menu-wrapper.active .nav-link {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.8s;
    transition-delay: calc(0.3s + (var(--i) * 0.1s));
}

.nav-link:hover {
    color: var(--accent-1);
    transform: translateX(20px) !important;
}

.nav-link:hover .nav-num {
    transform: translateY(-10px);
    opacity: 1;
}

.menu-decorations {
    position: absolute;
    top: 0; right: 0;
    width: var(--nav-width); height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.drop {
    position: absolute;
    background: radial-gradient(circle, var(--accent-2), transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.drop-1 {
    width: 300px; height: 300px;
    top: -100px; right: -50px;
    transform: scale(0.5);
}

.drop-2 {
    width: 250px; height: 250px;
    bottom: -50px; right: 150px;
    background: radial-gradient(circle, var(--accent-1), transparent);
    transform: scale(0.5);
}

.liquid-menu-wrapper.active .drop {
    opacity: 0.4;
    transform: scale(1);
    transition-duration: 2s;
    transition-delay: 0.5s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

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

.hero-content.centered-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.title-row {
    display: flex;
    gap: 3vw;
    align-items: center;
    justify-content: center;
}

.fading-words-container {
    position: relative;
    height: 9vw;
    width: 100%;
}

.fade-word {
    position: absolute;
    top: 0; left: 0; right: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeWords 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-1 { animation-delay: 0s; }
.fade-2 { animation-delay: 5s; }
.fade-3 { animation-delay: 10s; }

@keyframes fadeWords {
    0%   { opacity: 0; transform: translateY(20px); filter: blur(5px); }
    10%  { opacity: 1; transform: translateY(0); filter: blur(0); }
    25%  { opacity: 1; transform: translateY(0); }
    33%  { opacity: 0; transform: translateY(-20px); filter: blur(5px); }
    100% { opacity: 0; transform: translateY(-20px); filter: blur(5px); }
}

.title-word {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.title-first {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.4);
    transition: 0.4s;
    font-size: 5.5vw;
}

.title-first:hover {
    -webkit-text-stroke: 2px var(--accent-1);
    text-shadow: 0 0 20px rgba(0,240,255,0.4);
}

.title-second {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    font-size: 5.5vw;
}

.title-third {
    color: var(--accent-1);
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    font-size: 6vw;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 50px;
    max-width: 500px;
    line-height: 1.5;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    padding: 20px 45px;
    background: transparent;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    overflow: hidden;
    transition: 0.4s;
    z-index: 1;
}

.btn-primary:hover {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
    color: #000;
}

.btn-liquid {
    position: absolute;
    top: -100px; left: 0;
    width: 400px; height: 400px;
    background: var(--accent-1);
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    border-radius: 40%;
    transform: translateY(100%) rotate(0deg);
}

.btn-primary:hover .btn-liquid {
    transform: translateY(-20%) rotate(180deg);
}

.glowing-sphere {
    position: absolute;
    top: 50%; right: 10%;
    width: 40vw; height: 40vw;
    transform: translateY(-50%);
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.glowing-sphere::after {
    content: '';
    position: absolute;
    top: 20%; left: -20%;
    width: 30vw; height: 30vw;
    background: radial-gradient(circle, var(--accent-1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 15s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(-50%) scale(1) translate(0, 0); }
    100% { transform: translateY(-50%) scale(1.1) translate(-50px, 50px); }
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 10%;
    position: relative;
    z-index: 10;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.about-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.glass-card {
    position: relative;
    width: 320px;
    height: 440px;
    background: rgba(15, 15, 20, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px rgba(0, 240, 255, 0.1) inset;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 30px rgba(0, 240, 255, 0.3) inset;
}

.card-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: var(--accent-1);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: driftInner 6s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes driftInner {
    0% { transform: translate(-50px, -50px) scale(0.8); }
    100% { transform: translate(100px, 150px) scale(1.2); }
}

.card-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.scanner-laser {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-1);
    box-shadow: 0 0 15px var(--accent-1), 0 0 30px var(--accent-1);
    animation: scanLaser 3s infinite linear;
    z-index: 10;
    opacity: 0.8;
}

@keyframes scanLaser {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

.dev-id-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.dev-avatar {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}

.avatar-ring {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 2px dashed var(--accent-1);
    border-radius: 50%;
    animation: spinRing 10s linear infinite;
}

@keyframes spinRing {
    100% { transform: rotate(360deg); }
}

.avatar-inner {
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-1);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.avatar-inner svg {
    width: 40px; height: 40px;
}

.dev-name-box {
    text-align: center;
}

.dev-name {
    font-family: 'Syncopate', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.dev-role {
    font-size: 13px;
    color: var(--accent-1);
    font-family: monospace;
    opacity: 0.8;
}

.dev-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 2px solid var(--accent-1);
}

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

.stat-value {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.glow-text {
    color: var(--accent-1);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    font-size: 16px;
}

.status-active {
    color: #0f0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.about-content {
    flex: 2;
    min-width: 400px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.highlight {
    color: var(--accent-1);
    font-family: 'Syncopate', sans-serif;
    font-weight: 400;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.about-desc {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.text-white {
    color: #fff;
    font-weight: 500;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.skill-pill {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    transition: 0.3s;
}

.skill-pill:hover {
    background: var(--accent-1);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    border-color: transparent;
    transform: translateY(-3px);
}

.webro-link {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border: 2px solid var(--accent-2);
    border-radius: 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.webro-text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    letter-spacing: 2px;
    transition: 0.3s;
}

.webro-link:hover .webro-text {
    color: #fff;
}

.webro-bg {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--accent-2);
    z-index: 1;
    transition: 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.webro-link:hover .webro-bg {
    left: 0;
}

/* Works Section */
.works-section {
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.works-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.works-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.works-desc {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.works-action-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.floating-hologram {
    position: relative;
    width: 350px; height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holo-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
}

.holo-1 {
    width: 100%; height: 100%;
    border-top-color: var(--accent-1);
    border-bottom-color: var(--accent-1);
    animation: spin 8s linear infinite;
    opacity: 0.3;
}

.holo-2 {
    width: 80%; height: 80%;
    border-left-color: var(--accent-2);
    border-right-color: var(--accent-2);
    animation: spin 6s linear infinite reverse;
    opacity: 0.5;
}

.holo-3 {
    width: 60%; height: 60%;
    border: 1px dashed var(--text-muted);
    animation: spin 15s linear infinite;
    opacity: 0.2;
}

@keyframes spin {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.action-card {
    position: relative;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    transition: transform 0.4s;
    width: 90%;
}

.action-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.5);
}

.action-card-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.5;
}

.cyber-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px; height: 60px;
    background: transparent;
    color: var(--text-color);
    font-family: 'Syncopate', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--accent-1);
    transform: skewX(-20deg) scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1);
    z-index: -1;
}

.cyber-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 2px solid var(--accent-1);
    transform: skewX(-20deg);
}

.cyber-btn:hover::before {
    transform: skewX(-20deg) scaleX(1);
}

.cyber-btn:hover .cyber-btn-text {
    color: #000;
}

.cyber-btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.cyber-btn-glitch {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.1s;
    z-index: 3;
}

.cyber-btn:active .cyber-btn-glitch {
    transform: scaleX(1);
    transition: 0s;
}

/* Prices Section */
.prices-section {
    min-height: 100vh;
    padding: 150px 10% 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.prices-header {
    text-align: center;
    margin-bottom: 70px;
}

.prices-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.category-block {
    width: 100%;
    margin-bottom: 90px;
}

.category-block:last-child {
    margin-bottom: 0;
}

.category-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.category-title {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

.cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--accent-1);
    transition: 0.4s;
}

.cat-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.15);
}

.cat-icon svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.price-card {
    background: rgba(15, 15, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 30px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: 0.5s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.price-card.premium {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    transform: scale(1.05);
}

.price-card.premium:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 240, 255, 0.3);
}

.premium-badge {
    position: absolute;
    top: -15px;
    background: var(--accent-1);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 13px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.price {
    font-size: 45px;
    font-weight: 900;
    color: var(--accent-1);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.price-from {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    width: 100%;
    margin-bottom: 40px;
    flex: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
    color: #ddd;
}

.features-list li:last-child {
    border-bottom: none;
}

.buy-btn {
    text-decoration: none;
    color: #fff;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    width: 100%;
    transition: 0.3s;
    font-weight: 600;
    letter-spacing: 1px;
}

.buy-btn:hover {
    background: #fff;
    color: #000;
}

.price-card.premium .buy-btn {
    background: var(--accent-1);
    color: #000;
    border-color: var(--accent-1);
}

.price-card.premium .buy-btn:hover {
    background: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero-content { max-width: 95%; overflow: hidden; }
    .hero-title { font-size: 6vw; margin-bottom: 20px; gap: 5px; }
    .title-row { gap: 2vw; flex-wrap: nowrap; justify-content: center; width: 100%; }
    .title-first, .title-second { font-size: 7.5vw; letter-spacing: -1px; }
    .title-third { font-size: 8vw; letter-spacing: -1px; }
    .fading-words-container { height: 12vw; }
    .hero-subtitle { font-size: 14px; margin-bottom: 30px; max-width: 100%; padding: 0 10px; }
    header { padding: 15px 10px; justify-content: space-between; align-items: center; }

    /* Fix logo width on mobile */
    .coder-logo { font-size: 16px; }
    .coder-logo .logo-name { letter-spacing: 1px; }

    .menu-btn { width: 45px; height: 45px; margin-left: auto; }
    
    :root { --nav-width: 100vw; }
    .liquid-nav { padding-left: 20px; }
    .nav-link { font-size: 32px; gap: 15px; }

    /* About Section Mobile */
    .about-section { padding: 100px 5%; }
    .about-container { gap: 40px; }
    .about-visual { flex: 100%; min-width: 100%; }
    .about-content { flex: 100%; min-width: 100%; text-align: center; }
    .section-title { font-size: 35px; }
    .about-desc { font-size: 18px; }
    .skills-grid { justify-content: center; }

    /* Works Section Mobile */
    .works-section { padding: 100px 5%; }
    .works-header { margin-bottom: 40px; }
    .works-desc { font-size: 18px; }
    .floating-hologram { width: 300px; height: 300px; }

    /* Prices Section Mobile */
    .prices-section { padding: 120px 5% 50px; }
    .price-card.premium { transform: scale(1); }
    .price-card.premium:hover { transform: translateY(-10px); }
}

/* Infinite Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--accent-1);
    color: #000;
    padding: 15px 0;
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
}

.marquee-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marquee-separator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

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

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 10%;
    position: relative;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px; /* Base height for the content */
    display: flex;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    z-index: 2;
}

.testimonial-card.active:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.04);
}

.testimonial-card.premium {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
}

.testimonial-card.premium.active:hover {
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
}

.quote-icon {
    font-size: 60px;
    color: var(--accent-1);
    opacity: 0.3;
    font-family: serif;
    position: absolute;
    top: 10px; right: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; color: #fff;
}

.client-name {
    font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 2px;
}

.client-role {
    font-size: 13px; color: var(--accent-1);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 50px 10% 100px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-1);
    transition: 0.4s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary large value */
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .testimonials-section, .faq-section { padding: 80px 5%; }
}

.footer-section {
    background: #0a0a0f;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- PERFORMANCE OPTIMIZATIONS (GPU ACCELERATION) --- */
.card-glow, .glowing-sphere, .shape-3d, .fade-word, .scanner-laser, 
.marquee-content, .drop, .liquid-menu-bg, .avatar-ring {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.glass-card, .price-card, .btn-primary, .cat-icon {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Intelligent DOM Rendering for FPS Boost */
img, svg, .testimonial-card, .price-card {
    content-visibility: auto;
    contain-intrinsic-size: 300px;
}
