@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-color: #9b59b6;
    --primary-light: #c39bd3;
    --accent-blue: #3498db;
    --secondary-color: #f1c40f;
    --dark-bg: #0a0812;
    --darker-bg: #060510;
    --light-text: #e8e6f0;
    --muted-text: #a09bb5;
    --dark-text: #1a1a1a;
    --card-bg: rgba(20, 16, 35, 0.6);
    --card-bg-solid: rgba(20, 16, 35, 0.85);
    --border-color: rgba(155, 89, 182, 0.2);
    --gradient-primary: linear-gradient(135deg, #9b59b6, #3498db);
    --gradient-gold: linear-gradient(135deg, #f1c40f, #e67e22);
    --glow-purple: 0 0 20px rgba(155, 89, 182, 0.4);
    --glow-blue: 0 0 20px rgba(52, 152, 219, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMATED BACKGROUND ORBS ===== */
.bg-orbs {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; }
.bg-orb:nth-child(1) {
    width: 600px; height: 600px; top: -10%; left: -10%;
    background: radial-gradient(circle, #9b59b6, transparent 70%);
    animation: orbFloat1 25s ease-in-out infinite;
}
.bg-orb:nth-child(2) {
    width: 500px; height: 500px; top: 40%; right: -15%;
    background: radial-gradient(circle, #3498db, transparent 70%);
    animation: orbFloat2 30s ease-in-out infinite;
}
.bg-orb:nth-child(3) {
    width: 400px; height: 400px; bottom: 10%; left: 20%;
    background: radial-gradient(circle, #8e44ad, transparent 70%);
    animation: orbFloat3 20s ease-in-out infinite;
}
.bg-orb:nth-child(4) {
    width: 350px; height: 350px; top: 60%; left: 60%;
    background: radial-gradient(circle, #2980b9, transparent 70%);
    animation: orbFloat4 35s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 60px) scale(1.1); }
    66% { transform: translate(-40px, 100px) scale(0.9); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-100px, -50px) scale(1.15); }
    66% { transform: translate(60px, -80px) scale(0.85); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, -60px) scale(1.1); }
}
@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-80px, 40px) scale(1.05); }
    75% { transform: translate(50px, -70px) scale(0.95); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(155, 89, 182, 0.5); }
    50% { box-shadow: 0 0 40px rgba(155, 89, 182, 0.8), 0 0 60px rgba(52, 152, 219, 0.3); }
}
@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 15px rgba(241, 196, 15, 0.4); }
    50% { box-shadow: 0 0 30px rgba(241, 196, 15, 0.7); }
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== GENERAL ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--light-text); }
h2 {
    font-size: 2.8rem; text-align: center; margin-bottom: 60px; position: relative;
    text-transform: uppercase; letter-spacing: 3px;
}
h2::after {
    content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 2px; background: var(--gradient-primary); box-shadow: var(--glow-purple);
}
section { padding: 100px 0; position: relative; z-index: 1; }
section:nth-of-type(even) { background: rgba(0,0,0,0.15); }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 100px 0 20px;
    position: relative; z-index: 1;
}
.breadcrumbs ol {
    list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
    font-size: 0.85rem; color: var(--muted-text);
}
.breadcrumbs li::after { content: '/'; margin-left: 8px; opacity: 0.4; }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a {
    color: var(--muted-text); text-decoration: none; transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--primary-light); }
.breadcrumbs li:last-child { color: var(--light-text); }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 40px 0 60px; text-align: center;
    position: relative; z-index: 1;
}
.page-header h1 {
    font-size: 3rem; margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}
