/* ============================================
   BoostLab — style.css
   Fonts: Plus Jakarta Sans, Fira Code (OFL)
   Colors: Purple/Pink/Orange brand palette
   ============================================ */

/* === RESET & VARIABLES === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root {
    --purple: #7B2FBE;
    --purple-deep: #5B1F94;
    --purple-light: #9B4FDE;
    --orange: #FF6B35;
    --orange-warm: #FF8C42;
    --pink: #E84393;
    --gradient: linear-gradient(135deg, #7B2FBE 0%, #E84393 50%, #FF6B35 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(123,47,190,0.08), rgba(232,67,147,0.04), rgba(255,107,53,0.02));
    --bg: #FAFBFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0D0B14;
    --text-dark: #1A1A2E;
    --text-body: #4A4A68;
    --text-light: #8888A0;
    --border: #E8E8F0;
    --border-hover: #D0D0E0;
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-purple: 0 8px 30px rgba(123,47,190,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Plus Jakarta Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Fira Code', monospace;
    --max-w: 1200px;
    --nav-h: 80px;
}

html { scroll-behavior: smooth }
body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block }
a { text-decoration: none; color: inherit }
ul { list-style: none }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.15 }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -1.5px }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -1px }
h3 { font-size: 1.25rem; letter-spacing: -0.3px }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px }
section { padding: 100px 0 }
.center { text-align: center }
.center-desc { text-align: center; margin-left: auto; margin-right: auto }
.alt-bg { background: var(--bg) }

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.section-title { margin-bottom: 16px }
.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 400;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s ease; cursor: pointer;
    border: none; font-family: var(--font);
}
.btn-primary {
    background: var(--gradient); color: #fff;
    box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(123,47,190,0.25) }
.btn-outline {
    background: transparent; color: var(--text-dark);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple) }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.2) }
.btn-outline-light:hover { border-color: #fff; color: #fff }

/* === NAVIGATION === */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(250,251,252,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 2px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; font-style: italic; text-decoration: none }
.logo-icon { font-style: normal; font-size: 1.3rem; margin-right: 4px }
.logo-boost { color: var(--text-dark) }
.logo-lab { background: linear-gradient(135deg, #7B2FBE, #E84393); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.footer-logo { display: flex; align-items: center; gap: 2px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; font-style: italic; margin-bottom: 16px }
.footer-logo .logo-boost { color: #fff }
.footer-logo .logo-icon { font-style: normal; font-size: 1.3rem; margin-right: 4px }


.nav-links { display: flex; align-items: center; gap: 32px }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-body); transition: color 0.3s }
.nav-links a:hover { color: var(--purple) }
.nav-right { display: flex; align-items: center; gap: 16px }

.lang-switch { display: flex; gap: 4px }
.lang-btn {
    padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    background: transparent; border: 1px solid var(--border); color: var(--text-light);
    cursor: pointer; transition: all 0.2s; font-family: var(--font);
}
.lang-btn.active { background: var(--purple); color: #fff; border-color: var(--purple) }
.lang-btn:hover:not(.active) { border-color: var(--purple); color: var(--purple) }

.nav-cta {
    background: var(--gradient); color: #fff;
    padding: 10px 24px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.85rem;
    transition: all 0.3s; border: none; cursor: pointer; font-family: var(--font);
}
.nav-cta:hover { box-shadow: var(--shadow-purple); transform: translateY(-1px) }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px }
.burger span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s }

.mob-menu { display: none }
.mob-menu.open {
    display: flex; flex-direction: column; gap: 16px;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(250,251,252,0.98); backdrop-filter: blur(20px);
    padding: 32px; z-index: 999;
}
.mob-menu a { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); padding: 12px 0; border-bottom: 1px solid var(--border) }

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: var(--nav-h); position: relative; overflow: hidden; background: #fff;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,47,190,0.06), rgba(232,67,147,0.03), transparent 70%);
    pointer-events: none;
}
.hero .container { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1 }
.hero-text { flex: 1 }
.hero-visual { flex: 1; display: flex; justify-content: center }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-subtle); border: 1px solid rgba(123,47,190,0.12);
    padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    color: var(--purple); margin-bottom: 24px;
}
.hero-badge::before {
    content: ''; width: 6px; height: 6px; background: var(--purple);
    border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1) }
    50% { opacity: 0.5; transform: scale(1.4) }
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: var(--text-body); max-width: 520px; margin-bottom: 36px; line-height: 1.7; font-weight: 400 }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px }
.hero-stats { display: flex; gap: 40px }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); letter-spacing: -1px }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500 }

