/* ========================================
   CSS Variables & Theme Colors
   ======================================== */
:root {
    /* Default Theme (Purple) */
    --primary: #F97316;
    --secondary: #FB923C;
    --accent: #EF4444;
    
    /* Base Colors */
    --dark: #0A0A0A;
    --dark-light: #1A1A1A;
    --dark-lighter: #2A2A2A;
    --text-gray: #B0B0B0;
    --white: #FFFFFF;
    
    /* Animation Easings */
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme Variations */
[data-theme="blue"] {
    --primary: #3B82F6;
    --secondary: #06B6D4;
    --accent: #F59E0B;
}

[data-theme="green"] {
    --primary: #10B981;
    --secondary: #34D399;
    --accent: #F97316;
}

[data-theme="pink"] {
    --primary: #EC4899;
    --secondary: #F472B6;
    --accent: #8B5CF6;
}

[data-theme="orange"] {
    --primary: #F97316;
    --secondary: #FB923C;
    --accent: #EF4444;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.4s var(--ease-expo-out);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.4s var(--ease-expo-out);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

.pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(108, 99, 255, 0.4); }
    50% { box-shadow: 0 0 60px rgba(108, 99, 255, 0.8); }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-badge.coral {
    color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Orbs (Background Effects)
   ======================================== */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.orb-purple {
    background: radial-gradient(circle, rgba(108, 99, 255, 0.4) 0%, transparent 70%);
}

.orb-cyan {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.3) 0%, transparent 70%);
}

.orb-coral {
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease-expo-out);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--white);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

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

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s;
}

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

.nav-link:hover {
    color: var(--white);
}

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

.mobile-menu-btn {
    display: none;
    color: var(--white);
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.5rem;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    padding: 0.75rem 1rem;
    color: var(--text-gray);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

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

.hero .orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    animation: float 8s ease-in-out infinite;
}

.hero .orb-2 {
    width: 400px;
    height: 400px;
    top: 30%;
    right: -100px;
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.hero .orb-3 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: 25%;
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
}

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

.floating-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
}

.shape-1 {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    top: 25%;
    left: 10%;
    animation: spin 20s linear infinite;
}

.shape-2 {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    top: 35%;
    right: 15%;
    animation: float 5s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent);
    transform: rotate(45deg);
    bottom: 25%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 8px;
    top: 60%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
    animation-delay: -1s;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.headline-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Hero Visual - Laptop */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.laptop-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}

.laptop {
    position: relative;
}

.laptop-screen {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-light), var(--dark-lighter));
    border-radius: 1rem;
    padding: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.code-editor {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 0.75rem;
    overflow: hidden;
    padding: 1rem;
}

.editor-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.editor-dot.red { background: #FF5F56; }
.editor-dot.yellow { background: #FFBD2E; }
.editor-dot.green { background: #27C93F; }

.editor-filename {
    margin-left: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.code-lines {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
}

.code-line {
    display: flex;
    gap: 0.5rem;
}

.code-line.empty { height: 0.5rem; }
.code-line.indent { padding-left: 1rem; }
.code-line.indent2 { padding-left: 2rem; }
.code-line.indent3 { padding-left: 3rem; }

.code-keyword { color: var(--primary); }
.code-variable { color: var(--secondary); }
.code-text { color: var(--white); }
.code-string { color: var(--accent); }
.code-function { color: #FCD34D; }
.code-tag { color: var(--accent); }
.code-attr { color: var(--secondary); }
.code-line.comment { color: var(--text-gray); font-style: italic; }

.laptop-base {
    height: 20px;
    background: linear-gradient(to bottom, var(--dark-lighter), var(--dark-light));
    border-radius: 0 0 1rem 1rem;
    margin-top: -5px;
    margin-left: 5%;
    margin-right: 5%;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.icon-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: -1s;
}

.icon-3 {
    top: 50%;
    right: -40px;
    width: 40px;
    height: 40px;
    animation-delay: -2s;
}

.icon-4 {
    top: 25%;
    left: -40px;
    width: 35px;
    height: 35px;
    animation-delay: -3s;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark), transparent);
    pointer-events: none;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.services-orb {
    width: 400px;
    height: 400px;
    top: 0;
    right: -100px;
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-expo-out);
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
    transform: translateY(2rem);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(108, 99, 255, 0.2);
}

.service-card:nth-child(2):hover,
.service-card:nth-child(5):hover {
    transform: translateY(calc(-12px + 2rem)) scale(1.02);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.service-icon.purple {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-icon.cyan {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.service-icon.coral {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.why-orb {
    width: 500px;
    height: 500px;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    opacity: 0.2;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: rgba(108, 99, 255, 0.5);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 229, 255, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: color 0.3s;
}

.feature-item:hover .feature-icon svg {
    color: var(--white);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(108, 99, 255, 0.5);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline;
}

.stat-card .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.portfolio-orb {
    width: 400px;
    height: 400px;
    top: 5rem;
    right: -100px;
    opacity: 0.2;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--text-gray);
    transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item:nth-child(1),
.portfolio-item:nth-child(4) {
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-expo-out);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-expo-out);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 9999px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.portfolio-overlay p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.portfolio-actions {
    display: flex;
    gap: 0.5rem;
}

.portfolio-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.portfolio-btn:hover {
    background: var(--primary);
}

.portfolio-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.pricing-orb {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s var(--ease-expo-out);
}

.pricing-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.2), rgba(0, 229, 255, 0.2));
    border-color: rgba(108, 99, 255, 0.5);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.pricing-icon.gray {
    background: linear-gradient(135deg, var(--dark-lighter), var(--dark-light));
}

.pricing-icon.gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.4);
}

.pricing-icon.coral {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-price .currency {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.pricing-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.pricing-price .period {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.pricing-features li svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-gray);
}

.pricing-footer a {
    color: var(--primary);
    font-weight: 500;
}

.pricing-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-orb {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.15;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s var(--ease-expo-out);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.testimonial-content {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0.1;
}

.quote-icon svg {
    width: 6rem;
    height: 6rem;
    color: var(--primary);
}

.testimonial-avatar {
    position: relative;
}

.testimonial-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(108, 99, 255, 0.3);
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.testimonial-info .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-info .stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-info blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.5);
}

.nav-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.dot.active {
    width: 2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 9999px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: scalePulse 4s ease-in-out infinite;
}

@keyframes scalePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.radiating-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
}

.radiating-lines .line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 300px;
    background: linear-gradient(to bottom, rgba(108, 99, 255, 0.3), transparent);
    transform-origin: center top;
}

