/*
Theme Name: SocialRank Pro
Theme URI: https://socialmedia.biz.pl
Author: SocialRank Team
Author URI: https://socialmedia.biz.pl
Description: Profesjonalny motyw do porownywania serwisow social media - ciemny motyw z neonowymi akcentami
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: socialrank-pro
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ==============================
   CSS VARIABLES & RESET
   ============================== */
:root {
    --bg-primary: #0f1923;
    --bg-card: #1a2736;
    --bg-card-hover: #1f2f42;
    --bg-sidebar: #141e2a;
    --bg-header: rgba(15, 25, 35, 0.95);
    --accent-blue: #00d4ff;
    --accent-purple: #7c3aed;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #2a3a4e;
    --border-glow: rgba(0, 212, 255, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);
    --shadow-glow-strong: 0 0 40px rgba(0, 212, 255, 0.3);
    --gradient-hero: linear-gradient(135deg, #0f1923 0%, #1a1040 50%, #0f1923 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff, #7c3aed);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sidebar-width: 320px;
    --header-height: 70px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #33ddff;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    margin-bottom: 1em;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(0, 212, 255, 0.1);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.site-logo span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-logo a {
    color: inherit;
    text-decoration: none;
}

.site-logo a span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.main-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.main-nav a:hover {
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.1);
}

.header-cta .btn-cta {
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.header-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform var(--transition);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    color: var(--text-secondary);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition);
}

.mobile-nav a:hover {
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.1);
}

.mobile-nav .btn-cta {
    background: var(--gradient-accent);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: 600;
}

/* ==============================
   LAYOUT: LEFT SIDEBAR + MAIN
   ============================== */
.site-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

.layout-with-sidebar {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    gap: 30px;
}

.sidebar-left {
    width: var(--sidebar-width);
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.sidebar-sticky::-webkit-scrollbar {
    width: 4px;
}

.sidebar-sticky::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-sticky::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Ranking Widget */
.sidebar-ranking {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.sidebar-ranking-title {
    padding: 20px;
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-ranking-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.sidebar-rank-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 14px;
    border-bottom: 1px solid rgba(42, 58, 78, 0.5);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text-primary);
}

.sidebar-rank-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.sidebar-rank-item.is-own {
    border-left: 3px solid var(--accent-blue);
}

.sidebar-rank-item.is-own .rank-number {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-glow);
}

