:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #14b8a6;
    --text: #0f172a;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-secondary: #f8fafc;
    --border: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] {
    --primary: #818cf8;
    --primary-dark: #6366f1;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --bg: #0f172a;
    --bg-secondary: #1e293b;
    --border: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
    cursor: none;
}

* {
    cursor: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    display: none;
}

.cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px rgba(224, 36, 156, 0.6),
        0 0 40px rgba(224, 36, 156, 0.3),
        0 0 60px rgba(224, 36, 156, 0.1);
    animation: pulse-dot 2s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(224, 36, 156, 0.6),
            0 0 40px rgba(224, 36, 156, 0.3),
            0 0 60px rgba(224, 36, 156, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(224, 36, 156, 0.8),
            0 0 60px rgba(224, 36, 156, 0.5),
            0 0 90px rgba(224, 36, 156, 0.2);
    }
}

@media (pointer: fine) {
    .cursor {
        display: block;
    }
}

.cursor.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(2.5);
    background: var(--primary);
    animation: pulse-dot 0.4s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(224, 36, 156, 0.9),
        0 0 60px rgba(224, 36, 156, 0.6),
        0 0 90px rgba(224, 36, 156, 0.3);
}

.cursor.cursor-click .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
    background: #ffffff;
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 1),
        0 0 80px rgba(224, 36, 156, 0.8);
}

.cursor-ripple {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    animation: ripple-expand 0.6s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes ripple-expand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
        border-color: var(--primary);
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
        border-width: 0;
        border-color: var(--primary);
    }
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .nav {
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text);
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.logo-icon-img {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
    padding: 0.35rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s, left 0.3s;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.nav-link:hover {
    color: var(--primary);
}

.theme-toggle {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
    cursor: pointer;
}

.theme-toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.theme-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    overflow: hidden;
}

.theme-toggle-slider::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle-slider {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.5);
}

[data-theme="dark"] .theme-toggle-slider::before {
    transform: translateX(32px);
    background: #f1f5f9;
}

.theme-toggle:hover .theme-toggle-slider {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
}

[data-theme="dark"] .theme-toggle:hover .theme-toggle-slider {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.7);
}

.theme-toggle-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer-toggle 3s infinite;
}

@keyframes shimmer-toggle {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 24px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    position: absolute;
}

.mobile-toggle span:first-child {
    top: 6px;
}

.mobile-toggle span:last-child {
    bottom: 6px;
}

.mobile-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 7rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -15%;
    right: -15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -15%;
    left: -15%;
    animation-delay: 5s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 35%;
    left: 45%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: none;
    padding-right: 0;
    justify-self: start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    min-height: 280px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s ease backwards;
    margin-bottom: 0.25rem;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    min-height: 4.5rem;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    margin: 0.5rem 0;
    min-height: 5.5rem;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    min-height: 4.5rem;
}

.title-line:nth-child(4) {
    animation-delay: 0.8s;
    min-height: 4.5rem;
}

.title-highlight {
    position: relative;
    font-size: 4rem;
    font-weight: 800;
    display: block;
    letter-spacing: -0.02em;
    min-height: 5.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.15;
    filter: blur(15px);
    z-index: -1;
}

.rotating-text {
    display: inline-block;
    position: relative;
    width: 620px;
    text-align: left;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    animation: fadeInUp 0.6s ease 0.4s both;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeIn 1s ease 0.4s both;
    justify-self: end;
    width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    animation: floatCard 8s infinite ease-in-out;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}

[data-theme="dark"] .floating-card {
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.floating-card:hover {
    box-shadow: 0 30px 70px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
    animation-play-state: paused;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.floating-card:hover .card-glow {
    opacity: 1;
}

.card-1 {
    width: 280px;
    height: 190px;
    top: -5%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    width: 220px;
    height: 200px;
    top: 48%;
    right: -8%;
    animation-delay: 2.5s;
}

.card-3 {
    width: 260px;
    height: 170px;
    bottom: 5%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-1deg);
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) translateX(0) rotate(1deg);
    }
    75% {
        transform: translateY(-15px) translateX(-5px) rotate(0deg);
    }
}

