/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0F1114;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #8B5FFF 0%, #6C47FF 100%);
    --blue-gradient: linear-gradient(135deg, #4F9AFF 0%, #00D4FF 100%);
    --background-dark: #0F1114;
    --background-card: #1A1D21;
    --background-elevated: #23263A;
    --border-color: #2A2D35;
    --text-primary: #ffffff;
    --text-secondary: #6B7280;
    --success-color: #00FFB0;
    --warning-color: #FFD600;
    --purple-dot: #8B5FFF;
    --blue-dot: #4F9AFF;
    --green-dot: #00FFB0;
    --yellow-dot: #FFD600;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shiny Text Animation */
.shiny-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #8B5FFF 25%,
        #ffffff 50%,
        #8B5FFF 75%,
        #ffffff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s infinite;
}

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

/* Status Dots */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-dot);
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.status-dot.blue { background: var(--blue-dot); }
.status-dot.green { background: var(--green-dot); }
.status-dot.purple { background: var(--purple-dot); }
.status-dot.yellow { background: var(--yellow-dot); }

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

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--blue-gradient);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00FFB0 0%, #00D4FF 100%);
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 17, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: rotate-logo 4s linear infinite;
}

@keyframes rotate-logo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.cta-button {
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button.primary {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    box-shadow: 0 4px 20px rgba(139, 95, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 95, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
}

.cta-button.secondary:hover {
    background: var(--background-card);
    border-color: #8B5FFF;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
}

.cta-button.extra-large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    animation: slideInRight 1s ease-out;
    position: relative;
}

.video-preview {
    background: var(--background-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.video-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-screen {
    background: #000;
    border-radius: 12px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.screen-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline {
    height: 8px;
    background: #333;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    animation: timeline-progress 2s ease-in-out infinite;
}

@keyframes timeline-progress {
    0%, 100% { width: 40%; }
    50% { width: 70%; }
}

.video-layers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.layer {
    height: 24px;
    background: #333;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.layer.active {
    background: var(--primary-gradient);
    opacity: 1;
    animation: layer-pulse 2s ease-in-out infinite;
}

@keyframes layer-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--background-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    animation: float-icon 4s ease-in-out infinite;
}

.floating-icon[data-type="script"] {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
    color: #4F9AFF;
}

.floating-icon[data-type="thumbnail"] {
    bottom: 30%;
    left: -20px;
    animation-delay: 1s;
    color: #00FFB0;
}

.floating-icon[data-type="3d"] {
    top: 60%;
    right: -15px;
    animation-delay: 2s;
    color: #8B5FFF;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--background-dark) 0%, #151821 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 95, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: white;
    animation: rotate-service 3s ease-in-out infinite;
}

@keyframes rotate-service {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.feature::before {
    content: '✓';
    color: var(--success-color);
    margin-right: 8px;
    font-weight: bold;
}

/* Results Section */
.results {
    background: var(--background-dark);
}

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

.result-card {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(139, 95, 255, 0.1),
        transparent
    );
    animation: rotate-gradient 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover::before {
    opacity: 1;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.result-metric {
    margin-bottom: 24px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.result-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.result-client {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(180deg, #151821 0%, var(--background-dark) 100%);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

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

.portfolio-item {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-preview {
    height: 200px;
    background: linear-gradient(135deg, #1A1D21 0%, #23263A 100%);
    position: relative;
    overflow: hidden;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .preview-overlay {
    opacity: 1;
}

.preview-btn {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    transform: scale(1.1);
}

/* Portfolio Item Specific Styles */
.thumbnail-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 160px;
    height: 120px;
}

.mini-thumbnail {
    background: var(--primary-gradient);
    border-radius: 8px;
    animation: thumbnail-pulse 2s ease-in-out infinite;
}

.mini-thumbnail:nth-child(2) { animation-delay: 0.5s; }
.mini-thumbnail:nth-child(3) { animation-delay: 1s; }
.mini-thumbnail:nth-child(4) { animation-delay: 1.5s; }

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

.script-preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.script-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80%;
}

.line {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    opacity: 0.5;
}

.line.active {
    background: var(--primary-gradient);
    opacity: 1;
    animation: typing-effect 2s ease-in-out infinite;
}

@keyframes typing-effect {
    0%, 100% { width: 60%; }
    50% { width: 100%; }
}

/* 3D Cube Animation */
.cube-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    perspective: 1000px;
}

.cube {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-cube 4s linear infinite;
}

.face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.front { transform: translateZ(40px); }
.back { transform: translateZ(-40px) rotateY(180deg); }
.right { transform: rotateY(90deg) translateZ(40px); }
.left { transform: rotateY(-90deg) translateZ(40px); }
.top { transform: rotateX(90deg) translateZ(40px); }
.bottom { transform: rotateX(-90deg) translateZ(40px); }

@keyframes rotate-cube {
    0% { transform: rotateX(0) rotateY(0); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.orb-cta-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-cta-2 {
    width: 300px;
    height: 300px;
    background: var(--blue-gradient);
    bottom: -20%;
    right: -10%;
    animation-delay: 3s;
}

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

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.cta-buttons {
    margin-bottom: 48px;
}

.cta-contact {
    margin-top: 24px;
    color: var(--text-secondary);
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
}

.contact-link:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item i {
    color: var(--success-color);
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--background-elevated);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 300px;
}

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

.link-group h5 {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 32px;
    }
    
    .trust-indicators {
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .portfolio-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .results-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .result-card,
    .portfolio-item {
        margin: 0 auto;
        max-width: 400px;
    }
}