/* Hero floating cards */
.hero-cards { position: relative; width: 420px; height: 420px }
.float-card {
    position: absolute; background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.float-card:hover { transform: translateY(-4px) !important }
.fc1 { top: 0; left: 20px; animation: float-a 6s ease-in-out infinite }
.fc2 { top: 80px; right: 0; animation: float-b 7s ease-in-out infinite }
.fc3 { bottom: 80px; left: 0; animation: float-a 5s ease-in-out infinite 1s }
.fc4 { bottom: 0; right: 40px; animation: float-b 8s ease-in-out infinite 0.5s }
@keyframes float-a { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes float-b { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-8px) } }
.fc-icon { font-size: 1.4rem; margin-bottom: 8px }
.fc-title { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px }
.fc-sub { font-size: 0.75rem; color: var(--text-light) }
.fc-bar { height: 4px; border-radius: 2px; background: var(--border); margin-top: 10px; overflow: hidden }
.fc-bar-fill { height: 100%; border-radius: 2px; background: var(--gradient) }

/* === TRUST BAR === */
.trust-bar { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-white) }
.trust-inner { text-align: center }
.trust-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.3; filter: grayscale(1) }
.trust-logos span { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text-dark) }

/* === SERVICE CARDS === */
.service-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 32px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow); transform: translateY(-4px) }
.service-card:hover::after { opacity: 1 }
.card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--gradient-subtle); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6 }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px }
.tag {
    font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 50px;
    background: rgba(123,47,190,0.06); color: var(--purple);
}

/* === DARK SECTION (Ready Projects) === */
.dark-section { background: var(--bg-dark); color: #fff; position: relative; overflow: hidden }
.dark-section::before {
    content: ''; position: absolute; top: 0; right: 0; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(123,47,190,0.15), transparent 70%); pointer-events: none;
}
.dark-section .section-title { color: #fff }
.dark-section .section-desc { color: rgba(255,255,255,0.5) }

.ready-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 36px 32px; transition: all 0.4s ease;
}
.ready-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(123,47,190,0.4); transform: translateY(-4px) }
.ready-emoji { font-size: 2rem; margin-bottom: 16px }
.ready-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.15rem }
.ready-card > p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px }
.ready-price {
    font-size: 1.6rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 4px;
}
.ready-note { font-size: 0.78rem; color: rgba(255,255,255,0.35) }
.ready-features { margin-top: 16px; display: flex; flex-direction: column; gap: 6px }
.ready-features span { font-size: 0.82rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 8px }
.ready-features span::before { content: '\2713'; color: var(--purple-light); font-weight: 700; font-size: 0.75rem }

.addon-bar {
    margin-top: 40px; padding: 28px 32px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px; position: relative; z-index: 1;
}
.addon-text h4 { color: #fff; font-size: 1rem; margin-bottom: 4px }
.addon-text p { color: rgba(255,255,255,0.4); font-size: 0.88rem }
.addon-prices { display: flex; gap: 24px }
.addon-item { text-align: center }
.addon-val { font-size: 1.2rem; font-weight: 800; color: #fff }
.addon-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px }

/* === PRICING CARDS === */
.price-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px 32px; transition: all 0.3s ease; position: relative;
}
.price-card.featured { border-color: var(--purple); box-shadow: var(--shadow-purple) }
.price-badge {
    position: absolute; top: -1px; right: 24px;
    background: var(--gradient); color: #fff; font-size: 0.68rem; font-weight: 700;
    padding: 6px 14px; border-radius: 0 0 8px 8px; text-transform: uppercase; letter-spacing: 1px;
}
.price-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--purple); margin-bottom: 8px }
.price-value { font-size: 2.4rem; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; margin-bottom: 4px }
.price-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6 }
.price-features { margin-bottom: 28px }
.price-features li { font-size: 0.88rem; color: var(--text-body); padding: 7px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border) }
.price-features li::before { content: '\2713'; color: var(--purple); font-weight: 700; font-size: 0.8rem }
.price-btn { display: block; text-align: center; padding: 13px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; transition: all 0.3s }
.price-card:not(.featured) .price-btn { border: 1.5px solid var(--border); color: var(--text-dark) }
.price-card:not(.featured) .price-btn:hover { border-color: var(--purple); color: var(--purple) }
.price-card.featured .price-btn { background: var(--gradient); color: #fff; box-shadow: var(--shadow-purple) }
.pricing-note { text-align: center; margin-top: 32px; padding: 20px; background: var(--gradient-subtle); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text-body) }

