:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f0f5;
    --bg-card: rgba(255, 255, 255, 0.8);
    
    --accent: #b8860b;
    --accent-light: #daa520;
    --accent-dark: #8b6914;
    --accent-glow: rgba(184, 134, 11, 0.3);
    --accent-subtle: rgba(184, 134, 11, 0.08);
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #7a7a8a;
    
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(184, 134, 11, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
    
    --gradient-gold: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #b8860b 100%);
    --gradient-dark: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    --gradient-radial: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --header-height: 90px;
    --container: 1280px;
    --radius: 16px;
    --radius-lg: 24px;
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 140px 0; position: relative; }

.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; margin-bottom: 30px; }
.preloader-logo .logo-c { color: var(--text-primary); }
.preloader-logo .logo-ar { color: var(--accent); }
.preloader-bar { width: 200px; height: 3px; background: var(--border); border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.preloader-progress { width: 0%; height: 100%; background: var(--gradient-gold); border-radius: 10px; animation: loading 1.5s ease-in-out forwards; }
@keyframes loading { to { width: 100%; } }
.preloader-text { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.cursor, .cursor-follower { position: fixed; pointer-events: none; z-index: 9998; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor { width: 8px; height: 8px; background: var(--accent); }
.cursor-follower { width: 36px; height: 36px; border: 1px solid var(--accent); opacity: 0.5; transition: transform 0.15s ease, opacity 0.15s ease; }
.cursor-follower.active { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }
@media (max-width: 1024px) { .cursor, .cursor-follower { display: none; } }

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.glass-premium {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.glass-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s var(--ease);
}

.header::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header.scrolled::before { opacity: 1; }
.header.scrolled { box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.05); }

.nav {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex; align-items: center; gap: 4px;
    font-family: var(--font-display);
    font-size: 1.75rem; font-weight: 800;
    letter-spacing: -0.02em;
    z-index: 10;
}

.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 8px; }

.nav-link {
    position: relative;
    padding: 12px 20px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--text-secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link:hover { color: var(--text-primary); background: var(--accent-subtle); }

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, 100%);
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link:hover::before { transform: translate(-50%, -50%); opacity: 1; }
.nav-link:hover > span:first-child { transform: translateY(-100%); opacity: 0; }

.nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--gradient-gold);
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 24px;
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); }
.nav-cta svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.nav-cta:hover svg { transform: translateX(4px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    padding: 5px 0;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 100%; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.particles-container {
    position: absolute; inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(184, 134, 11, 0.1), transparent),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184, 134, 11, 0.06), transparent),
        radial-gradient(ellipse 50% 40% at 20% 60%, rgba(100, 80, 200, 0.03), transparent),
        var(--gradient-dark);
    z-index: 1;
}

.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    z-index: 2;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 24px;
    background: var(--accent-subtle);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 100px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--accent);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-badge svg { width: 16px; height: 16px; }

