/* ============================================================
   Base Styles
   ============================================================ */
:root {
    /* Colors */
    --color-primary: #6c00ff;
    --color-secondary: #00aeff;
    --color-tertiary: #ff00c8;
    --color-accent: #ff9e00;
    --color-dark: #0a0118;
    --color-dark-2: #120324;
    --color-light: #f5f5f7;
    --color-grey: #8a8a8a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-secondary: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
    --gradient-dark: linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1280px;
    --container-padding: 2rem;
    --section-spacing: 8rem;
    --border-radius: 12px;
}

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

html, body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-light);
    background-color: var(--color-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* ============================================================
   Background and Effects
   ============================================================ */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    z-index: -2;
    overflow: hidden;
}

.gradient-bg::before, .gradient-bg::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    animation: gradientMove 30s infinite alternate ease-in-out;
}

.gradient-bg::before {
    background: var(--color-primary);
    top: -20%;
    right: -20%;
}

.gradient-bg::after {
    background: var(--color-tertiary);
    bottom: -20%;
    left: -20%;
}

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

@keyframes gradientMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
    }
    100% {
        transform: translate(-5%, -5%) scale(0.9);
    }
}

/* Placeholder gradients for demo purposes */
.gradient-1 {
    background: linear-gradient(135deg, #6c00ff, #00aeff);
}

.gradient-2 {
    background: linear-gradient(135deg, #ff00c8, #6c00ff);
}

.gradient-3 {
    background: linear-gradient(135deg, #00aeff, #00ff88);
}

.gradient-4 {
    background: linear-gradient(135deg, #ff9e00, #ff00c8);
}

.gradient-5 {
    background: linear-gradient(135deg, #00ff88, #ff9e00);
}

.gradient-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-tertiary));
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-light);
    border: none;
    box-shadow: 0 4px 20px rgba(108, 0, 255, 0.3);
}

.btn-primary:hover {
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 0, 255, 0.5);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--color-light);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 0, 200, 0.3);
}

.btn-secondary:hover {
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 200, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-light);
}

/* ============================================================
   Header & Navigation
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 1, 24, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Main content padding to account for fixed header */
main {
    padding-top: 6rem;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 60%;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* 3D Elements */
.hero-3d-element {
    width: 40%;
    height: 400px;
    position: relative;
    perspective: 1000px;
}

.shape-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateContainer 20s infinite linear;
}

.shape {
    position: absolute;
    transform-style: preserve-3d;
    opacity: 0.9;
}

/* Cube */
.cube {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 50px;
    transform: translateZ(75px) rotateX(15deg) rotateY(15deg);
    animation: floatCube 6s infinite ease-in-out;
}

.pyramid {
    width: 120px;
    height: 120px;
    top: 200px;
    left: 200px;
    transform: translateZ(60px) rotateX(15deg) rotateY(15deg);
    animation: floatPyramid 8s infinite ease-in-out;
}

.cylinder {
    width: 100px;
    height: 150px;
    top: 80px;
    left: 220px;
    transform: translateZ(50px) rotateX(15deg) rotateY(15deg);
    animation: floatCylinder 7s infinite ease-in-out;
}

/* Cube faces */
.cube .face {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(108, 0, 255, 0.3);
}

.cube .front {
    transform: translateZ(75px);
    background: linear-gradient(135deg, rgba(108, 0, 255, 0.3), rgba(0, 174, 255, 0.3));
}

.cube .back {
    transform: rotateY(180deg) translateZ(75px);
    background: linear-gradient(135deg, rgba(108, 0, 255, 0.3), rgba(0, 174, 255, 0.3));
}

.cube .right {
    transform: rotateY(90deg) translateZ(75px);
    background: linear-gradient(135deg, rgba(108, 0, 255, 0.3), rgba(0, 174, 255, 0.3));
}

.cube .left {
    transform: rotateY(-90deg) translateZ(75px);
    background: linear-gradient(135deg, rgba(108, 0, 255, 0.3), rgba(0, 174, 255, 0.3));
}