/* === SMM CARDS === */
.smm-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 32px; transition: all 0.3s ease;
}
.smm-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow); transform: translateY(-3px) }
.smm-card.featured { border-color: var(--purple); box-shadow: var(--shadow-purple) }
.smm-tier { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 8px }
.smm-card.featured .smm-tier { color: var(--purple) }
.smm-price { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px }
.smm-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-light) }
.smm-card > p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.6 }
.smm-features { margin-bottom: 24px }
.smm-features li { font-size: 0.85rem; color: var(--text-body); padding: 6px 0; display: flex; align-items: center; gap: 8px }
.smm-features li::before { content: '\2713'; color: var(--orange); font-weight: 700; font-size: 0.75rem }
.smm-card.featured .smm-features li::before { color: var(--purple) }

/* === CALCULATOR === */
.calc-wrapper {
    max-width: 800px; margin: 0 auto;
    background: var(--bg-white); border: 1px solid var(--border); border-radius: 20px;
    padding: 48px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); position: relative; overflow: hidden;
}
.calc-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient) }
.calc-group { margin-bottom: 28px }
.calc-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; display: block }
.calc-options { display: flex; flex-wrap: wrap; gap: 8px }
.calc-opt {
    padding: 10px 20px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500;
    border: 1.5px solid var(--border); background: var(--bg); color: var(--text-body);
    cursor: pointer; transition: all 0.2s; font-family: var(--font);
}
.calc-opt:hover { border-color: var(--purple); color: var(--purple) }
.calc-opt.selected { background: var(--purple); color: #fff; border-color: var(--purple) }
.calc-checks { display: flex; flex-wrap: wrap; gap: 10px }
.calc-check {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border); background: var(--bg);
    cursor: pointer; transition: all 0.2s; font-size: 0.85rem; color: var(--text-body);
}
.calc-check:hover { border-color: var(--purple) }
.calc-check.checked { border-color: var(--purple); background: rgba(123,47,190,0.05); color: var(--purple) }
.calc-check input { display: none }
.calc-divider { height: 1px; background: var(--border); margin: 28px 0 }
.calc-result { text-align: center; padding: 32px; background: var(--gradient-subtle); border-radius: var(--radius) }
.calc-result-label { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px }
.calc-result-price {
    font-size: 2.8rem; font-weight: 800;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 8px;
}
.calc-result-note { font-size: 0.82rem; color: var(--text-light) }

/* === PORTFOLIO === */
.folio-card {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s ease;
}
.folio-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px) }
.folio-img { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden }
.folio-icon { font-size: 3rem; opacity: 0.6 }
.folio-mockup { width: 85%; height: auto; opacity: 0.8; transition: transform 0.3s }
.folio-card:hover .folio-mockup { transform: scale(1.03) }
.folio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(123,47,190,0.85), rgba(232,67,147,0.7));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.folio-card:hover .folio-overlay { opacity: 1 }
.folio-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; border: 1.5px solid #fff; padding: 10px 24px; border-radius: var(--radius-sm) }
.folio-info { padding: 24px 28px }
.folio-info h3 { margin-top: 8px; margin-bottom: 6px }
.folio-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5 }

/* === SUPPORT === */
.support-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center }
.support-features { display: flex; flex-direction: column; gap: 20px }
.sup-feat { display: flex; gap: 16px; align-items: flex-start }
.sup-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--gradient-subtle); display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.sup-feat h4 { font-size: 1rem; margin-bottom: 4px }
.sup-feat p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5 }
.support-cta-box {
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px; text-align: center;
}
.support-cta-box h3 { font-size: 1.4rem; margin-bottom: 12px }
.support-cta-box > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.6 }

/* === PROCESS === */
.process-step { text-align: center; padding: 28px 20px }
.step-num {
    font-size: 3.5rem; font-weight: 900;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.15; line-height: 1; margin-bottom: 12px;
}
.process-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5 }

/* === CTA SECTION === */
.cta-section {
    background: var(--bg-dark); padding: 100px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,47,190,0.12), transparent 70%); pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1 }