.radiating-lines .line:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.radiating-lines .line:nth-child(2) { transform: translateX(-50%) rotate(30deg); }
.radiating-lines .line:nth-child(3) { transform: translateX(-50%) rotate(60deg); }
.radiating-lines .line:nth-child(4) { transform: translateX(-50%) rotate(90deg); }
.radiating-lines .line:nth-child(5) { transform: translateX(-50%) rotate(120deg); }
.radiating-lines .line:nth-child(6) { transform: translateX(-50%) rotate(150deg); }
.radiating-lines .line:nth-child(7) { transform: translateX(-50%) rotate(180deg); }
.radiating-lines .line:nth-child(8) { transform: translateX(-50%) rotate(210deg); }
.radiating-lines .line:nth-child(9) { transform: translateX(-50%) rotate(240deg); }
.radiating-lines .line:nth-child(10) { transform: translateX(-50%) rotate(270deg); }
.radiating-lines .line:nth-child(11) { transform: translateX(-50%) rotate(300deg); }
.radiating-lines .line:nth-child(12) { transform: translateX(-50%) rotate(330deg); }

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-title span {
    display: inline-block;
    margin: 0 0.25rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-btn {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.contact-orb {
    width: 800px;
    height: 800px;
    bottom: -400px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.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: 0.5rem;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #4ADE80;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-gray);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(108, 99, 255, 0.5);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(0, 229, 255, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    transition: color 0.3s;
}

.info-card:hover .info-icon svg {
    color: var(--white);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.info-value {
    font-weight: 500;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.working-hours h4 {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .closed {
    color: var(--accent);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: borderFlow 5s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-gray);
    transition: color 0.3s;
}

.social-link:hover svg {
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links li,
.footer-contact li {
    padding: 0.5rem 0;
}

.footer-links a,
.footer-contact a {
    color: var(--text-gray);
    font-size: 0.875rem;
    transition: color 0.3s;
    position: relative;
}

.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

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

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}

.footer-links span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-bottom svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    fill: var(--accent);
}

.back-to-top {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ========================================
   Theme Switcher
   ======================================== */
.theme-toggle {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.6);
}

.theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

.theme-panel {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    width: 280px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.4s var(--ease-expo-out);
}

.theme-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.theme-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.theme-panel-header h4 {
    font-size: 1rem;
}

.theme-panel-close {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.theme-panel-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-panel-close svg {
    width: 1rem;
    height: 1rem;
    color: var(--text-gray);
}

.theme-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.theme-option.active {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.5);
}

.theme-colors {
    display: flex;
    gap: 0.25rem;
}

.color-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}

.theme-name {
    flex: 1;
    text-align: left;
    font-size: 0.875rem;
}

.theme-option svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    opacity: 0;
}

.theme-option.active svg {
    opacity: 1;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card:nth-child(2),
    .service-card:nth-child(5) {
        transform: none;
    }
    
    .service-card:nth-child(2):hover,
    .service-card:nth-child(5):hover {
        transform: translateY(-12px) scale(1.02);
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(4) {
        grid-row: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .radiating-lines {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-tabs {
        width: 100%;
    }
    
    .filter-tab {
        flex: 1;
        text-align: center;
    }
    
    .testimonials-nav {
        gap: 0.5rem;
    }
    
    .nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-lighter);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
