:root {
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --primary-lighter: #FCE4EC;
    --accent: #FF5252;
    --accent-gradient: linear-gradient(135deg, #E91E63 0%, #FF5252 100%);
    --bg-main: #F0F2F5;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1B2E;
    --bg-darker: #12131F;
    --bg-footer: #0D0E1A;
    --bg-primary: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #6B7280;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --border-color: #E5E7EB;
    --card-bg: #FFFFFF;
    --hover-bg: #FCE4EC;
    --primary-color: #E91E63;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-pink: 0 4px 15px rgba(233,30,99,0.3);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* DARK MODE */
body.dark-mode {
    --bg-main: #0F1017;
    --bg-white: #1A1B2E;
    --bg-primary: #1A1B2E;
    --text-dark: #E5E7EB;
    --text-gray: #9CA3AF;
    --text-light: #6B7280;
    --text-primary: #E5E7EB;
    --text-secondary: #9CA3AF;
    --border: #2D2E3F;
    --border-light: #252636;
    --border-color: #2D2E3F;
    --card-bg: #1A1B2E;
    --hover-bg: rgba(248, 187, 208, 0.08);
    --primary-color: #F8BBD0;
    --shadow: 0 2px 15px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
}
body.dark-mode .header { background: #1A1B2E; }
body.dark-mode .top-bar { background: #12131F; border-color: #2D2E3F; }
body.dark-mode .main-nav { background: #1A1B2E; border-color: #2D2E3F; }
body.dark-mode .search-bar { background: #252636; }
body.dark-mode .search-bar input { color: #E5E7EB; }
body.dark-mode .modal-content { background: #1A1B2E; }
body.dark-mode .seo-box::after { background: linear-gradient(transparent, #1A1B2E); }

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* TOP BAR */
.top-bar { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 6px 0; font-size: 13px; color: var(--text-gray); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { display: flex; align-items: center; gap: 6px; }
.top-bar-left a i { color: var(--primary); }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar-right a { font-weight: 500; }
.top-bar-right a:hover { color: var(--primary); }
.theme-toggle { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.theme-toggle:hover { border-color: var(--primary); transform: rotate(180deg); }

/* HEADER */
.header { background: var(--bg-white); padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); transition: var(--transition); }
.header.scrolled { padding: 8px 0; box-shadow: var(--shadow-lg); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 24px; font-weight: 700; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; }
.logo-text-dark { color: var(--text-dark); }
.logo-text-pink { color: var(--primary); }
.search-bar { display: flex; align-items: center; background: var(--bg-main); border-radius: 50px; padding: 8px 16px; width: 320px; gap: 8px; border: 2px solid transparent; transition: var(--transition); }
.search-bar:focus-within { border-color: var(--primary); background: var(--bg-white); box-shadow: 0 0 0 4px rgba(233,30,99,0.1); }
.search-icon { color: var(--text-light); font-size: 14px; }
.search-bar input { border: none; background: none; outline: none; font-family: inherit; font-size: 14px; width: 100%; color: var(--text-dark); }
.search-bar input::placeholder { color: var(--text-light); }
.search-bar button { background: var(--primary); border: none; border-radius: 50%; width: 32px; height: 32px; min-width: 32px; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 12px; }
.search-bar button:hover { background: var(--primary-dark); transform: scale(1.1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-main); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); position: relative; color: var(--text-gray); border: none; font-size: 16px; }
.header-icon:hover { background: var(--primary-lighter); color: var(--primary); transform: translateY(-2px); }
.header-icon .badge { position: absolute; top: -2px; right: -2px; background: var(--primary); color: white; font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid var(--bg-white); }
.notification-badge { background: #FF5252 !important; animation: pulse 2s infinite; }
.btn-login { background: var(--primary); color: white; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: var(--transition); white-space: nowrap; }
.btn-login:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--text-dark); cursor: pointer; padding: 8px; }

/* NAV */
.main-nav { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 0; }
.main-nav .container { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.main-nav .container::-webkit-scrollbar { display: none; }
.main-nav a { padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text-dark); display: flex; align-items: center; gap: 6px; position: relative; transition: var(--transition); white-space: nowrap; }
.main-nav a:hover { color: var(--primary); }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0); width: 60%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0; transition: transform 0.3s ease; }
.main-nav a:hover::after { transform: translateX(-50%) scaleX(1); }
.main-nav a i { color: var(--primary); font-size: 13px; }

/* HERO */
.hero { padding: 30px 0; }
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; animation: fadeInUp 0.8s ease; }
.hero-main { background: linear-gradient(135deg, var(--primary), #FF6B6B, var(--accent)); background-size: 200% 200%; animation: gradientShift 8s ease infinite; border-radius: var(--radius-xl); padding: 40px; color: white; position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.hero-bg-shape { position: absolute; top: -80px; right: -60px; width: 400px; height: 400px; background: rgba(255,255,255,0.08); border-radius: 50%; pointer-events: none; }
.hero-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 55%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 16px; animation: fadeInDown 0.6s ease 0.2s both; }
.hero-content h1 { font-size: 28px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; animation: fadeInLeft 0.6s ease 0.3s both; }
.hero-content p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; line-height: 1.7; animation: fadeInLeft 0.6s ease 0.4s both; }
.hero-rating { display: flex; align-items: center; gap: 12px; animation: fadeInUp 0.6s ease 0.5s both; }
.hero-stars { color: #FFD700; font-size: 16px; display: flex; gap: 2px; }
.hero-rating-badge { background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 4px 14px; border-radius: 50px; font-size: 14px; font-weight: 700; }
.hero-play-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; transition: var(--transition); }
.hero-play-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }
.hero-image { position: absolute; right: 0; bottom: 0; width: 45%; z-index: 1; animation: fadeInRight 0.8s ease 0.3s both; }
.hero-character { width: 100%; height: auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)); animation: float 6s ease-in-out infinite; }
.hero-side { display: flex; flex-direction: column; gap: 20px; }
.hero-card { flex: 1; border-radius: var(--radius-xl); padding: 24px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; color: white; transition: var(--transition); min-height: 148px; }
.hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.hero-card-organic { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.hero-card-tools { background: linear-gradient(135deg, #10B981, #059669); }
.hero-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; transition: var(--transition-slow); }
.hero-card:hover .hero-card-bg { opacity: 0.4; transform: scale(1.05); }
.hero-card-content { position: relative; z-index: 2; }
.hero-card h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; }
.hero-card p { font-size: 12px; opacity: 0.9; margin-top: 4px; }
.card-btn { position: relative; z-index: 2; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 50px; font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.card-btn:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }

/* PLATFORMS */
.platforms { padding: 40px 0; }
.section-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.section-title i { color: var(--primary); }
.platforms-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.platform-item { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; transition: var(--transition); }
.platform-item:hover { transform: translateY(-8px); }
.platform-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; transition: var(--transition); box-shadow: var(--shadow); }
.platform-icon.instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); }
.platform-icon.tiktok { background: #010101; }
.platform-icon.twitter { background: #1DA1F2; }
.platform-icon.youtube { background: #FF0000; }
.platform-icon.facebook { background: #1877F2; }
.platform-icon.twitch { background: #9146FF; }
.platform-icon.kick { background: #53FC18; color: #000; }
.platform-icon.telegram { background: #0088CC; }
.platform-item:hover .platform-icon { transform: scale(1.15) rotate(5deg); box-shadow: var(--shadow-lg); }
.platform-name { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--text-gray); letter-spacing: 0.5px; }
.show-all-btn { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 24px auto 0; color: var(--text-gray); font-size: 13px; font-weight: 500; cursor: pointer; transition: var(--transition); padding: 10px 24px; border-radius: 50px; background: var(--bg-white); box-shadow: var(--shadow); }
.show-all-btn:hover { color: var(--primary); transform: translateY(-2px); }

/* PARTNERS */
.partners { padding: 30px 0; }
.partners-box { background: var(--bg-white); border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow); }
.partners-slider { overflow: hidden; position: relative; }
.partners-track { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.partners-track::-webkit-scrollbar { display: none; }
.partner-card { min-width: 160px; text-align: center; cursor: pointer; transition: var(--transition); scroll-snap-align: start; }
.partner-card:hover { transform: scale(1.05); }
.partner-avatar { width: 150px; height: 200px; border-radius: 20px; overflow: hidden; margin: 0 auto 10px; position: relative; box-shadow: var(--shadow); }
.partner-avatar img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.partner-card:hover .partner-avatar img { transform: scale(1.08); }
.partner-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: rgba(233,30,99,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; opacity: 0; transition: var(--transition); }
.partner-card:hover .partner-play { opacity: 1; }
.partner-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(233,30,99,0.9)); color: white; padding: 20px 8px 8px; font-size: 11px; font-weight: 600; text-align: center; }

/* WHY US */
.why-us { padding: 40px 0; }
.why-us-grid { display: flex; flex-direction: column; gap: 30px; }
.why-us-box { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; background: linear-gradient(135deg, var(--primary), #7C3AED); border-radius: var(--radius-xl); overflow: hidden; color: white; align-items: stretch; }
.why-us-image { position: relative; overflow: hidden; }
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }
.why-us-content { padding: 40px; }
.why-us-content h2 { font-size: 13px; opacity: 0.8; margin-bottom: 4px; font-weight: 400; }
.why-us-content h3 { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.why-us-content p { font-size: 14px; opacity: 0.9; margin-bottom: 14px; line-height: 1.8; }
.btn-about { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--primary); padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 14px; margin-top: 12px; transition: var(--transition); }
.btn-about:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-about i { transition: var(--transition); }
.btn-about:hover i { transform: translateX(4px); }
.why-us-characters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.character-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; box-shadow: var(--shadow); cursor: pointer; }
.character-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.character-card:hover img { transform: scale(1.05); }
.character-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 40px 12px 12px; color: white; }
.character-overlay span { font-size: 12px; font-weight: 600; }

/* CAMPAIGNS */
.campaigns { padding: 20px 0 40px; }
.campaigns-header { margin-bottom: 20px; }
.campaigns-header h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.campaigns-header h3 i { color: var(--primary); }
.campaigns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.campaign-card { background: var(--bg-white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; display: block; }
.campaign-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.campaign-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); }
.campaign-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.5; }
.campaign-badge { display: inline-block; padding: 3px 12px; border-radius: 50px; font-size: 11px; font-weight: 600; margin-bottom: 10px; }
.campaign-badge.active { background: #DCFCE7; color: #16A34A; }
.campaign-badge.ended { background: #FEE2E2; color: #DC2626; }

/* DISCOVERY */
.discovery { padding: 50px 0; background: var(--bg-dark); }
.discovery-header { text-align: center; margin-bottom: 40px; }
.discovery-header .hashtag { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #FFD700, #FF6B6B, #E91E63); background-size: 200% 200%; animation: gradientShift 4s ease infinite; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; display: block; margin-bottom: 8px; }
.discovery-header h2 { font-size: 32px; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 2px; }
.discovery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.discovery-column { background: rgba(255,255,255,0.05); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); }
.discovery-column-header { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.col-label { color: var(--text-light); font-size: 12px; }
.col-title { color: white; font-size: 15px; font-weight: 600; }
.product-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); transition: var(--transition); gap: 10px; }
.product-row:last-child { border-bottom: none; }
.product-row:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.product-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.product-platform-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.product-info .name { color: white; font-size: 13px; font-weight: 500; }
.product-info .name a { color: white; }
.product-info .name a:hover { color: var(--primary-light); }
.product-info .desc { color: var(--text-light); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-price { color: #FFD700; font-size: 14px; font-weight: 700; white-space: nowrap; }
.product-cart { width: 34px; height: 34px; min-width: 34px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; cursor: pointer; transition: var(--transition); border: none; font-size: 13px; }
.product-cart:hover { background: var(--primary-dark); transform: scale(1.1); box-shadow: var(--shadow-pink); }

/* STATS */
.stats { padding: 0; margin: -30px 0 30px; position: relative; z-index: 10; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: linear-gradient(135deg, var(--primary), #FF6B6B, var(--accent)); background-size: 200% 200%; animation: gradientShift 6s ease infinite; border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow-xl); }
.stat-item { text-align: center; color: white; padding: 10px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.2); }
.stat-icon { font-size: 28px; margin-bottom: 8px; opacity: 0.9; }
.stat-number { font-size: 30px; font-weight: 800; }
.stat-label { font-size: 13px; opacity: 0.85; margin-top: 4px; }

/* TESTIMONIALS */
.testimonials { padding: 40px 0 50px; }
.testimonials-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
.testimonials-left { position: sticky; top: 100px; }
.review-girl-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-lg); }
.review-girl-image img { width: 100%; height: auto; }
.google-review { background: var(--bg-white); border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow); }
.google-logo { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.google-review .stars { color: #FFD700; font-size: 18px; margin: 6px 0; }
.google-review .google-text { font-size: 14px; font-weight: 600; color: var(--primary); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card { background: var(--bg-white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border-light); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar-img { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary-light); flex-shrink: 0; }
.review-avatar-img img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 14px; }
.review-title { font-size: 12px; color: var(--text-gray); }
.review-stars { color: #FFD700; font-size: 14px; }
.review-text { font-size: 13px; color: var(--text-gray); line-height: 1.8; }
.btn-more-reviews { display: block; width: 100%; max-width: 400px; margin: 24px auto 0; text-align: center; background: var(--primary); color: white; padding: 14px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; font-size: 14px; font-family: inherit; }
.btn-more-reviews:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-pink); }

/* FAQ */
.faq { padding: 40px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-item { background: var(--bg-white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.open { border-color: var(--primary); }
.faq-question { display: flex; align-items: center; gap: 12px; padding: 16px 20px; cursor: pointer; transition: var(--transition); }
.faq-item:hover .faq-question { background: var(--primary-lighter); }
.faq-icon { width: 32px; height: 32px; min-width: 32px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); color: white; }
.faq-question span { font-size: 13px; font-weight: 500; flex: 1; }
.faq-arrow { font-size: 12px; color: var(--text-light); transition: var(--transition); margin-left: auto; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer p { padding: 0 20px 16px 64px; font-size: 13px; color: var(--text-gray); line-height: 1.8; }

/* BLOG */
.blog { padding: 40px 0; }
.blog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.blog-all-link { color: var(--text-gray); font-size: 13px; font-weight: 500; padding: 8px 20px; border: 1px solid var(--border); border-radius: 50px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.blog-all-link:hover { border-color: var(--primary); color: var(--primary); }
.blog-all-link i { font-size: 11px; transition: var(--transition); }
.blog-all-link:hover i { transform: translateX(3px); }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.blog-card { background: var(--bg-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: block; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 200px; position: relative; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-date { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 500; }
.blog-info { padding: 16px; }
.blog-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { color: var(--primary); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.read-more i { font-size: 10px; transition: var(--transition); }
.blog-card:hover .read-more i { transform: translateX(4px); }

/* SEO CONTENT */
.seo-content { padding: 40px 0; }
.seo-box { background: var(--bg-white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); max-height: 600px; overflow: hidden; position: relative; }
.seo-box.expanded { max-height: none; }
.seo-box::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(transparent, var(--bg-white)); pointer-events: none; }
.seo-box.expanded::after { display: none; }
.seo-box h2 { font-size: 20px; font-weight: 700; margin: 28px 0 14px; color: var(--text-dark); position: relative; padding-left: 16px; }
.seo-box h2::before { content: ''; position: absolute; left: 0; top: 4px; width: 4px; height: 24px; background: var(--primary); border-radius: 4px; }
.seo-box h2:first-child { margin-top: 0; }
.seo-box p { font-size: 14px; color: var(--text-gray); line-height: 1.9; margin-bottom: 14px; }
.seo-box strong { color: var(--text-dark); }

/* FOOTER */
.footer { background: var(--bg-dark); padding: 0; margin-top: 20px; }
.footer-contact { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; padding: 30px; background: linear-gradient(135deg, rgba(233,30,99,0.15), rgba(124,58,237,0.15)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); margin: 0 20px; transform: translateY(-30px); backdrop-filter: blur(10px); }
.contact-items { display: flex; gap: 24px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 12px; transition: var(--transition); }
.contact-item:hover { transform: translateY(-2px); }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: var(--transition); }
.contact-item:hover .contact-icon { transform: scale(1.1); }
.whatsapp-icon { background: #25D366 !important; }
.phone-icon { background: #6366F1 !important; }
.email-icon { background: #3B82F6 !important; }
.contact-label { font-size: 12px; color: var(--text-light); }
.contact-value { font-size: 14px; color: white; font-weight: 600; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 32px; width: auto; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; transition: var(--transition); }
.footer-social:hover { background: var(--primary); transform: translateY(-3px) scale(1.1); }
.footer-nav { padding: 0 20px 30px; }
.footer-tabs { display: flex; gap: 8px; margin-bottom: 24px; justify-content: center; flex-wrap: wrap; }
.footer-tab { padding: 10px 24px; color: var(--text-light); font-weight: 600; font-size: 13px; cursor: pointer; transition: var(--transition); border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); background: none; font-family: inherit; }
.footer-tab.active, .footer-tab:hover { background: var(--primary); color: white; border-color: var(--primary); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 1200px; margin: 0 auto; }
.footer-link { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(255,255,255,0.04); border-radius: 12px; color: var(--text-light); font-size: 13px; transition: var(--transition); border: 1px solid transparent; }
.footer-link:hover { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.1); transform: translateX(4px); }
.footer-link .dot { width: 8px; height: 8px; min-width: 8px; background: var(--primary); border-radius: 50%; }
.btn-show-all { display: block; margin: 24px auto 0; background: var(--primary); color: white; padding: 12px 32px; border-radius: 50px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; font-family: inherit; transition: var(--transition); }
.btn-show-all:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.footer-tab-content { display: none; }
.footer-tab-content.active { display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px; display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto; }
.footer-copyright { color: var(--text-light); font-size: 13px; }
.footer-badges { display: flex; gap: 10px; align-items: center; }
.payment-icon { display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 8px; padding: 6px 12px; font-size: 14px; color: var(--text-light); font-weight: 600; transition: var(--transition); }
.payment-icon:hover { background: rgba(255,255,255,0.15); color: white; }

/* FIXED BUTTONS */
.fixed-buttons { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.fixed-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; box-shadow: var(--shadow-lg); cursor: pointer; transition: var(--transition); border: none; }
.fixed-btn:hover { transform: scale(1.12); }
.fixed-btn.whatsapp { background: #25D366; }
.fixed-btn.whatsapp:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.fixed-btn.support { background: var(--primary); }
.fixed-btn.support:hover { box-shadow: 0 6px 20px rgba(233,30,99,0.4); }
.fixed-btn.scroll-top { background: var(--bg-dark); font-size: 16px; opacity: 0; pointer-events: none; transform: translateY(20px); }
.fixed-btn.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }

/* LIVE SUPPORT */
.live-support-widget { position: fixed; right: 20px; bottom: 90px; width: 340px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-xl); z-index: 1001; overflow: hidden; display: none; animation: slideUp 0.3s ease; }
.live-support-widget.active { display: block; }
.support-header { background: var(--primary); color: white; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 14px; }
.support-status { font-size: 11px; background: rgba(255,255,255,0.2); padding: 2px 10px; border-radius: 50px; }
.support-close { background: none; border: none; color: white; cursor: pointer; font-size: 14px; padding: 4px; }
.support-body { padding: 20px; min-height: 120px; background: #F8F9FA; }
.support-message p { background: white; padding: 12px 16px; border-radius: 14px 14px 14px 4px; font-size: 13px; color: var(--text-dark); box-shadow: 0 1px 4px rgba(0,0,0,0.08); line-height: 1.6; }
.support-message + .support-message { margin-top: 10px; }
.support-message-user { display: flex; justify-content: flex-end; }
.support-message-user p { background: var(--primary); color: white; border-radius: 14px 14px 4px 14px; }
.support-footer { display: flex; padding: 12px; gap: 8px; border-top: 1px solid var(--border); }
.support-footer input { flex: 1; border: 1px solid var(--border); border-radius: 50px; padding: 8px 16px; font-family: inherit; font-size: 13px; outline: none; }
.support-footer input:focus { border-color: var(--primary); }
.support-footer button { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.support-footer button:hover { background: var(--primary-dark); }

/* MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); z-index: 2000; display: none; justify-content: center; align-items: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; border-radius: var(--radius-xl); width: 90%; max-height: 85vh; overflow-y: auto; padding: 30px; animation: scaleIn 0.3s ease; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-main); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-gray); font-size: 14px; transition: var(--transition); z-index: 10; }
.modal-close:hover { background: var(--primary-light); color: var(--primary); }

/* Login Modal */
.login-modal .modal-content { max-width: 440px; text-align: center; }
.login-tabs { display: flex; gap: 0; margin-bottom: 20px; background: var(--bg-main); border-radius: 50px; padding: 4px; }
.auth-tab { flex: 1; padding: 10px; border: none; background: none; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; border-radius: 50px; color: var(--text-gray); transition: var(--transition); }
.auth-tab.active { background: var(--primary); color: white; }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-form p { color: var(--text-gray); font-size: 14px; margin-bottom: 20px; }
.auth-form input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 14px; margin-bottom: 12px; outline: none; transition: var(--transition); }
.auth-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(233,30,99,0.1); }
.btn-submit { width: 100%; padding: 14px; background: var(--primary); color: white; border: none; border-radius: 12px; font-weight: 600; font-size: 15px; cursor: pointer; font-family: inherit; transition: var(--transition); }
.btn-submit:hover { background: var(--primary-dark); box-shadow: var(--shadow-pink); }
.forgot-password { margin-top: 14px; font-size: 13px; color: var(--text-gray); }
.forgot-password a { color: var(--primary); font-weight: 600; }

/* Services Modal */
.services-modal-content { max-width: 700px; }
.services-modal-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.services-modal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-modal-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 8px; border-radius: 14px; transition: var(--transition); text-align: center; border: 1px solid var(--border-light); }
.service-modal-item:hover { background: var(--primary-lighter); border-color: var(--primary-light); transform: translateY(-3px); }
.service-modal-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.service-modal-icon.instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); }
.service-modal-icon.tiktok { background: #010101; }
.service-modal-icon.twitter { background: #1DA1F2; }
.service-modal-icon.youtube { background: #FF0000; }
.service-modal-icon.facebook { background: #1877F2; }
.service-modal-icon.twitch { background: #9146FF; }
.service-modal-icon.kick { background: #53FC18; color: #000; }
.service-modal-icon.telegram { background: #0088CC; }
.service-modal-icon.linkedin { background: #0A66C2; }
.service-modal-icon.soundcloud { background: #FF5500; }
.service-modal-icon.shazam { background: #0088FF; }
.service-modal-icon.pinterest { background: #E60023; }
.service-modal-icon.spotify { background: #1DB954; }
.service-modal-icon.kwai { background: #FF6C00; }
.service-modal-icon.dailymotion { background: #0066DC; }
.service-modal-icon.discord { background: #5865F2; }
.service-modal-item span { font-size: 12px; font-weight: 600; color: var(--text-dark); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { flex-direction: row; }
    .hero-card { min-height: 120px; }
    .discovery-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-layout { grid-template-columns: 1fr; }
    .testimonials-left { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .why-us-box { grid-template-columns: 1fr; }
    .why-us-image { max-height: 300px; }
    .campaigns-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .services-modal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .search-bar { width: 180px; }
    .mobile-menu-toggle { display: flex; }
    .main-nav { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; border-bottom: none; }
    .main-nav.mobile-open { max-height: 300px; border-bottom: 1px solid var(--border); }
    .main-nav .container { flex-direction: column; align-items: stretch; }
    .main-nav a { padding: 12px 20px; border-bottom: 1px solid var(--border-light); }
    .main-nav a::after { display: none; }
    .hero-content { max-width: 100%; }
    .hero-image { display: none; }
    .hero-side { flex-direction: column; }
    .platforms-grid { gap: 14px; }
    .platform-icon { width: 60px; height: 60px; font-size: 24px; }
    .faq-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-contact { grid-template-columns: 1fr; text-align: center; }
    .contact-items { justify-content: center; }
    .footer-logo { justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .why-us-characters { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .live-support-widget { width: calc(100% - 40px); right: 20px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header .container { flex-wrap: wrap; gap: 10px; }
    .search-bar { width: 100%; order: 3; }
    .blog-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 22px; }
    .hero-main { padding: 24px; min-height: 260px; }
    .hero-content h1 { font-size: 20px; }
    .hero-card { padding: 16px; }
    .platforms-grid { gap: 10px; }
    .platform-icon { width: 52px; height: 52px; font-size: 20px; }
    .services-modal-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { padding: 20px; }
    .footer-contact { padding: 20px; }
    .why-us-characters { grid-template-columns: 1fr; }
    .character-card { aspect-ratio: 4/3; }
}

/* ===== SKIP NAVIGATION ===== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s ease;
}
.skip-nav:focus {
    top: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--card-bg);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    transition: bottom .4s cubic-bezier(.4,0,.2,1);
    padding: 0;
}
.cookie-banner.active {
    bottom: 0;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    min-width: 200px;
}
.cookie-content p i {
    color: var(--primary-color);
    margin-right: 8px;
}
.cookie-content p a {
    color: var(--primary-color);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-accept {
    padding: 10px 24px;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity .2s;
}
.cookie-accept:hover { opacity: .9; }
.cookie-decline {
    padding: 10px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s;
}
.cookie-decline:hover { background: var(--hover-bg); }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { width: 100%; justify-content: center; }
}

/* ===== SEO BOX TOGGLE ===== */
.seo-box {
    max-height: 600px;
    overflow: hidden;
    position: relative;
    transition: max-height .5s ease;
}
.seo-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--bg-primary));
    pointer-events: none;
    transition: opacity .3s;
}
.seo-box.expanded {
    max-height: 5000px;
}
.seo-box.expanded::after {
    opacity: 0;
}
.btn-seo-toggle {
    display: block;
    margin: 20px auto 0;
    padding: 12px 32px;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.btn-seo-toggle:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.btn-seo-toggle i {
    margin-left: 6px;
    transition: transform .3s;
}

/* ===== 404 ERROR PAGE ===== */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.error-content { max-width: 600px; }
.error-code {
    font-size: 120px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.error-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.error-content > p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
}
.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}
.error-actions .btn-primary,
.error-actions .btn-secondary {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.error-actions .btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}
.error-actions .btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.error-actions .btn-primary:hover,
.error-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.error-suggestions {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}
.error-suggestions h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}
.error-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.error-links a {
    padding: 12px 16px;
    background: var(--bg-primary);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: background .2s, transform .2s;
}
.error-links a:hover {
    background: var(--hover-bg);
    transform: translateY(-1px);
}
.error-links a i {
    margin-right: 8px;
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .error-code { font-size: 80px; }
    .error-actions { flex-direction: column; }
    .error-links { grid-template-columns: 1fr; }
}

/* ===== DISCOVERY TAB ACTIVE STATE ===== */
.discovery-tab.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
}

/* ===== PARTNERS TRACK ===== */
.partners-track {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ===== FLASH ===== */
.flash-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 0;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    box-shadow: var(--shadow);
}
.flash-message i { color: var(--primary); }
.flash-success { border-color: rgba(34, 197, 94, 0.25); }
.flash-success i { color: #22C55E; }
.flash-error { border-color: rgba(239, 68, 68, 0.25); }
.flash-error i { color: #EF4444; }
.flash-warning { border-color: rgba(245, 158, 11, 0.25); }
.flash-warning i { color: #F59E0B; }

/* ===== GENERIC BUTTONS ===== */
.btn-primary-solid,
.btn-secondary-outline,
.btn-link-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary-solid {
    min-height: 48px;
    padding: 0 24px;
    background: var(--accent-gradient);
    color: var(--text-white);
    border: 0;
    box-shadow: var(--shadow-pink);
}
.btn-primary-solid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary-outline {
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: transparent;
}
.btn-secondary-outline:hover,
.btn-link-inline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-link-inline {
    min-height: 40px;
    padding: 0 4px;
    color: var(--text-gray);
}
.danger-link { color: #EF4444; }
.danger-link:hover { color: #DC2626; }
.is-disabled {
    pointer-events: none;
    opacity: 0.55;
}

/* ===== GENERIC PAGE LAYOUT ===== */
.page-section {
    padding: 56px 0;
}
.section-muted {
    background: rgba(255,255,255,0.35);
}
body.dark-mode .section-muted {
    background: rgba(255,255,255,0.02);
}
.narrow-container {
    max-width: 860px;
}
.page-hero {
    padding: 72px 0 48px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(255, 82, 82, 0.06));
}
.page-hero-neutral {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(26, 27, 46, 0.04));
}
.page-hero-package {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.14), rgba(255, 82, 82, 0.08));
}
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 28px;
    align-items: start;
}
.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(233, 30, 99, 0.12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}
.page-hero h1,
.article-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-hero p,
.article-excerpt {
    color: var(--text-secondary);
    font-size: 17px;
    max-width: 700px;
}
.page-hero-actions,
.card-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ===== GRID / CARD SYSTEM ===== */
.cards-grid {
    display: grid;
    gap: 20px;
}
.cards-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid,
.metric-grid {
    display: grid;
    gap: 16px;
}
.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.metric-card,
.feature-card,
.tool-card,
.info-card,
.service-overview-card,
.campaign-detail-card,
.package-card,
.blog-list-card,
.contact-panel,
.form-panel,
.purchase-panel,
.empty-state-box,
.order-card,
.cart-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.metric-card,
.feature-card,
.tool-card,
.info-card,
.service-overview-card,
.campaign-detail-card,
.package-card,
.purchase-panel,
.contact-panel,
.form-panel,
.empty-state-box {
    padding: 24px;
}
.metric-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}
.metric-card span,
.feature-card p,
.tool-card p,
.info-card p,
.campaign-detail-card p,
.package-card ul,
.service-overview-card p {
    color: var(--text-secondary);
}
.feature-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.feature-card i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}
.service-overview-card,
.campaign-detail-card,
.package-card,
.blog-list-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-overview-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
}
.service-overview-icon.instagram { background: linear-gradient(135deg, #833AB4, #E1306C); }
.service-overview-icon.tiktok { background: #010101; }
.service-overview-icon.twitter { background: #1D9BF0; }
.service-overview-icon.youtube { background: #FF0000; }
.service-overview-icon.facebook { background: #1877F2; }
.service-overview-icon.twitch { background: #9146FF; }
.service-overview-icon.kick { background: #53FC18; color: #111827; }
.service-overview-icon.telegram { background: #229ED9; }
.service-overview-icon.linkedin { background: #0A66C2; }
.service-overview-icon.soundcloud { background: #FF5500; }
.service-overview-icon.shazam { background: #0088FF; }
.service-overview-icon.pinterest { background: #E60023; }
.service-overview-icon.spotify { background: #1DB954; color: #111827; }
.service-overview-icon.kwai { background: #FF6A00; }
.service-overview-icon.dailymotion { background: #0066DC; }
.service-overview-icon.discord { background: #5865F2; }
.service-overview-icon.vimeo { background: #1AB7EA; }
.campaign-discount,
.package-platform,
.order-status-tag,
.order-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.campaign-discount,
.package-platform,
.order-number {
    background: rgba(233, 30, 99, 0.12);
    color: var(--primary);
}
.order-status-tag {
    background: rgba(59, 130, 246, 0.12);
    color: #2563EB;
}
.package-price,
.purchase-price {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

/* ===== CONTENT / ARTICLE ===== */
.content-stack {
    display: grid;
    gap: 24px;
}
.content-block {
    padding: 28px 30px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.content-block h2,
.section-heading-inline h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
}
.content-block p,
.section-heading-inline p,
.purchase-panel p,
.article-footer-cta p {
    color: var(--text-secondary);
}
.section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.article-shell { padding-top: 40px; }
.article-meta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
}
.article-cover {
    width: 100%;
    border-radius: 28px;
    margin: 28px 0;
    box-shadow: var(--shadow-lg);
}
.article-footer-cta {
    margin-top: 28px;
    padding: 24px 28px;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}
.bullet-list {
    display: grid;
    gap: 12px;
    list-style: none;
}
.bullet-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
}
.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}
.compact-list { gap: 8px; }

/* ===== BLOG / CAMPAIGN / PACKAGE ===== */
.blog-list-card {
    overflow: hidden;
}
.blog-list-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.blog-list-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}
.purchase-panel {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
}

/* ===== FORM / CONTACT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}
.info-stack,
.summary-box,
.cart-stack,
.result-stack {
    display: grid;
    gap: 16px;
}
.info-row,
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}
.info-row:last-child,
.summary-row:last-child { border-bottom: 0; }
.info-row strong,
.summary-row strong { color: var(--text-primary); }
.info-row span,
.summary-row span { color: var(--text-secondary); text-align: right; }
.stack-form {
    display: grid;
    gap: 14px;
}
.stack-form input,
.stack-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 14px 16px;
    font: inherit;
    transition: var(--transition-fast);
}
.stack-form input:focus,
.stack-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}
.search-form-large {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin-bottom: 24px;
}

/* ===== ORDER / CART / ACCOUNT ===== */
.order-card,
.cart-item-card {
    padding: 22px 24px;
}
.order-card-head,
.cart-item-card {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}
.order-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: 18px;
}
.order-meta-grid strong {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}
.order-meta-grid span {
    color: var(--text-primary);
}
.progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: var(--border-light);
    overflow: hidden;
    margin-top: 18px;
}
.progress-track span {
    display: block;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: inherit;
}
.cart-item-actions {
    min-width: 150px;
    display: grid;
    gap: 12px;
    justify-items: end;
}
.account-summary-panel { position: sticky; top: 120px; }

/* ===== SERVICE / TOOLS REDESIGN ===== */
.page-hero-copy-rich {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.page-hero-copy-rich p {
    line-height: 1.9;
}
.service-highlight-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.service-highlight-strip span {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-dark);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    font-size: 13px;
    font-weight: 600;
}
.service-hero-panel,
.tools-hero-panel,
.service-insight-card,
.service-bottom-cta-card,
.tool-card-rich,
.package-card-rich,
.feature-card-rich {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}
.service-hero-panel,
.tools-hero-panel,
.service-insight-card,
.service-bottom-cta-card {
    border-radius: 30px;
    padding: 28px;
}
.service-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-hero-panel-head {
    display: flex;
    align-items: center;
    gap: 16px;
}
.service-hero-panel-head strong {
    display: block;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}
.service-hero-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}
.service-theme-instagram { background: linear-gradient(135deg, #833ab4, #e1306c, #f77737); }
.service-theme-tiktok { background: linear-gradient(135deg, #111827, #0f172a); }
.service-theme-twitter { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.service-theme-youtube { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.service-theme-facebook { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.service-theme-twitch { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.service-theme-kick { background: linear-gradient(135deg, #84cc16, #4d7c0f); color: #111827; }
.service-theme-telegram { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.service-theme-linkedin { background: linear-gradient(135deg, #2563eb, #1e40af); }
.service-theme-soundcloud { background: linear-gradient(135deg, #f97316, #ea580c); }
.service-theme-shazam { background: linear-gradient(135deg, #38bdf8, #2563eb); }
.service-theme-pinterest { background: linear-gradient(135deg, #ef4444, #be123c); }
.service-theme-spotify { background: linear-gradient(135deg, #22c55e, #15803d); }
.service-theme-kwai { background: linear-gradient(135deg, #fb923c, #f97316); }
.service-theme-dailymotion { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.service-theme-discord { background: linear-gradient(135deg, #6366f1, #4338ca); }
.service-theme-vimeo { background: linear-gradient(135deg, #38bdf8, #0891b2); }
.service-panel-kicker,
.service-panel-label,
.tool-card-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(233, 30, 99, 0.10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.metric-grid-rich {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.metric-card-rich {
    border-radius: 22px;
    padding: 22px 18px;
    background: rgba(233, 30, 99, 0.04);
    border: 1px solid rgba(233, 30, 99, 0.08);
}
.metric-card-rich strong { font-size: 30px; }
.service-panel-foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}
.service-panel-foot p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 8px;
}
.service-insight-section { padding-top: 0; }
.service-insight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
}
.service-insight-copy h2,
.section-heading-inline-rich h2,
.service-bottom-cta-card h2,
.tools-hero-panel strong {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    font-weight: 800;
    margin: 12px 0;
}
.service-insight-copy p,
.section-heading-inline-rich p,
.service-bottom-cta-card p,
.tools-hero-panel p,
.tool-card-rich p {
    color: var(--text-secondary);
    line-height: 1.85;
}
.service-insight-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(160deg, rgba(250, 77, 128, 0.08), rgba(111, 76, 233, 0.14));
}
.service-wave-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 12px;
    min-height: 160px;
}
.service-wave-bars span {
    display: block;
    border-radius: 24px 24px 12px 12px;
    background: linear-gradient(180deg, rgba(250, 77, 128, 0.30), rgba(111, 76, 233, 0.88));
}
.service-wave-bars span:nth-child(1) { height: 60px; }
.service-wave-bars span:nth-child(2) { height: 92px; }
.service-wave-bars span:nth-child(3) { height: 138px; }
.service-wave-bars span:nth-child(4) { height: 112px; }
.service-quick-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.service-quick-facts div {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}
.service-quick-facts strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}
.service-quick-facts span { color: var(--text-secondary); }
.section-heading-inline-rich {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 24px;
}
.section-heading-inline-rich > div {
    display: grid;
    gap: 4px;
}
.feature-grid-rich {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card-rich {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-radius: 24px;
    padding: 24px;
}
.feature-card-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 99, 0.10);
    color: var(--primary);
}
.feature-card-rich strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}
.package-grid-rich { gap: 18px; }
.package-card-rich {
    border-radius: 28px;
    padding: 24px;
}
.package-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.package-refill-badge {
    display: inline-flex;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}
.package-checks {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    display: grid;
    gap: 8px;
}
.service-bottom-cta { padding-top: 0; }
.service-bottom-cta-card {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
}
.tools-hero-grid { align-items: stretch; }
.tools-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(160deg, rgba(17, 24, 39, 0.96), rgba(37, 99, 235, 0.92));
    color: #fff;
}
.tools-hero-panel p { color: rgba(255, 255, 255, 0.82); }
.tools-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.tools-hero-stats div {
    padding: 18px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
}
.tools-hero-stats strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}
.tools-hero-stats span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}
.tool-grid-rich { gap: 18px; }
.tool-card-rich {
    border-radius: 28px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tool-card-head {
    display: grid;
    gap: 12px;
}
.tool-card-head h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}
.tool-card-foot {
    margin-top: auto;
    display: grid;
    gap: 16px;
}
.tool-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tool-mini-tags span {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
}

body.dark-mode .service-hero-panel,
body.dark-mode .service-insight-card,
body.dark-mode .service-bottom-cta-card,
body.dark-mode .tool-card-rich,
body.dark-mode .package-card-rich,
body.dark-mode .feature-card-rich {
    background: #171c2f;
    border-color: rgba(255, 255, 255, 0.08);
}
body.dark-mode .service-highlight-strip span,
body.dark-mode .service-quick-facts div,
body.dark-mode .tool-mini-tags span,
body.dark-mode .package-refill-badge,
body.dark-mode .metric-card-rich {
    background: rgba(255, 255, 255, 0.06);
    color: #f4f7fb;
    border-color: rgba(255, 255, 255, 0.08);
}
body.dark-mode .service-panel-foot p,
body.dark-mode .service-insight-copy p,
body.dark-mode .section-heading-inline-rich p,
body.dark-mode .service-bottom-cta-card p,
body.dark-mode .tool-card-rich p,
body.dark-mode .package-checks,
body.dark-mode .tool-mini-tags span,
body.dark-mode .service-quick-facts span {
    color: rgba(255, 255, 255, 0.72);
}
body.dark-mode .service-hero-panel-head strong,
body.dark-mode .service-insight-copy h2,
body.dark-mode .section-heading-inline-rich h2,
body.dark-mode .feature-card-rich strong,
body.dark-mode .tool-card-head h2,
body.dark-mode .service-bottom-cta-card h2,
body.dark-mode .service-quick-facts strong,
body.dark-mode .metric-card-rich strong {
    color: #f4f7fb;
}

@media (max-width: 1024px) {
    .service-insight-grid,
    .tools-hero-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid-rich,
    .metric-grid-rich {
        grid-template-columns: 1fr;
    }
    .section-heading-inline-rich,
    .service-panel-foot,
    .service-bottom-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .service-hero-panel,
    .tools-hero-panel,
    .service-insight-card,
    .service-bottom-cta-card,
    .tool-card-rich,
    .package-card-rich,
    .feature-card-rich {
        padding: 22px;
        border-radius: 24px;
    }
    .service-highlight-strip {
        gap: 8px;
    }
    .service-highlight-strip span {
        min-height: 34px;
        font-size: 12px;
    }
    .tools-hero-stats {
        grid-template-columns: 1fr;
    }
    .tool-card-foot .card-actions,
    .service-bottom-cta-card .page-hero-actions {
        width: 100%;
    }
}

/* ===== AUTH ===== */
.auth-page-shell {
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.auth-panel-centered {
    max-width: 520px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards-grid-3,
    .feature-grid,
    .metric-grid,
    .contact-layout,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }
    .purchase-panel,
    .account-summary-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-section { padding: 40px 0; }
    .page-hero { padding: 52px 0 34px; }
    .section-heading-inline,
    .article-footer-cta,
    .order-card-head,
    .cart-item-card {
        flex-direction: column;
    }
    .cards-grid-2,
    .cards-grid-3,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .search-form-large,
    .order-meta-grid {
        grid-template-columns: 1fr;
    }
    .content-block,
    .tool-card,
    .info-card,
    .campaign-detail-card,
    .service-overview-card,
    .contact-panel,
    .form-panel,
    .purchase-panel,
    .empty-state-box,
    .order-card,
    .cart-item-card {
        padding: 20px;
    }
}

/* ===== HOMEPAGE REDESIGN ===== */
.main-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}
.main-nav .container {
    gap: 10px;
    padding: 12px 0;
    overflow-x: visible;
}
.main-nav a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(233, 30, 99, 0.04);
    font-weight: 600;
}
.main-nav a::after { display: none; }
.main-nav a:hover,
.main-nav a.is-active,
.main-nav a[aria-expanded="true"] {
    color: var(--primary);
    background: rgba(233, 30, 99, 0.12);
}
.nav-link-caret {
    font-size: 11px;
    transition: transform 0.2s ease;
}
.nav-mega-trigger[aria-expanded="true"] .nav-link-caret { transform: rotate(180deg); }

.mega-menu-layer {
    position: relative;
    z-index: 980;
}
.mega-panel {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1240px, calc(100% - 32px));
    display: none;
    grid-template-columns: 320px 1fr;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(233, 30, 99, 0.10);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
}
.mega-panel.is-open { display: grid; }
.mega-panel-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 32px;
    color: #fff;
}
.mega-panel-side-services {
    background: linear-gradient(160deg, #fa4d80 0%, #6f4ce9 54%, #1f2557 100%);
}
.mega-panel-side-tools {
    background: linear-gradient(160deg, #0f766e 0%, #1d4ed8 58%, #1e293b 100%);
}
.mega-side-kicker {
    display: inline-flex;
    align-self: flex-start;
    min-height: 36px;
    padding: 0 14px;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.mega-panel-side h2 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
}
.mega-panel-side p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}
.mega-panel-side .btn-secondary-outline {
    border-color: rgba(255, 255, 255, 0.20);
    color: #fff;
}
.mega-panel-side .btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.mega-panel-main { padding: 24px; }
.mega-panel-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.mega-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-main);
    color: var(--text-dark);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}
.mega-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}
.mega-tab.is-active {
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    border-color: transparent;
    color: #fff;
}
.mega-pane { display: none; }
.mega-pane.is-active {
    display: block;
    animation: fadeInUp 0.25s ease;
}
.mega-pane-header {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}
.mega-pane-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mega-pane-header h3 {
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
}
.mega-pane-header p {
    color: var(--text-gray);
    line-height: 1.8;
}
.mega-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.mega-link-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--bg-main);
    border: 1px solid transparent;
    transition: var(--transition);
}
.mega-link-card:hover {
    border-color: rgba(233, 30, 99, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}
.mega-link-card strong {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}
.mega-link-card span {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 13px;
}

.section-heading-center {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(233, 30, 99, 0.10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(233, 30, 99, 0.12);
}
.section-kicker-light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.section-heading-center h2,
.blog-header h2,
.faq-panel h2,
.testimonials-head h2,
.audience-copy h2,
.app-showcase-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
    margin: 12px 0;
}
.section-heading-center h2 span,
.testimonials-head h2 span,
.audience-copy h2 span { color: var(--primary); }
.section-heading-center p,
.faq-panel-text,
.testimonials-head p,
.blog-header p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}
.section-center-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

body.dark-mode .main-nav,
body.dark-mode .mega-panel,
body.dark-mode .platform-item,
body.dark-mode .satisfaction-card,
body.dark-mode .satisfaction-profile,
body.dark-mode .why-us-feature-card,
body.dark-mode .audience-card,
body.dark-mode .audience-mini-card,
body.dark-mode .review-card,
body.dark-mode .faq-panel,
body.dark-mode .blog-card {
    background: #171c2f;
    border-color: rgba(255, 255, 255, 0.08);
    color: #f4f7fb;
}
body.dark-mode .main-nav a {
    background: rgba(255, 255, 255, 0.04);
    color: #f4f7fb;
}
body.dark-mode .main-nav a:hover,
body.dark-mode .main-nav a.is-active,
body.dark-mode .main-nav a[aria-expanded="true"] {
    background: rgba(250, 77, 128, 0.16);
    color: #fff;
}
body.dark-mode .mega-link-card,
body.dark-mode .profile-stats div,
body.dark-mode .audience-country-list div,
body.dark-mode .blog-category-pill,
body.dark-mode .audience-card-label {
    background: rgba(255, 255, 255, 0.04);
    color: #e8ecf5;
}
body.dark-mode .mega-link-card span,
body.dark-mode .satisfaction-card p,
body.dark-mode .satisfaction-profile p,
body.dark-mode .why-us-feature-card p,
body.dark-mode .audience-copy p,
body.dark-mode .audience-list li,
body.dark-mode .audience-card-wide p,
body.dark-mode .testimonials-head p,
body.dark-mode .faq-panel-text,
body.dark-mode .blog-info p,
body.dark-mode .blog-meta-row,
body.dark-mode .profile-stats span,
body.dark-mode .audience-mini-card span {
    color: rgba(255, 255, 255, 0.72);
}
body.dark-mode .section-heading-center h2,
body.dark-mode .blog-header h2,
body.dark-mode .faq-panel h2,
body.dark-mode .testimonials-head h2,
body.dark-mode .audience-copy h2,
body.dark-mode .satisfaction-card h3,
body.dark-mode .satisfaction-profile h3,
body.dark-mode .why-us-feature-card h3,
body.dark-mode .audience-card h3,
body.dark-mode .review-name,
body.dark-mode .blog-info h3,
body.dark-mode .profile-stats strong,
body.dark-mode .audience-mini-card strong,
body.dark-mode .audience-bar-copy {
    color: #f4f7fb;
}
body.dark-mode .faq-item {
    background: #111625;
    border-color: rgba(255, 255, 255, 0.08);
}
body.dark-mode .faq-item:hover .faq-question { background: rgba(255, 255, 255, 0.04); }
body.dark-mode .faq-question span { color: #f4f7fb; }
body.dark-mode .show-all-btn {
    background: #171c2f;
    color: #f4f7fb;
}

@media (max-width: 1180px) {
    .mega-panel { grid-template-columns: 1fr; }
    .mega-panel-side { display: none; }
    .mega-pane-header { grid-template-columns: 1fr; }
    .service-highlight-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .why-us-redesign { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-us-preview-card {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 340px;
    }
    .satisfaction-grid,
    .audience-grid,
    .app-showcase-card {
        grid-template-columns: 1fr;
    }
    .satisfaction-profile { max-width: 520px; }
    .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
    .hero-shell {
        grid-template-columns: 1fr;
        padding: 40px 34px;
    }
    .hero-visual { min-height: 360px; }
    .service-highlight-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-illustration {
        position: relative;
        top: auto;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .main-nav.mobile-open { max-height: 460px; }
    .main-nav .container {
        overflow-x: auto;
        gap: 8px;
        padding: 10px 16px;
    }
    .main-nav a {
        width: auto;
        border-bottom: none;
    }
    .mega-menu-layer { display: none; }
    .hero-shell {
        padding: 32px 24px;
        border-radius: 30px;
    }
    .hero-copy h1 { font-size: 48px; }
    .hero-visual { min-height: 320px; }
    .hero-alert-card { width: min(240px, 76%); }
    .hero-alert-top {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-alert-bottom {
        right: 50%;
        bottom: 18px;
        transform: translateX(50%);
    }
    .platform-item {
        min-width: 102px;
        padding: 14px 12px;
    }
    .satisfaction-grid,
    .service-highlight-track,
    .why-us-redesign,
    .audience-cards,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .audience-card-wide { grid-column: auto; }
    .app-showcase-card { padding: 32px 24px; }
    .app-phones { min-height: 320px; }
    .phone-mockup {
        width: 170px;
        height: 320px;
    }
    .phone-mockup-back { left: 0; }
    .phone-mockup-front { right: 0; }
    .phone-float-card {
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: none;
    }
    .testimonial-avatar-row span {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 480px) {
    .main-nav .container { padding: 10px 14px; }
    .hero-copy h1 { font-size: 38px; }
    .hero-alert-card { padding: 14px 16px; }
    .section-heading-center h2,
    .blog-header h2,
    .faq-panel h2,
    .testimonials-head h2,
    .audience-copy h2,
    .app-showcase-copy h2 {
        font-size: 32px;
    }
    .satisfaction-card,
    .satisfaction-profile,
    .why-us-feature-card,
    .faq-panel,
    .audience-card,
    .audience-mini-card,
    .review-card {
        padding: 22px;
    }
    .app-phones { min-height: 280px; }
    .phone-mockup {
        width: 145px;
        height: 280px;
    }
    .phone-order-card { padding: 12px; }
}