.cta-section > div > p { color: rgba(255,255,255,0.5); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1 }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1 }
.cta-contacts { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; position: relative; z-index: 1 }
.cta-ci { color: rgba(255,255,255,0.7); font-size: 1.05rem; font-weight: 500; transition: color 0.3s; display: flex; align-items: center; gap: 6px }
.cta-ci:hover { color: #fff }

/* === FOOTER === */
footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 32px }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px }
.footer-brand { max-width: 300px }
.footer-brand img { display: none }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.6 }
.footer-cols { display: flex; gap: 64px }
.footer-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 14px }
.footer-col a { display: block; color: rgba(255,255,255,0.4); font-size: 0.88rem; padding: 3px 0; transition: color 0.3s }
.footer-col a:hover { color: var(--purple-light) }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem }
.footer-legal { display: flex; gap: 20px }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color 0.3s }
.footer-legal a:hover { color: rgba(255,255,255,0.6) }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
    background: var(--bg-white); border-top: 1px solid var(--border);
    padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
    gap: 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); flex-wrap: wrap;
}
.cookie-banner.hidden { display: none }
.cookie-text { font-size: 0.85rem; color: var(--text-body); max-width: 700px; line-height: 1.5 }
.cookie-text a { color: var(--purple); font-weight: 600 }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0 }
.cookie-accept, .cookie-decline {
    padding: 10px 24px; border-radius: var(--radius-sm); font-size: 0.85rem;
    font-weight: 600; cursor: pointer; font-family: var(--font);
}
.cookie-accept { background: var(--gradient); color: #fff; border: none }
.cookie-decline { background: transparent; color: var(--text-body); border: 1.5px solid var(--border) }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) }
.reveal.visible { opacity: 1; transform: translateY(0) }
/* Fallback if JS fails */
.no-js .reveal { opacity: 1; transform: none }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero .container { flex-direction: column; text-align: center; gap: 40px }
    .hero-sub { margin-left: auto; margin-right: auto }
    .hero-buttons { justify-content: center }
    .hero-stats { justify-content: center }
    .hero-cards { width: 340px; height: 340px }
    .grid-3 { grid-template-columns: repeat(2, 1fr) }
    .grid-4 { grid-template-columns: repeat(2, 1fr) }
    .support-layout { grid-template-columns: 1fr }
}
@media (max-width: 768px) {

    section { padding: 48px 0 }
    .container { padding: 0 16px }
    .nav-links { display: none }
    .burger { display: flex }
    .grid-3 { grid-template-columns: 1fr 1fr; gap: 12px }
    .grid-2 { grid-template-columns: 1fr 1fr; gap: 12px }
    .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px }
    .hero { min-height: auto; padding-top: 90px; padding-bottom: 40px }
    .hero-cards { display: none }
    .hero-stats { flex-wrap: wrap; gap: 16px }
    .stat-num { font-size: 1.4rem }
    .stat-label { font-size: 0.7rem }
    h1 { font-size: 2rem }
    h2 { font-size: 1.5rem }
    .section-title { margin-bottom: 10px }
    .section-desc { margin-bottom: 28px; font-size: 0.9rem }
    .hero-sub { font-size: 0.95rem; margin-bottom: 24px }
    .hero-buttons { margin-bottom: 32px }
    .hero-buttons .btn { padding: 12px 24px; font-size: 0.85rem }
    .service-card { padding: 20px 16px }
    .service-card p { font-size: 0.8rem }
    .card-icon { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 12px }
    .ready-card { padding: 20px 16px }
    .ready-card > p { font-size: 0.78rem; margin-bottom: 12px }
    .ready-emoji { font-size: 1.5rem; margin-bottom: 10px }
    .ready-price { font-size: 1.3rem }
    .ready-features span { font-size: 0.72rem }
    .price-card { padding: 24px 16px }
    .price-value { font-size: 1.8rem }
    .price-desc { font-size: 0.78rem; margin-bottom: 16px }
    .price-features li { font-size: 0.78rem; padding: 5px 0 }
    .smm-card { padding: 24px 16px }
    .smm-price { font-size: 1.3rem }
    .smm-features li { font-size: 0.78rem }
    .folio-img { height: 140px }
    .folio-info { padding: 16px }
    .folio-info h3 { font-size: 1rem }
    .folio-info p { font-size: 0.78rem }
    .calc-wrapper { padding: 24px 16px }
    .calc-opt { padding: 8px 14px; font-size: 0.78rem }
    .calc-check { padding: 8px 12px; font-size: 0.78rem }
    .calc-result-price { font-size: 2.2rem }
    .process-step { padding: 16px 12px }
    .step-num { font-size: 2.5rem }
    .support-layout { gap: 24px }
    .support-cta-box { padding: 24px }
    .footer-cols { flex-direction: column; gap: 24px }
    .footer-top { gap: 24px }
    .addon-prices { flex-direction: row; gap: 16px }
    .addon-bar { flex-direction: column; text-align: center; padding: 20px }
    .cta-section { padding: 60px 0 }
    .cta-contacts { gap: 16px; flex-direction: column; align-items: center }
    .cta-ci { font-size: 0.9rem }
    .trust-logos { gap: 24px }
    .trust-logos span { font-size: 1rem }
    .tags { gap: 4px }
    .tag { font-size: 0.6rem; padding: 3px 8px }
    .cookie-banner { padding: 14px 16px; gap: 12px }
    .cookie-text { font-size: 0.78rem }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr }
}
/* === MOBILE FIXES (priority overrides) === */
@media (max-width: 768px) {
    /* Nav compact */
    .nav-right { gap: 6px }
    .nav-cta { padding: 7px 12px; font-size: 0.72rem }
    .lang-btn { padding: 4px 6px; font-size: 0.6rem }
    .nav-logo { font-size: 1.15rem; gap: 1px }
    .logo-icon { font-size: 0.95rem; margin-right: 2px }
    .nav-inner { padding: 0 10px }

    /* Pricing 3 cols */
    .grid-3.keep-3 { grid-template-columns: repeat(3, 1fr) !important; gap: 8px }
    .grid-4.keep-3 { grid-template-columns: repeat(4, 1fr) !important; gap: 6px }
    .keep-3 .price-card { padding: 14px 8px }
    .keep-3 .price-value { font-size: 1.3rem }
    .keep-3 .price-tier { font-size: 0.6rem; letter-spacing: 1px }
    .keep-3 .price-desc { font-size: 0.68rem; margin-bottom: 10px; line-height: 1.4 }
    .keep-3 .price-features li { font-size: 0.68rem; padding: 3px 0 }
    .keep-3 .price-btn { padding: 8px; font-size: 0.72rem }
    .keep-3 .price-badge { font-size: 0.55rem; padding: 3px 8px; right: 6px }
    .keep-3 .smm-card { padding: 14px 8px }
    .keep-3 .smm-price { font-size: 1.1rem }
    .keep-3 .smm-tier { font-size: 0.6rem }
    .keep-3 .smm-card h3 { font-size: 0.85rem }
    .keep-3 .smm-card > p { font-size: 0.68rem; line-height: 1.4 }
    .keep-3 .smm-features li { font-size: 0.68rem }
    .keep-3 .process-step { padding: 12px 8px }
    .keep-3 .step-num { font-size: 2rem }
    .keep-3 .process-step h3 { font-size: 0.85rem }
    .keep-3 .process-step p { font-size: 0.7rem }
}