.cube .top {
    transform: rotateX(90deg) translateZ(75px);
    background: linear-gradient(135deg, rgba(108, 0, 255, 0.3), rgba(0, 174, 255, 0.3));
}

.cube .bottom {
    transform: rotateX(-90deg) translateZ(75px);
    background: linear-gradient(135deg, rgba(108, 0, 255, 0.3), rgba(0, 174, 255, 0.3));
}

/* Pyramid faces */
.pyramid .face {
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 200, 0.3);
}

.pyramid .bottom {
    width: 120px;
    height: 120px;
    transform: rotateX(90deg) translateZ(-60px);
    background: linear-gradient(135deg, rgba(255, 0, 200, 0.3), rgba(255, 158, 0, 0.3));
}

.pyramid .front {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateZ(0) translateY(60px) rotateX(-30deg);
    background: linear-gradient(135deg, rgba(255, 0, 200, 0.3), rgba(255, 158, 0, 0.3));
}

.pyramid .right {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateX(60px) translateY(60px) rotateY(90deg) rotateX(-30deg);
    background: linear-gradient(135deg, rgba(255, 0, 200, 0.3), rgba(255, 158, 0, 0.3));
}

.pyramid .left {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateX(-60px) translateY(60px) rotateY(-90deg) rotateX(-30deg);
    background: linear-gradient(135deg, rgba(255, 0, 200, 0.3), rgba(255, 158, 0, 0.3));
}

/* Cylinder faces */
.cylinder .face {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.cylinder .top, 
.cylinder .bottom {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 174, 255, 0.3), rgba(0, 255, 136, 0.3));
}

.cylinder .top {
    transform: translateY(-75px) rotateX(90deg);
}

.cylinder .bottom {
    transform: translateY(75px) rotateX(90deg);
}

.cylinder .side {
    width: 314px;
    height: 150px;
    transform: translateX(-107px) rotateY(90deg);
    background: linear-gradient(135deg, rgba(0, 174, 255, 0.3), rgba(0, 255, 136, 0.3));
    border-radius: 75px / 150px;
}