.card-header {
    width: 100%;
    height: 45px;
    background: linear-gradient(90deg, #e2e8f0 0%, #f8fafc 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: pulse-bg 2s ease infinite;
}

.card-content {
    width: 85%;
    height: 70px;
    background: linear-gradient(90deg, #e2e8f0 0%, #f8fafc 100%);
    border-radius: 10px;
    animation: pulse-bg 2s ease infinite 0.5s;
}

@keyframes pulse-bg {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.card-circle {
    width: 90px;
    height: 90px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border-top-color: transparent;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-lines::before,
.card-lines::after {
    content: '';
    height: 10px;
    background: linear-gradient(90deg, #e2e8f0 0%, #f8fafc 100%);
    border-radius: 5px;
    animation: pulse-bg 2s ease infinite;
}

.card-lines::after {
    width: 70%;
    animation-delay: 0.3s;
}

.card-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    gap: 12px;
    height: 100%;
    padding: 1rem 0;
}

.card-graph::before,
.card-graph::after {
    content: '';
    width: 35px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 8px 0 0;
    animation: grow 2s ease infinite;
}

.card-graph::before {
    height: 55%;
    animation-delay: 0s;
}

.card-graph::after {
    height: 85%;
    animation-delay: 0.4s;
}

@keyframes grow {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.7);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: fadeIn 1s ease 1s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(40px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.015;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, var(--secondary) 0%, transparent 60%);
    z-index: 0;
}

section > * {
    position: relative;
    z-index: 1;
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.portfolio {
    background: var(--bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--bg);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.portfolio-item:hover::before {
    opacity: 0.03;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.placeholder-browser {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.browser-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 0.5rem;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-content {
    background: white;
    border-radius: 4px;
    height: calc(100% - 20px);
    padding: 1rem;
}

.content-header {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #eee 0%, #f5f5f5 100%);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    height: calc(100% - 60px);
}

.grid-item {
    background: #f5f5f5;
    border-radius: 4px;
}

.content-sidebar {
    width: 30%;
    float: left;
    height: 100%;
    background: #f5f5f5;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.content-main {
    width: calc(70% - 0.5rem);
    float: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-card {
    flex: 1;
    background: #f5f5f5;
    border-radius: 4px;
}

.content-hero {
    width: 100%;
    height: 40%;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: calc(60% - 0.5rem);
}

.section-block {
    flex: 1;
    background: #f5f5f5;
    border-radius: 4px;
}

.content-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    height: 100%;
}

.masonry-item {
    background: #f5f5f5;
    border-radius: 4px;
}

.masonry-item.large {
    grid-row: span 2;
}

.portfolio-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.portfolio-description {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 0.375rem 0.875rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    transition: all 0.3s;
}

.portfolio-tags span:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.pricing {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 1.75rem;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 36, 156, 0.3);
    box-shadow: 0 20px 40px rgba(224, 36, 156, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(224, 36, 156, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(224, 36, 156, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary), #ff00ff);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(224, 36, 156, 0.4);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 0.875rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.price-period {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features span {
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    width: 100%;
}

.pricing-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.pricing-btn:hover svg {
    transform: translateX(4px);
}

.pricing-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff00ff);
    color: white;
    box-shadow: 0 4px 15px rgba(224, 36, 156, 0.4);
}

.pricing-btn.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(224, 36, 156, 0.6);
    transform: translateY(-2px);
}

.pricing-btn.btn-secondary {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border);
}

.pricing-btn.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(224, 36, 156, 0.05);
    color: var(--primary);
}

.faq {
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(224, 36, 156, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(224, 36, 156, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.process {
    background: var(--bg);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 90px;
    width: 3px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
    border-radius: 10px;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
}

.step-number:hover {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.step-icon:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: transform 0.3s;
}

.step-icon:hover svg {
    transform: scale(1.1);
}

.testimonials {
    background: var(--bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-large {
    background: white;
    color: var(--primary);
}

.cta-section .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact {
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(224, 36, 156, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 2px solid var(--border);
    border-radius: 16px;
    margin-bottom: 2.5rem;
    transition: all 0.3s;
}

.response-time:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(224, 36, 156, 0.1);
}

.response-time-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #ff00ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.response-time-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.response-time-info {
    flex: 1;
}

.response-time-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.response-time-value {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.time-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.time-subtext {
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(5px);
    border-color: var(--primary);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.method-value {
    font-weight: 600;
    color: var(--text);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.footer {
    background: var(--text);
    color: white;
    padding: 4rem 0 2rem;
}

[data-theme="dark"] .footer {
    background: #000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.footer-brand {
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 900px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-col {
    text-align: center;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        max-width: 1200px;
        padding: 0 2rem;
        margin: 0 auto;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding-right: 0;
        justify-self: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

    .hero-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        background: rgba(15, 23, 42, 0.3) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    [data-theme="light"] .nav {
        background: rgba(255, 255, 255, 0.3) !important;
    }
    
    .nav-container {
        padding: 0.35rem 1rem;
        min-height: 40px;
        display: flex;
        align-items: center;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 1.1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 40px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 40px);
        background: var(--bg);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        border-top: 1px solid var(--border);
        z-index: 999;
        backdrop-filter: blur(25px);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 0.3rem;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        margin-left: 0.5rem;
        width: auto;
        height: auto;
    }
    
    [data-theme="dark"] .mobile-toggle {
        background: rgba(30, 41, 59, 0.5);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-toggle span {
        width: 16px;
    }
    
    .theme-toggle {
        display: none !important;
    }

    .logo-icon-img {
        height: 28px;
    }

    .hero-badge {
        display: none !important;
    }

    .scroll-indicator {
        display: none !important;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
        min-height: 200px;
    }

    .title-line:nth-child(1) {
        min-height: 3rem;
    }

    .title-line:nth-child(2) {
        min-height: 4rem;
    }

    .title-line:nth-child(3),
    .title-line:nth-child(4) {
        min-height: 3rem;
    }

    .title-highlight {
        font-size: 2.75rem;
        min-height: 4rem;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .rotating-text {
        width: 100%;
        max-width: 380px;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }
    
    .stat {
        text-align: center;
        width: 100%;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 70px 1fr;
        gap: 1.5rem;
    }

    .step-icon {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        border-radius: 18px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .process-step:not(:last-child)::after {
        left: 35px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }

    .rotating-text {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.3rem 0.75rem;
        min-height: 38px;
    }
    
    .nav-logo {
        font-size: 0.95rem;
    }
    
    .logo-icon {
        font-size: 1rem;
    }
    
    .mobile-toggle {
        padding: 0.25rem;
    }
    
    .mobile-toggle span {
        width: 14px;
    }
    
    .theme-toggle {
        display: none !important;
    }

    .logo-icon-img {
        height: 22px;
    }
    
    .nav-links {
        top: 38px;
        height: calc(100vh - 38px);
    }

    .response-time {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .response-time-icon {
        width: 45px;
        height: 45px;
    }

    .response-time-value {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }

    .time-highlight {
        font-size: 1.25rem;
    }

    .hero {
        padding: 4.5rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
        min-height: 180px;
    }

    .title-line:nth-child(1) {
        min-height: 2.5rem;
    }

    .title-line:nth-child(2) {
        min-height: 3.5rem;
    }

    .title-line:nth-child(3),
    .title-line:nth-child(4) {
        min-height: 2.5rem;
    }

    .title-highlight {
        font-size: 2.25rem;
        min-height: 3.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .rotating-text {
        width: 100%;
        max-width: 100%;
        font-size: 2.25rem;
        text-align: center;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .stat {
        text-align: center;
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }
}

::selection {
    background: var(--primary);
    color: white;
}