.sidebar-rank-item.is-competitor .rank-number {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.rank-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rank-info {
    flex: 1;
    min-width: 0;
}

.rank-name {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-score-bar {
    margin-top: 6px;
    height: 4px;
    background: var(--bg-primary);
    border-radius: 2px;
    overflow: hidden;
}

.rank-score-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease;
}

.is-own .rank-score-fill {
    background: var(--gradient-accent);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.is-competitor .rank-score-fill {
    background: var(--text-muted);
}

.rank-score-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.is-competitor .rank-score-value {
    color: var(--text-muted);
}

/* Sidebar Info Table (service detail) */
.sidebar-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-info-card h3 {
    padding: 20px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-info-table {
    width: 100%;
}

.sidebar-info-table tr {
    border-bottom: 1px solid rgba(42, 58, 78, 0.5);
}

.sidebar-info-table td {
    padding: 12px 20px;
    font-size: 0.85rem;
}

.sidebar-info-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.sidebar-info-table td:last-child {
    font-weight: 600;
    text-align: right;
}

.sidebar-cta-box {
    padding: 20px;
    text-align: center;
}

.sidebar-cta-box .btn-primary {
    width: 100%;
    margin-bottom: 10px;
}

/* ==============================
   WINNER ANNOUNCEMENT BAR
   ============================== */
.winner-bar {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1), rgba(0, 212, 255, 0.1));
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: winnerPulse 3s ease-in-out infinite;
}

.winner-bar strong {
    color: var(--accent-blue);
}

@keyframes winnerPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==============================
   HERO SECTION
   ============================== */
.hero-section {
    background: var(--gradient-hero);
    padding: 80px 30px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    animation: heroGlow 5s ease-in-out infinite reverse;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Detail Hero */
.service-hero {
    background: var(--gradient-hero);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite;
    pointer-events: none;
}

.service-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.service-hero-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-hero-breadcrumb a {
    color: var(--text-muted);
}

.service-hero-breadcrumb a:hover {
    color: var(--accent-blue);
}

.service-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.service-hero-info h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.service-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.service-meta-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-hero-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-big {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-orange), #d97706);
}

/* ==============================
   SECTION HEADERS
   ============================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

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

/* ==============================
   RANKING SECTION
   ============================== */
.ranking-section {
    padding: 60px 0;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ranking-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.ranking-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.ranking-card.is-own {
    border-color: rgba(0, 212, 255, 0.2);
}

.ranking-card.is-own::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.ranking-card.is-top-1 {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.ranking-card.is-competitor {
    opacity: 0.85;
}

.ranking-position {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.is-own .ranking-position {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-glow);
}

.is-competitor .ranking-position {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ranking-name a {
    color: var(--text-primary);
}

.ranking-name a:hover {
    color: var(--accent-blue);
}

.ranking-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ranking-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
}

.badge-recommended {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.ranking-scores {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.ranking-score-item {
    text-align: center;
}

.ranking-score-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ranking-score-value {
    font-size: 1.3rem;
    font-weight: 800;
}

.is-own .ranking-score-value {
    color: var(--accent-blue);
}

.is-competitor .ranking-score-value {
    color: var(--text-muted);
}

.ranking-action {
    flex-shrink: 0;
}

/* Competitor Warning */
.competitor-warning {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 8px;
}

.competitor-warning a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* ==============================
   FEATURES GRID
   ============================== */
.features-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(26, 39, 54, 0.3), transparent);
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==============================
   COMPARISON TABLE
   ============================== */
.comparison-section {
    padding: 60px 0;
}

.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead {
    background: var(--bg-card);
}

.comparison-table th {
    padding: 16px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(42, 58, 78, 0.5);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: background var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.comparison-table tbody tr.is-own {
    background: rgba(0, 212, 255, 0.03);
}

.comparison-table tbody tr.is-own:hover {
    background: rgba(0, 212, 255, 0.07);
}

.comparison-table tbody tr.is-own td:first-child {
    border-left: 3px solid var(--accent-blue);
}

.comparison-table .score-high {
    color: var(--accent-green);
    font-weight: 700;
}

.comparison-table .score-medium {
    color: var(--accent-orange);
    font-weight: 700;
}

.comparison-table .score-low {
    color: var(--accent-red);
    font-weight: 700;
}

.table-check {
    color: var(--accent-green);
    font-weight: bold;
}

.table-cross {
    color: var(--accent-red);
    font-weight: bold;
}

/* ==============================
   TARGET AUDIENCE
   ============================== */
.audience-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(26, 39, 54, 0.3), transparent);
}

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

.audience-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
    transition: all var(--transition);
}

.audience-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==============================
   BLOG SECTION / GRID
   ============================== */
.blog-section {
    padding: 60px 0;
}

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

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-blue);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    border-left-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    color: var(--accent-blue);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
}

.blog-card .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .read-more:hover {
    gap: 10px;
}

/* ==============================
   FAQ ACCORDION
   ============================== */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(26, 39, 54, 0.3), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-main);
    transition: color var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--accent-blue);
    color: var(--bg-primary);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer-inner a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* ==============================
   SERVICE DETAIL PAGE
   ============================== */
.service-content {
    padding: 0;
}

.service-score-overview {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
}

.score-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.score-category {
    text-align: center;
}

.score-category-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.score-category-bar {
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.score-category-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-accent);
    transition: width 1s ease;
}

.score-category-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-blue);
}

/* Pros/Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pros-list, .cons-list {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
}

.pros-list h3, .cons-list h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-list h3::before {
    content: '+';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cons-list h3::before {
    content: '-';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.pros-list ul li, .cons-list ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(42, 58, 78, 0.3);
    padding-left: 16px;
    position: relative;
}

.pros-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
}

.cons-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

.pros-list ul li:last-child, .cons-list ul li:last-child {
    border-bottom: none;
}

/* Description Content */
.service-description {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
}

.service-description h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-description h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
}

.service-description p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-description ul, .service-description ol {
    margin: 16px 0;
    padding-left: 20px;
}

.service-description li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 4px 0;
    list-style: disc;
}

.service-description a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.platform-badge {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    padding: 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.platform-badge:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.platform-badge-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* Other Services */
.other-services {
    margin-top: 40px;
}

.other-services h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.other-service-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 20px;
    transition: all var(--transition);
}

.other-service-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.other-service-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.other-service-card h4 a {
    color: var(--text-primary);
}

.other-service-card h4 a:hover {
    color: var(--accent-blue);
}

.other-service-card .score {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
}

/* ==============================
   BLOG POST PAGE
   ============================== */
.blog-post-hero {
    background: var(--gradient-hero);
    padding: 50px 0 40px;
    position: relative;
}

.blog-post-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-post-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-post-hero .breadcrumb a {
    color: var(--text-muted);
}

.blog-post-hero .breadcrumb a:hover {
    color: var(--accent-blue);
}

.blog-post-hero h1 {
    font-size: 2rem;
    max-width: 700px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Blog Content */
.blog-content {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
}

.blog-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.blog-content ul, .blog-content ol {
    margin: 16px 0;
    padding-left: 20px;
}

.blog-content li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 4px 0;
    list-style: disc;
}

.blog-content a {
    color: var(--accent-blue);
    font-weight: 600;
}

.blog-content strong {
    color: var(--text-primary);
}

/* CTA Box inside blog */
.blog-cta-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.blog-cta-box h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.blog-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.blog-cta-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar Best Services */
.sidebar-best-services {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-best-services h3 {
    padding: 20px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-best-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(42, 58, 78, 0.5);
    font-size: 0.85rem;
}

.sidebar-best-item:last-child {
    border-bottom: none;
}

.sidebar-best-name {
    font-weight: 600;
}

.sidebar-best-score {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Popular Articles Sidebar */
.sidebar-popular {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.sidebar-popular h3 {
    padding: 20px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-popular-item {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(42, 58, 78, 0.5);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition);
}

.sidebar-popular-item:hover {
    background: var(--bg-card-hover);
    color: var(--accent-blue);
}

.sidebar-popular-item:last-child {
    border-bottom: none;
}

/* ==============================
   BLOG LISTING PAGE
   ============================== */
.blog-listing-hero {
    background: var(--gradient-hero);
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-listing-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-listing-hero h1 {
    font-size: 2.2rem;
    position: relative;
}

.blog-listing-hero p {
    color: var(--text-secondary);
    margin-top: 12px;
    position: relative;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    background: var(--bg-sidebar);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .site-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
    text-align: center;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--accent-blue);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 16px 30px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.cookie-notice.visible {
    display: flex;
}

.cookie-notice .btn-sm {
    white-space: nowrap;
}

/* ==============================
   404 PAGE
   ============================== */
.error-404 {
    text-align: center;
    padding: 100px 30px;
}

.error-404 h1 {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-404 p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Search Page */
.search-results {
    padding: 40px 0;
}

.search-results-header {
    margin-bottom: 30px;
}

.search-results-header h1 {
    font-size: 1.8rem;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 20px 0;
}

.search-form input[type="search"],
.search-form input[type="text"] {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.search-form button {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
}

/* ==============================
   RESPONSIVE - TABLET (768px)
   ============================== */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --sidebar-width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .layout-with-sidebar {
        flex-direction: column;
        padding: 20px;
    }

    .sidebar-left {
        width: 100%;
        order: 2;
    }

    .sidebar-sticky {
        position: static;
        max-height: none;
    }

    .main-content {
        order: 1;
    }

    .hero-section {
        padding: 50px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-value {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        min-width: 600px;
    }

    .ranking-card {
        flex-wrap: wrap;
        padding: 20px;
    }

    .ranking-scores {
        width: 100%;
        justify-content: space-around;
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
    }

    .ranking-action {
        width: 100%;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .score-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-content {
        flex-direction: column;
    }

    .service-hero-info h1 {
        font-size: 1.6rem;
    }

    .blog-content {
        padding: 24px;
    }

    .blog-post-hero h1 {
        font-size: 1.5rem;
    }

    .cookie-notice {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .blog-cta-links {
        flex-direction: column;
    }
}

/* ==============================
   RESPONSIVE - PHONE (480px)
   ============================== */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .layout-with-sidebar {
        padding: 16px;
        gap: 20px;
    }

    .hero-section {
        padding: 40px 16px 30px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .ranking-card {
        padding: 16px;
        gap: 12px;
    }

    .ranking-position {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .ranking-name {
        font-size: 1rem;
    }

    .service-hero {
        padding: 30px 0 20px;
    }

    .service-hero-inner {
        padding: 0 16px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-post-hero-inner {
        padding: 0 16px;
    }

    .score-categories {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .winner-bar {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

/* ==============================
   SAFE AREA (NOTCHED PHONES)
   ============================== */
@supports (padding: env(safe-area-inset-top)) {
    .site-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mobile-nav {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* ==============================
   TOUCH DEVICE SUPPORT
   ============================== */
@media (hover: none) and (pointer: coarse) {
    .ranking-card:hover {
        transform: none;
    }

    .feature-card:hover {
        transform: none;
    }

    .blog-card:hover {
        transform: none;
    }

    .other-service-card:hover {
        transform: none;
    }

    .audience-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .faq-question {
        -webkit-tap-highlight-color: transparent;
    }

    .sidebar-rank-item {
        -webkit-tap-highlight-color: transparent;
    }

    a {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.1);
    }
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Neon Glow for top services */
.neon-glow {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15), 0 0 30px rgba(0, 212, 255, 0.05);
}

/* Utility */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Screen reader only */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