.page-header .gradient-text {
    background: linear-gradient(135deg, #e8e6f0, #c39bd3, #3498db, #e8e6f0);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}
.page-header p {
    font-size: 1.1rem; color: var(--muted-text); max-width: 700px;
    margin: 0 auto; line-height: 1.8;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 15px 0; z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(10, 8, 18, 0.4);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled {
    background: rgba(10, 8, 18, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: var(--light-text);
    text-decoration: none; font-weight: 700; transition: all 0.3s ease;
}
.logo .initial {
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 4px rgba(241, 196, 15, 0.4));
}
.logo:hover { opacity: 0.8; }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 25px; }
.nav-links a {
    color: var(--muted-text); text-decoration: none; font-size: 0.9rem;
    transition: all 0.3s ease; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--light-text); text-shadow: 0 0 8px rgba(155, 89, 182, 0.5); }

.burger-menu { display: none; cursor: pointer; z-index: 1001; }
.burger-menu div { width: 25px; height: 2px; background-color: var(--light-text); margin: 6px 0; transition: all 0.4s ease; border-radius: 2px; }

/* ===== HERO ===== */
#hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden; padding-top: 80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block; padding: 8px 24px; border-radius: 50px;
    background: rgba(155, 89, 182, 0.15); border: 1px solid rgba(155, 89, 182, 0.3);
    font-size: 0.85rem; color: var(--primary-light); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 30px; backdrop-filter: blur(10px);
}
.hero-title {
    font-size: 4.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, #e8e6f0, #c39bd3, #3498db, #e8e6f0);
    background-size: 300% 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: gradientShift 6s ease infinite;
}
.hero-subtitle {
    font-size: 1.3rem; color: var(--muted-text); margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif; letter-spacing: 4px; text-transform: uppercase;
}
.hero-description {
    font-size: 1.05rem; color: var(--muted-text); max-width: 600px;
    margin: 0 auto 40px; line-height: 1.8;
}
.hero-cta {
    display: inline-block; padding: 16px 45px;
    background: var(--gradient-primary); color: #fff;
    text-decoration: none; border-radius: 50px; font-size: 1.05rem;
    font-weight: 600; transition: all 0.4s ease;
    border: none; position: relative; overflow: hidden;
    animation: pulse 3s ease-in-out infinite;
}
.hero-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(155, 89, 182, 0.5); }
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted-text); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-indicator i { animation: scrollDown 2s ease-in-out infinite; font-size: 1.2rem; }

/* ===== ABOUT ===== */
#about { padding-top: 100px; }
.about-content { display: flex; align-items: center; gap: 60px; }
.about-image { flex-basis: 45%; flex-shrink: 0; position: relative; }
.about-image img {
    width: 100%; height: auto; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(155, 89, 182, 0.3); transition: all 0.5s ease;
    object-fit: cover; aspect-ratio: 1 / 1;
}
.about-image::after {
    content: ''; position: absolute; inset: -8px; border-radius: 20px;
    background: var(--gradient-primary); z-index: -1; opacity: 0.15; filter: blur(20px);
}
.about-text { flex-basis: 55%; }
.about-text h3 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { line-height: 1.9; margin-bottom: 15px; color: var(--muted-text); }
.about-text .highlight {
    font-size: 1.2rem; line-height: 1.7; color: var(--secondary-color);
    font-style: italic; font-family: 'Cormorant Garamond', serif;
}

.cta-button {
    display: inline-block; padding: 15px 35px;
    background: var(--gradient-primary); color: #fff;
    text-decoration: none; border-radius: 50px; font-size: 1.05rem;
    font-weight: 600; transition: all 0.4s ease;
    box-shadow: var(--glow-purple); border: none; margin-top: 30px;
}
.cta-button:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(155, 89, 182, 0.5); }