@media (max-width: 480px) {
    .grid-3.keep-3 { grid-template-columns: repeat(3, 1fr) !important; gap: 6px }
    .grid-4.keep-3 { grid-template-columns: repeat(2, 1fr) !important; gap: 6px }
    .keep-3 .price-value { font-size: 1.1rem }
    .keep-3 .price-features li { font-size: 0.62rem }
    .keep-3 .smm-price { font-size: 1rem }
}

/* === PROJECT MODAL === */
.project-modal { display: none; position: fixed; inset: 0; z-index: 100000; align-items: center; justify-content: center }
.project-modal.open { display: flex }
.pm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px) }
.pm-content { position: relative; background: var(--bg-white); border-radius: 20px; max-width: 680px; width: 92%; max-height: 85vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2); animation: pmIn 0.3s ease }
@keyframes pmIn { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
.pm-close { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.06); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 2; color: var(--text-body); transition: all 0.2s }
.pm-close:hover { background: rgba(0,0,0,0.12) }
.pm-mockup { padding: 32px; background: var(--gradient-subtle); border-radius: 20px 20px 0 0; display: flex; justify-content: center }
.pm-mockup svg { width: 100%; max-width: 400px; height: auto }
.pm-info { padding: 28px 32px 32px }
.pm-info h3 { font-size: 1.4rem; margin-bottom: 8px }
.pm-info > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6 }
.pm-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px }
.pm-tags span { font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; background: rgba(123,47,190,0.06); color: var(--purple) }
.pm-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px }
.pm-stat { text-align: center; padding: 12px 8px; background: var(--bg); border-radius: 10px }
.pm-stat-num { font-size: 1.2rem; font-weight: 800; color: var(--text-dark) }
.pm-stat-label { font-size: 0.7rem; color: var(--text-light); margin-top: 2px }
.pm-details h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px }
.pm-details ul { margin: 0; padding: 0; list-style: none }
.pm-details li { font-size: 0.85rem; color: var(--text-body); padding: 5px 0; display: flex; align-items: center; gap: 8px }
.pm-details li::before { content: '\2713'; color: var(--purple); font-weight: 700; font-size: 0.75rem }
@media (max-width: 768px) {
    .pm-content { width: 96%; max-height: 90vh }
    .pm-info { padding: 20px }
    .pm-detail-grid { grid-template-columns: repeat(2, 1fr) }
    .pm-mockup { padding: 20px }
}