/* 3D animations */
@keyframes rotateContainer {
    0% {
        transform: rotateY(0) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes floatCube {
    0%, 100% {
        transform: translateZ(75px) translateY(0) rotateX(15deg) rotateY(15deg);
    }
    50% {
        transform: translateZ(75px) translateY(-20px) rotateX(15deg) rotateY(15deg);
    }
}

@keyframes floatPyramid {
    0%, 100% {
        transform: translateZ(60px) translateY(0) rotateX(15deg) rotateY(15deg);
    }
    50% {
        transform: translateZ(60px) translateY(-30px) rotateX(15deg) rotateY(15deg);
    }
}

@keyframes floatCylinder {
    0%, 100% {
        transform: translateZ(50px) translateY(0) rotateX(15deg) rotateY(15deg);
    }
    50% {
        transform: translateZ(50px) translateY(-25px) rotateX(15deg) rotateY(15deg);
    }
}

/* Text reveal animation */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealText 1s forwards;
}

.hero h1.reveal-text {
    animation-delay: 0.2s;
}

.hero .subtitle.reveal-text {
    animation-delay: 0.4s;
}

.cta-buttons {
    opacity: 0;
    animation: revealText 1s forwards;
    animation-delay: 0.6s;
}

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

/* ============================================================
   Work Section
   ============================================================ */
.work {
    padding: var(--section-spacing) 0;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.work-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.work-item-behance {
    width: 100%;
}

.work-image {
    height: 500px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.work-image iframe {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.work-info {
    padding: 20px;
    background: rgba(10, 1, 24, 0.9);
}

.work-info h3 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.work-info p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive adjustments for work grid */
@media (min-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .work-item-behance {
        height: auto;
    }
}

@media (min-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   About Section
   ============================================================ */
.about {
    padding: var(--section-spacing) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    margin-top: 0.5rem;
    opacity: 0.7;
}

.about-visual {
    position: relative;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: inherit;
}

/* ============================================================
   Clients Section
   ============================================================ */
.clients {
    padding: var(--section-spacing) 0;
    overflow: hidden;
    position: relative;
    background: rgba(10, 1, 24, 0.5);
    margin: 0 -2rem;
    padding: var(--section-spacing) 2rem;
}

.clients::before,
.clients::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients::before {
    left: 0;
    background: linear-gradient(to right, var(--color-dark) 0%, transparent 100%);
}

.clients::after {
    right: 0;
    background: linear-gradient(to left, var(--color-dark) 0%, transparent 100%);
}

.clients .section-header {
    position: relative;
    z-index: 3;
}

.logo-carousel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    margin: 0 -2rem;
    padding: 1rem 0;
}

.logo-track {
    display: flex;
    align-items: center;
    width: fit-content;
    animation: scroll 60s linear infinite;
    padding: 1rem 0;
}

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

.logo-track:nth-child(2) {
    animation-direction: reverse;
    margin-top: 0;
}

.logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    transition: transform 0.3s ease;
    font-weight: 600;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    min-width: 200px;
}

.logo-slide:hover {
    transform: translateY(-5px);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logo-slide img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Remove the old client-logos styles */
.client-logos {
    display: none;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact {
    padding: var(--section-spacing) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--color-light);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    padding-top: var(--section-spacing);
    background: rgba(10, 1, 24, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4rem;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.5;
    font-size: 0.875rem;
}

/* ============================================================
   Pricing Page
   ============================================================ */
.pricing-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

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

.pricing-tabs {
    padding: 2rem 0 var(--section-spacing);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 1px solid rgba(108, 0, 255, 0.3);
    background: linear-gradient(rgba(10, 1, 24, 0.8), rgba(10, 1, 24, 0.8)), var(--gradient-primary);
    position: relative;
    box-shadow: 0 10px 30px rgba(108, 0, 255, 0.2);
}

.pricing-card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price .period {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.pricing-card.featured .price .amount {
    background: var(--color-light);
    -webkit-background-clip: text;
    background-clip: text;
}

.pricing-card-header .description {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.pricing-card-body {
    padding: 2rem;
}

.features {
    margin-bottom: 2rem;
}

.features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.pricing-card.featured .features li::before {
    color: var(--color-accent);
}

.revision-policy {
    padding: var(--section-spacing) 0;
    background: rgba(255, 255, 255, 0.02);
}

.revision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.revision-list {
    margin-top: 2rem;
}

.revision-list li {
    margin-bottom: 2rem;
}

.revision-list h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.revision-list p {
    opacity: 0.7;
    margin-bottom: 0;
}

.revision-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 400px;
}

.cta-card h3 {
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.faq {
    padding: var(--section-spacing) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    opacity: 0.7;
    margin-bottom: 0;
}

.pricing-cta {
    padding: 4rem 0 var(--section-spacing);
    text-align: center;
}

.pricing-cta h2 {
    margin-bottom: 1rem;
}

.pricing-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.7;
}

/* ============================================================
   Companies Page
   ============================================================ */
.companies-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

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

.companies-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.companies-grid {
    padding: 0 0 var(--section-spacing);
}

.company-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: start;
}

.company-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 400px;
    background-color: #000;
}

.company-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.company-image .image-placeholder {
    border-radius: var(--border-radius);
    aspect-ratio: 1/1;
}

.company-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.company-specialty {
    font-size: 1.25rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.company-description {
    margin-bottom: 2rem;
}

.company-expertise,
.company-clients {
    margin-bottom: 2rem;
}

.company-expertise h3,
.company-clients h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.company-expertise ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-expertise ul li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.client-logos {
    display: flex;
    gap: 1.5rem;
}

.client-logos span {
    opacity: 0.7;
}

.company-synergy {
    padding: var(--section-spacing) 0;
    background: rgba(255, 255, 255, 0.02);
}

.synergy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.synergy-text h2 {
    margin-bottom: 2rem;
}

.companies-cta {
    padding: 4rem 0 var(--section-spacing);
    text-align: center;
}

.companies-cta h2 {
    margin-bottom: 1rem;
}

.companies-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.7;
}

/* ============================================================
   Media Queries
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 6rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content,
    .revision-content,
    .synergy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-image {
        min-height: 300px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .tab-nav {
        overflow-x: auto;
        padding-bottom: 1rem;
        justify-content: flex-start;
        width: 100%;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
    
    .company-image {
        min-height: 250px;
    }
}

/* Media queries for 3D elements */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .hero-3d-element {
        width: 100%;
        height: 300px;
    }
    
    .cube {
        left: calc(50% - 75px);
    }
    
    .pyramid {
        left: calc(50% - 60px);
    }
    
    .cylinder {
        left: calc(50% - 50px);
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .work-image {
        height: 300px;
    }
}

/* Partner List Styles */
.partner-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.partner-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.partner-category ul {
    list-style: none;
}

.partner-category li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: transform 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
}

.partner-category li:hover {
    transform: translateX(5px);
    color: var(--color-accent);
}

.partner-category i {
    margin-right: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    opacity: 0.7;
}

/* Media queries for partner list */
@media (max-width: 1024px) {
    .partner-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* 3D Time Representation */
.time-3d-container {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-clock-face {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-color);
    transform: rotateX(70deg) rotateZ(0deg);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
    animation: clockRotate 20s linear infinite;
}

.time-hour-hand, .time-minute-hand {
    position: absolute;
    background: var(--accent-color);
    transform-origin: bottom center;
    border-radius: 3px;
}

.time-hour-hand {
    width: 4px;
    height: 60px;
    top: calc(50% - 60px);
    left: calc(50% - 2px);
    transform: rotateX(70deg) rotateZ(0deg);
    animation: hourRotate 30s linear infinite;
    z-index: 2;
}

.time-minute-hand {
    width: 3px;
    height: 90px;
    top: calc(50% - 90px);
    left: calc(50% - 1.5px);
    transform: rotateX(70deg) rotateZ(0deg);
    animation: minuteRotate 10s linear infinite;
    z-index: 3;
}

.time-cube {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: floatCube 8s ease-in-out infinite, colorShift 15s ease-in-out infinite;
    top: 60%;
    left: 30%;
}

.time-cube .cube-face {
    border: 1px solid var(--accent-color);
    background: rgba(var(--accent-rgb), 0.1);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5) inset;
}

.time-cylinder {
    position: absolute;
    width: 60px;
    height: 120px;
    animation: floatCylinder 10s ease-in-out infinite alternate;
    top: 30%;
    right: 25%;
}

.time-cylinder .cylinder-side {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.05));
    border: 1px solid var(--accent-color);
}

.time-cylinder .cylinder-top, .time-cylinder .cylinder-bottom {
    background: rgba(var(--accent-rgb), 0.2);
    border: 1px solid var(--accent-color);
}

.time-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.time-particles:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--accent-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: particleFloat 20s linear infinite;
}

@keyframes clockRotate {
    0% { transform: rotateX(70deg) rotateZ(0deg); }
    100% { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes hourRotate {
    0% { transform: rotateX(70deg) rotateZ(0deg); }
    100% { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes minuteRotate {
    0% { transform: rotateX(70deg) rotateZ(0deg); }
    100% { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes floatCube {
    0% { transform: translateY(0) rotateX(45deg) rotateY(45deg) rotateZ(0); }
    50% { transform: translateY(-20px) rotateX(45deg) rotateY(225deg) rotateZ(180deg); }
    100% { transform: translateY(0) rotateX(45deg) rotateY(405deg) rotateZ(360deg); }
}

@keyframes floatCylinder {
    0% { transform: translateY(0) rotateX(60deg) rotateZ(0); }
    50% { transform: translateY(-15px) rotateX(60deg) rotateZ(180deg); }
    100% { transform: translateY(0) rotateX(60deg) rotateZ(360deg); }
}

@keyframes particleFloat {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-icon {
    width: 30px;
    height: 22px;
    position: relative;
    margin-top: 10px;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 9px;
}

.hamburger-icon span:nth-child(3) {
    top: 18px;
}

.hamburger-open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.hamburger-open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    padding-top: 80px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #A47CFF;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu.open {
        display: block;
    }
}

/* No Scroll for Body */
body.no-scroll {
    overflow: hidden;
} 