/* ===== VIDEO ===== */
#video { padding: 80px 0; background: none; }
.video-wrapper {
    max-width: 800px; margin: 0 auto; position: relative;
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(155, 89, 182, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    aspect-ratio: 16/9; background: var(--card-bg-solid);
    display: flex; align-items: center; justify-content: center;
}
.video-placeholder { text-align: center; color: var(--muted-text); }
.video-placeholder i { font-size: 4rem; color: var(--primary-color); margin-bottom: 15px; display: block; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ===== MEDIA LOGOS ===== */
#media { padding: 70px 0; background: none; }
.media-container { text-align: center; }
.media-container h3 {
    font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
    color: var(--muted-text); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 50px;
}
.logos-grid-svg { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 50px; }
.media-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    width: 130px; cursor: pointer; transition: all 0.4s ease;
}
.media-logo-item svg { width: 45px; height: 45px; fill: var(--muted-text); transition: all 0.4s ease; opacity: 0.6; }
.media-logo-item span { color: var(--muted-text); font-family: 'Cormorant Garamond', serif; font-size: 1rem; transition: all 0.4s ease; text-align: center; }
.media-logo-item:hover svg { fill: var(--secondary-color); transform: scale(1.15); opacity: 1; }
.media-logo-item:hover span { color: var(--secondary-color); }

/* ===== EXPERT ===== */
.expert-content { display: flex; align-items: center; gap: 60px; }
.expert-text { flex-basis: 60%; }
.expert-text h3 { font-size: 2rem; margin-bottom: 20px; }
.expert-text p { line-height: 1.9; margin-bottom: 15px; color: var(--muted-text); }
.expert-stats { flex-basis: 40%; display: flex; flex-direction: column; gap: 30px; text-align: center; }
.stat-item {
    position: relative; padding: 25px; border-radius: 16px;
    background: var(--card-bg); backdrop-filter: blur(10px);
    border: 1px solid var(--border-color); transition: all 0.4s ease;
}
.stat-item:hover { border-color: rgba(155, 89, 182, 0.4); box-shadow: var(--glow-purple); }
.stat-item h3 {
    font-size: 3.5rem; background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item p { font-size: 1rem; color: var(--muted-text); }

/* ===== GUARANTEES ===== */
.guarantees-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.guarantee-card {
    position: relative; text-align: center; padding: 35px 20px;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px; transition: all 0.4s ease;
}
.guarantee-card:hover { border-color: rgba(52, 152, 219, 0.4); transform: translateY(-5px); box-shadow: var(--glow-blue); }
.guarantee-icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--gradient-primary);
    font-size: 1.4rem; color: #fff; box-shadow: var(--glow-purple);
}
.guarantee-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.guarantee-card p { font-size: 0.85rem; line-height: 1.6; color: var(--muted-text); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.service-card {
    position: relative; padding: 35px;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px;
    text-align: center; transition: all 0.4s ease;
    display: flex; flex-direction: column; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(155, 89, 182, 0.2); border-color: rgba(155, 89, 182, 0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    font-size: 2.5rem; margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { font-size: 0.9rem; line-height: 1.7; flex-grow: 1; color: var(--muted-text); }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; text-align: center; }
.process-step {
    position: relative; padding: 35px;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px;
    border-top: none; overflow: hidden; transition: all 0.4s ease;
}
.process-step::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary);
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--glow-purple); }
.step-number {
    width: 55px; height: 55px; margin: 0 auto 20px;
    background: var(--gradient-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-family: 'Cormorant Garamond', serif;
    font-weight: 700; color: #fff; box-shadow: var(--glow-purple);
}
.process-step h3 { font-size: 1.4rem; margin-bottom: 12px; }
.process-step p { line-height: 1.7; font-size: 0.9rem; color: var(--muted-text); }

/* ===== WORK AREAS ===== */
.work-areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.work-area-card {
    position: relative; padding: 40px 30px;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px;
    transition: all 0.4s ease; overflow: hidden;
}
.work-area-card:hover { border-color: rgba(241, 196, 15, 0.4); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(241, 196, 15, 0.15); }
.work-area-card .service-icon { font-size: 2.5rem; }
.work-area-card h3 { font-size: 1.7rem; margin: 15px 0; }
.work-area-card p { font-style: italic; color: var(--muted-text); margin-bottom: 20px; }
.work-area-card ul { list-style: none; text-align: left; padding-left: 0; }
.work-area-card li { margin-bottom: 12px; padding-left: 25px; position: relative; color: var(--muted-text); }
.work-area-card li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gradient-primary); box-shadow: 0 0 6px rgba(155, 89, 182, 0.5);
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.blog-post-card {
    position: relative; display: block;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease; text-decoration: none; color: var(--light-text);
}
.blog-post-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(155, 89, 182, 0.2); }
.blog-post-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.blog-post-card:hover img { transform: scale(1.05); }
.blog-post-content { padding: 25px; }
.blog-post-content h3 { font-size: 1.3rem; margin-bottom: 12px; }
.blog-post-content p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; color: var(--muted-text); }
.blog-post-content .read-more-link { color: var(--primary-light); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.blog-post-card:hover .read-more-link { color: var(--secondary-color); }

/* ===== ARTICLE PAGE ===== */
.article-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 50px;
    position: relative; z-index: 1;
}
.article-body { max-width: 100%; }
.article-body h2 {
    font-size: 2rem; text-align: left; margin-bottom: 25px; letter-spacing: 1px;
}
.article-body h2::after { left: 0; transform: none; }
.article-body h3 { font-size: 1.5rem; margin: 30px 0 15px; }
.article-body p { line-height: 2; margin-bottom: 20px; color: var(--muted-text); font-size: 1rem; }
.article-body ul, .article-body ol {
    margin: 15px 0 25px 20px; color: var(--muted-text); line-height: 2;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
    border-left: 3px solid var(--primary-color); padding: 15px 25px;
    margin: 25px 0; background: var(--card-bg); border-radius: 0 12px 12px 0;
    font-style: italic; color: var(--primary-light);
}
.article-sidebar {
    position: sticky; top: 100px; align-self: start;
}
.sidebar-card {
    background: var(--card-bg); backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px;
    padding: 25px; margin-bottom: 25px;
}
.sidebar-card h3 { font-size: 1.2rem; margin-bottom: 20px; }
.sidebar-card a {
    display: block; color: var(--muted-text); text-decoration: none;
    padding: 10px 0; border-bottom: 1px solid var(--border-color);
    transition: color 0.3s; font-size: 0.9rem;
}
.sidebar-card a:last-child { border-bottom: none; }
.sidebar-card a:hover { color: var(--primary-light); }

/* ===== INSTAGRAM FEED ===== */
.instagram-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
}
.instagram-item {
    position: relative; border-radius: 12px; overflow: hidden;
    aspect-ratio: 1 / 1; background: var(--card-bg);
    border: 1px solid var(--border-color); transition: all 0.4s ease;
}
.instagram-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}
.instagram-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.instagram-item .instagram-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease; background: rgba(155, 89, 182, 0.3);
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay i { font-size: 2rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.instagram-follow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 35px; border-radius: 50px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff; text-decoration: none; font-size: 1rem; font-weight: 600;
    transition: all 0.4s ease; box-shadow: 0 5px 25px rgba(131, 58, 180, 0.4);
}
.instagram-follow:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(131, 58, 180, 0.5); }
.instagram-follow i { font-size: 1.3rem; }

/* ===== WHY ME ===== */
.why-me-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.why-me-card {
    position: relative; padding: 35px;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px;
    transition: all 0.4s ease; overflow: hidden;
}
.why-me-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-gold); opacity: 0; transition: opacity 0.4s ease;
}
.why-me-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(241, 196, 15, 0.15); border-color: rgba(241, 196, 15, 0.3); }
.why-me-card:hover::before { opacity: 1; }
.why-me-number {
    font-size: 3rem; font-family: 'Cormorant Garamond', serif; font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 15px; line-height: 1;
}
.why-me-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.why-me-card p { font-size: 0.9rem; line-height: 1.7; color: var(--muted-text); }

/* ===== STARS ===== */
.stars { margin-bottom: 15px; }
.stars i { color: var(--secondary-color); font-size: 0.9rem; margin-right: 2px; }

/* ===== CONTACT METHODS ===== */
.contact-methods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-bottom: 60px; }
.contact-method-card {
    text-align: center; padding: 35px 25px;
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px; transition: all 0.4s ease;
}
.contact-method-card:hover { border-color: rgba(155, 89, 182, 0.3); transform: translateY(-5px); box-shadow: var(--glow-purple); }
.contact-method-card .method-icon {
    font-size: 2.5rem; margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-method-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.contact-method-card p { font-size: 0.85rem; color: var(--muted-text); line-height: 1.6; }

/* ===== STATS BANNER ===== */
.stats-banner-section { padding: 0; background: none; }
.stats-banner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
}
.stats-banner-item {
    text-align: center; padding: 30px 15px;
    background: var(--card-bg); backdrop-filter: blur(16px);
    border: 1px solid var(--border-color); border-radius: 16px;
}
.stats-banner-item h3 {
    font-size: 2.8rem; margin-bottom: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stats-banner-item p { font-size: 0.85rem; color: var(--muted-text); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card {
    position: relative; padding: 30px;
    background: var(--card-bg-solid);
    border: 1px solid var(--border-color); border-radius: 16px;
    display: flex; flex-direction: column; transition: all 0.4s ease; overflow: hidden;
}
.testimonial-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--gradient-primary);
}
.testimonial-card:hover { border-color: rgba(155, 89, 182, 0.3); box-shadow: var(--glow-purple); }
.testimonial-card p { font-style: italic; margin-bottom: 20px; font-size: 1rem; flex-grow: 1; line-height: 1.7; color: var(--muted-text); }
.testimonial-author {
    display: flex; flex-direction: column; align-items: flex-end; gap: 2px; text-align: right;
}
.testimonial-author strong {
    font-size: 1rem; font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testimonial-author span {
    font-size: 0.8rem; color: var(--muted-text); font-weight: 400;
    -webkit-text-fill-color: var(--muted-text);
}

/* ===== FAQ ===== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    margin-bottom: 12px; border-radius: 12px;
    border: 1px solid var(--border-color); transition: all 0.3s ease; overflow: hidden;
}
.faq-item:hover { border-color: rgba(155, 89, 182, 0.3); }
.faq-item.active { border-color: rgba(155, 89, 182, 0.4); box-shadow: var(--glow-purple); }
.faq-question {
    width: 100%; padding: 22px 25px; text-align: left; background: none; border: none;
    color: var(--light-text); font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.8rem; transition: all 0.3s ease; color: var(--primary-color); }
.faq-item.active .faq-question::after { transform: rotate(45deg); color: var(--accent-blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; padding: 0 25px; }
.faq-answer p { padding-bottom: 22px; line-height: 1.8; color: var(--muted-text); }
.faq-item.active .faq-answer { max-height: 800px; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 16px 20px; border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--card-bg); backdrop-filter: blur(10px);
    color: var(--light-text); font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 20px rgba(155, 89, 182, 0.3); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(160, 155, 181, 0.5); }
.submit-btn {
    display: block; width: 100%; padding: 16px; border: none; border-radius: 50px;
    background: var(--gradient-primary); color: #fff;
    font-size: 1.05rem; font-weight: 600; cursor: pointer;
    transition: all 0.4s ease; box-shadow: var(--glow-purple);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(155, 89, 182, 0.5); }
.form-status { margin-top: 15px; text-align: center; height: 20px; }

/* ===== SECTION CTA ===== */
.section-cta {
    text-align: center; padding: 80px 0; position: relative; z-index: 1;
}
.section-cta h2 { margin-bottom: 20px; }
.section-cta p { color: var(--muted-text); margin-bottom: 30px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg); padding: 70px 0 40px;
    border-top: 1px solid rgba(155, 89, 182, 0.15);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px;
    margin-bottom: 50px; text-align: left;
}
.footer-brand .logo { font-size: 1.5rem; display: inline-block; margin-bottom: 15px; }
.footer-brand p { color: var(--muted-text); font-size: 0.9rem; line-height: 1.8; max-width: 320px; }
.footer-nav h4 {
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 2px; color: var(--light-text); margin-bottom: 20px;
}
.footer-nav a {
    display: block; color: var(--muted-text); text-decoration: none;
    font-size: 0.9rem; margin-bottom: 12px; transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--primary-light); }
.footer-nav a i { width: 18px; text-align: center; }
.footer-bottom {
    text-align: center; padding-top: 30px;
    border-top: 1px solid rgba(155, 89, 182, 0.15);
}
.footer-bottom p { color: var(--muted-text); font-size: 0.85rem; margin-top: 15px; }
.social-links { margin-bottom: 5px; }
.social-links a { color: var(--muted-text); margin: 0 14px; font-size: 1.4rem; transition: all 0.3s ease; }
.social-links a:hover { color: var(--primary-light); text-shadow: 0 0 8px rgba(155, 89, 182, 0.5); }

/* ===== FLOATING BUTTONS ===== */
.floating-telegram {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #0088cc, #00aaff);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease; animation: pulseGold 2s ease-in-out infinite;
}
.floating-telegram:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 35px rgba(0, 136, 204, 0.6); }
.scroll-to-top {
    position: fixed; bottom: 30px; right: 100px; z-index: 999;
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--card-bg-solid); backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    color: var(--light-text); font-size: 1.1rem; cursor: pointer;
    transition: all 0.4s ease; opacity: 0; pointer-events: none; transform: translateY(20px);
}
.scroll-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-to-top:hover { background: var(--primary-color); border-color: var(--primary-color); box-shadow: var(--glow-purple); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .burger-menu { display: block; }
    .nav-links {
        position: fixed; left: 0; top: 0; width: 100%; height: 100vh;
        background: rgba(10, 8, 18, 0.98); backdrop-filter: blur(15px);
        flex-direction: column; justify-content: center; align-items: center;
        transform: translateX(100%); transition: transform 0.5s ease-in-out;
    }
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.4rem; }
    .burger-menu.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .burger-menu.toggle .line2 { opacity: 0; }
    .burger-menu.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .work-areas-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .guarantees-grid { grid-template-columns: 1fr 1fr; }
    .stats-banner { grid-template-columns: 1fr 1fr; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; margin: 0 auto; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .logo { font-size: 1.5rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .about-content, .expert-content { flex-direction: column; }
    #about { text-align: center; }
    .about-text { text-align: center; }
    .about-text h3 { font-size: 2.2rem; }
    .process-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .guarantees-grid { grid-template-columns: 1fr; }
    .stats-banner { grid-template-columns: 1fr 1fr; }
    .expert-stats { margin-top: 30px; }
    .floating-telegram { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; right: 20px; }
    .scroll-to-top { right: 80px; bottom: 20px; }
    .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .stats-banner { grid-template-columns: 1fr; gap: 10px; }
    .stats-banner-item { padding: 20px 10px; }
    .stats-banner-item h3 { font-size: 2rem; }
    .hero-title { font-size: 2.2rem; }
}

/* ===== FUTURISTIC ANIMATIONS ===== */

/* --- Slide-in variants --- */
.slide-in-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-up { opacity: 0; transform: scale(0.85); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scale-up.visible { opacity: 1; transform: scale(1); }
.blur-in { opacity: 0; filter: blur(12px); transition: opacity 1s ease-out, filter 1s ease-out; }
.blur-in.visible { opacity: 1; filter: blur(0); }

/* --- Stagger delay for children --- */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* --- Neon glow card borders --- */
@keyframes neonBorderShift {
    0% { border-color: rgba(155, 89, 182, 0.4); box-shadow: 0 0 8px rgba(155, 89, 182, 0.2); }
    33% { border-color: rgba(52, 152, 219, 0.4); box-shadow: 0 0 8px rgba(52, 152, 219, 0.2); }
    66% { border-color: rgba(241, 196, 15, 0.3); box-shadow: 0 0 8px rgba(241, 196, 15, 0.15); }
    100% { border-color: rgba(155, 89, 182, 0.4); box-shadow: 0 0 8px rgba(155, 89, 182, 0.2); }
}
.service-card:hover, .guarantee-card:hover, .why-me-card:hover, .work-area-card:hover,
.testimonial-card:hover, .process-step:hover, .blog-post-card:hover {
    animation: neonBorderShift 3s ease-in-out infinite;
}

/* --- Animated gradient top bar on cards --- */
@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.service-card::before, .process-step::before, .why-me-card::before {
    background: linear-gradient(90deg, #9b59b6, #3498db, #f1c40f, #9b59b6);
    background-size: 200% 100%;
}
.service-card:hover::before, .process-step:hover::before, .why-me-card:hover::before {
    animation: gradientSlide 2s linear infinite;
}

/* --- Hero badge glow pulse --- */
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 12px rgba(155, 89, 182, 0.3), inset 0 0 12px rgba(155, 89, 182, 0.1); }
    50% { box-shadow: 0 0 25px rgba(155, 89, 182, 0.5), inset 0 0 20px rgba(155, 89, 182, 0.15); }
}
.hero-badge { animation: badgePulse 3s ease-in-out infinite; }

/* --- Typewriter cursor --- */
.typewriter-cursor {
    display: inline-block; width: 3px; height: 1em;
    background: var(--primary-light); margin-left: 4px;
    animation: cursorBlink 0.8s step-end infinite; vertical-align: text-bottom;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Particle canvas --- */
#particle-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/* --- Cyberpunk grid overlay --- */
.cyber-grid {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none; opacity: 0.03;
    background-image:
        linear-gradient(rgba(155, 89, 182, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 89, 182, 0.5) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* --- Magnetic hover on CTA buttons --- */
.cta-button, .hero-cta {
    position: relative; overflow: hidden;
}
.cta-button::after, .hero-cta::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.cta-button:hover::after, .hero-cta:hover::after {
    width: 300px; height: 300px;
}

/* --- Floating glow dots --- */
@keyframes floatDot1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }
@keyframes floatDot2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 30px); } }
@keyframes floatDot3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(15px, 15px); } }

.section-glow-dots { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.section-glow-dots span {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary-color); opacity: 0.25; filter: blur(2px);
}
.section-glow-dots span:nth-child(1) { top: 15%; left: 8%; animation: floatDot1 8s ease-in-out infinite; }
.section-glow-dots span:nth-child(2) { top: 60%; right: 12%; animation: floatDot2 10s ease-in-out infinite; background: var(--accent-blue); }
.section-glow-dots span:nth-child(3) { bottom: 20%; left: 45%; animation: floatDot3 7s ease-in-out infinite; background: var(--secondary-color); }

/* --- Image hover scan-line --- */
@keyframes scanLine {
    0% { top: -100%; }
    100% { top: 200%; }
}
.blog-post-card::after, .instagram-item::after {
    content: ''; position: absolute; left: 0; top: -100%;
    width: 100%; height: 50%;
    background: linear-gradient(transparent, rgba(155, 89, 182, 0.08), transparent);
    pointer-events: none; z-index: 2;
}
.blog-post-card:hover::after, .instagram-item:hover::after {
    animation: scanLine 1.2s ease-in-out;
}

/* --- Smooth number counter glow --- */
.stat-item h3, .stats-banner-item h3 {
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.3);
    transition: text-shadow 0.4s ease;
}
.stat-item:hover h3, .stats-banner-item:hover h3 {
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.6), 0 0 40px rgba(52, 152, 219, 0.3);
}

/* --- Parallax tilt on mouse for hero --- */
.hero-content { transition: transform 0.3s ease-out; }

/* --- Language switcher --- */
.lang-switcher {
    position: relative; display: flex; align-items: center; margin-left: 20px;
}
.lang-switcher-btn {
    background: rgba(155, 89, 182, 0.15); border: 1px solid rgba(155, 89, 182, 0.3);
    color: var(--light-text); padding: 6px 14px; border-radius: 8px;
    font-size: 0.8rem; cursor: pointer; display: flex; align-items: center; gap: 6px;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif; backdrop-filter: blur(8px);
}
.lang-switcher-btn:hover { background: rgba(155, 89, 182, 0.25); border-color: rgba(155, 89, 182, 0.5); }
.lang-switcher-btn i { font-size: 0.75rem; transition: transform 0.3s; }
.lang-switcher.open .lang-switcher-btn i { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 140px;
    background: rgba(10, 8, 18, 0.95); backdrop-filter: blur(15px);
    border: 1px solid rgba(155, 89, 182, 0.3); border-radius: 10px;
    overflow: hidden; opacity: 0; visibility: hidden;
    transform: translateY(-8px); transition: all 0.3s ease; z-index: 1001;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; color: var(--muted-text); text-decoration: none;
    font-size: 0.85rem; transition: all 0.2s ease; border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { background: rgba(155, 89, 182, 0.15); color: var(--light-text); }
.lang-dropdown a.active-lang { color: var(--primary-light); background: rgba(155, 89, 182, 0.1); }
.lang-flag { font-size: 1.1rem; }

@media (max-width: 992px) {
    .lang-switcher { margin-left: 0; margin-right: 15px; }
    .lang-dropdown { right: auto; left: 0; }
}

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