.badge-glow {
    position: absolute;
    width: 60px; height: 60px;
    background: var(--accent);
    filter: blur(30px);
    opacity: 0.2;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { left: -60px; }
    50% { left: calc(100% + 60px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.title-line { display: block; }

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

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 80px; }

.btn {
    position: relative;
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 36px;
    font-size: 1rem; font-weight: 600;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.btn-primary {
    background: var(--gradient-gold);
    color: #ffffff;
}

.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 20px 40px var(--accent-glow); }

.btn-glow {
    position: absolute; inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover .btn-glow { transform: translateX(100%); }

.btn-icon { display: flex; align-items: center; }
.btn-icon svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.btn:hover .btn-icon svg { transform: translateX(4px); }

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
}

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 48px; }

.stat-card {
    padding: 24px 32px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.stat-plus { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); }
.stat-label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

.hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-indicator {
    width: 2px; height: 60px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    width: 4px; height: 12px;
    background: var(--accent);
    border-radius: 4px;
    left: -1px;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { top: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-socials {
    position: fixed;
    left: 40px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    z-index: 100;
}

.social-link {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover { color: var(--accent); transform: translateY(-3px); }
.social-link svg { width: 20px; height: 20px; }
.social-line { width: 1px; height: 100px; background: var(--border); }

@media (max-width: 1200px) { .hero-socials { display: none; } }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

.section-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-right: 16px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

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

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.7;
}

.about { background: var(--bg-secondary); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features { display: flex; flex-direction: column; gap: 20px; }

.feature-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-item:hover { border-color: var(--border-hover); transform: translateX(8px); }

.feature-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-subtle);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon svg { width: 24px; height: 24px; color: var(--accent); }
.feature-content h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.feature-content p { font-size: 0.9rem; color: var(--text-muted); }

.about-visual { position: relative; }
.visual-wrapper { position: relative; }

.visual-card {
    padding: 48px;
    min-height: 450px;
}

.card-inner { position: relative; z-index: 2; }

.experience-badge {
    display: flex; align-items: center; gap: 20px;
    padding: 32px;
    background: var(--gradient-gold);
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.exp-icon { font-size: 3.5rem; line-height: 1; }

.exp-number sup { font-size: 1.5rem; }

.exp-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.tech-stack { margin-top: 24px; }
.tech-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }

.tech-icons { display: flex; gap: 12px; flex-wrap: wrap; }

.tech-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-icon:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-4px); }
.tech-icon svg { width: 24px; height: 24px; }

.floating-card {
    position: absolute;
    display: flex; align-items: center; gap: 12px;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.floating-card svg { width: 20px; height: 20px; color: var(--accent); }
.fc-1 { top: 20px; right: -60px; animation-delay: -2s; }
.fc-2 { bottom: 60px; left: -40px; animation-delay: -4s; }

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

.services { background: var(--bg-primary); }

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

.service-card {
    padding: 48px 40px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.card-bg {
    position: absolute; inset: 0;
    background: var(--gradient-radial);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-bg { opacity: 1; }

.service-card .card-content { position: relative; z-index: 2; }

.card-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon { background: var(--gradient-gold); border-color: transparent; }
.card-icon svg { width: 32px; height: 32px; color: var(--accent); transition: color 0.3s ease; }
.service-card:hover .card-icon svg { color: #ffffff; }

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-list {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 32px;
}

.card-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.card-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s ease;
}

.card-link:hover { gap: 14px; }
.card-link svg { width: 18px; height: 18px; }

.card-number {
    position: absolute;
    bottom: 24px; right: 32px;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    opacity: 0.5;
}

.projects { background: var(--bg-secondary); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.project-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.project-image {
    position: relative;
    height: 280px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.image-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.image-placeholder svg { width: 80px; height: 80px; color: var(--border); opacity: 0.5; }

.project-overlay {
    position: absolute; inset: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-link {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-card:hover .project-link { transform: scale(1); }
.project-link svg { width: 24px; height: 24px; }

.project-content { padding: 32px; }
.project-category { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.project-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.project-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

.project-tech { display: flex; gap: 10px; flex-wrap: wrap; }
.project-tech span { padding: 6px 14px; background: var(--accent-subtle); border-radius: 20px; font-size: 0.8rem; color: var(--accent); }

.clients-section { text-align: center; }
.clients-title { font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 40px; }

.clients-slider { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }

.clients-track {
    display: flex; gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.client-logo {
    flex-shrink: 0;
    padding: 20px 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.client-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.contact { background: var(--bg-primary); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-item {
    display: flex; align-items: center; gap: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-item:hover { border-color: var(--border-hover); }

.contact-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-subtle);
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-icon svg { width: 24px; height: 24px; color: var(--accent); }
.contact-text { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-size: 1.05rem; font-weight: 500; transition: color 0.3s ease; }
a.contact-value:hover { color: var(--accent); }

.contact-socials { margin-top: 20px; }
.socials-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.socials-list { display: flex; gap: 12px; }

.social-btn {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; transform: translateY(-4px); }
.social-btn svg { width: 20px; height: 20px; }

.contact-form-wrapper { padding: 48px; }

.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-group { position: relative; }
.form-group.full-width { grid-column: 1 / -1; }

.form-label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 10px; }

.form-input {
    width: 100%;
    padding: 18px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-subtle); }

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237a7a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

.btn-submit { width: 100%; justify-content: center; padding: 20px 32px; margin-top: 8px; }

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 20px;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease infinite;
}

.form-success .success-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-success p {
    font-size: 1rem;
    color: var(--text-secondary);
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(16, 185, 129, 0); }
}

.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.footer-top { padding: 100px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
}

.footer-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 800; display: inline-block; margin-bottom: 24px; }
.footer-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; max-width: 360px; margin-bottom: 32px; }

.footer-newsletter span { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; }

.newsletter-form {
    display: flex; gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }

.newsletter-form button {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-gold);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.newsletter-form button:hover { transform: scale(1.05); }
.newsletter-form button svg { width: 20px; height: 20px; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 24px; }
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a { font-size: 0.95rem; color: var(--text-secondary); transition: all 0.3s ease; }
.footer-nav a:hover { color: var(--accent); padding-left: 8px; }

.footer-bottom { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; }
.copyright { font-size: 0.9rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--accent); }

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed; inset: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 16px; padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-link { font-size: 1.5rem; padding: 16px; }
    .nav-toggle { display: flex; }
    
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { order: -1; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 100px 0; }
    .hero { padding: 120px 20px 80px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .stat-divider { width: 60px; height: 1px; }
    .hero-scroll { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .floating-card { display: none; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 80px 0; }
    .section-title { font-size: 2rem; }
    .service-card, .contact-form-wrapper { padding: 32px 24px; }
    .visual-card { padding: 32px 24px; }
}

[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }
