/* HirePhoneHackers.com - Main Stylesheet */

/* CSS Variables */
:root {
    --primary: #00ff88;
    --primary-dark: #00cc6e;
    --primary-glow: rgba(0, 255, 136, 0.15);
    --primary-glow-strong: rgba(0, 255, 136, 0.25);
    --accent: #58a6ff;
    --accent-dark: #388bfd;
    --accent-glow: rgba(88, 166, 255, 0.15);
    --danger: #f85149;
    --warning: #f0883e;
    --bg-body: #0a0e17;
    --bg-card: #161b22;
    --bg-card-hover: #1c2129;
    --bg-elevated: #1a1f28;
    --bg-input: #0d1117;
    --border: #30363d;
    --border-light: rgba(48,54,61,0.6);
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(0,255,136,0.08);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --container: 1200px;
}

/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--bg-body); color: var(--text-primary); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--primary); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--text-primary); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.8rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.6rem; margin-top: 2rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; }
strong { color: var(--text-primary); }
blockquote { border-left: 4px solid var(--primary); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--bg-card); border-radius: 0 var(--radius) var(--radius) 0; }
hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border: none; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; line-height: 1.4; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.btn-primary { background: var(--primary); color: var(--bg-body); box-shadow: 0 2px 12px rgba(0,255,136,0.2); }
.btn-primary:hover { background: var(--primary-dark); color: var(--bg-body); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,255,136,0.35); }
.btn-primary::after { background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); }
.btn-primary:hover::after { opacity: 1; }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid rgba(0,255,136,0.4); }
.btn-secondary:hover { background: var(--primary-glow); border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ===== HERO SECTION ===== */
.hero { padding: 110px 0 90px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at center, rgba(0,255,136,0.07) 0%, transparent 50%); pointer-events: none; animation: hero-pulse 8s ease-in-out infinite alternate; }
@keyframes hero-pulse { 0% { opacity: 0.6; } 100% { opacity: 1; } }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 5%, var(--primary) 50%, transparent 95%); opacity: 0.4; }
.hero h1 { position: relative; font-size: clamp(2.4rem, 5.5vw, 3.6rem); letter-spacing: -1.5px; max-width: 900px; margin: 0 auto 1.2rem; }
.hero h1 .highlight { color: var(--primary); text-shadow: 0 0 50px rgba(0,255,136,0.3); position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.25); color: var(--primary); font-size: 0.78rem; font-weight: 700; padding: 8px 20px; border-radius: 50px; margin-bottom: 2rem; letter-spacing: 1px; text-transform: uppercase; backdrop-filter: blur(4px); box-shadow: 0 0 20px rgba(0,255,136,0.06); }
.hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 780px; margin: 0 auto 2rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
/* Decorative orbs */
.hero .container { position: relative; z-index: 1; }

/* ===== TRUST BADGES ===== */
.trust-section { padding: 50px 0; text-align: center; background: linear-gradient(180deg, rgba(0,255,136,0.04) 0%, transparent 100%); border-top: 1px solid rgba(0,255,136,0.08); border-bottom: 1px solid var(--border); position: relative; }
.trust-items { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 28px; background: rgba(22,27,34,0.8); border: 1px solid var(--border); border-radius: var(--radius-lg); min-width: 155px; transition: var(--transition); position: relative; backdrop-filter: blur(4px); }
.trust-item::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 30px; height: 2px; background: var(--primary); border-radius: 0 0 3px 3px; opacity: 0; transition: all 0.3s; }
.trust-item:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.trust-item:hover::before { opacity: 1; width: 50px; }
.trust-number { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1.1; text-shadow: 0 0 30px rgba(0,255,136,0.15); }
.trust-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; position: relative; display: flex; flex-direction: column; align-items: center; }
.section-header h2 { margin-top: 0; position: relative; max-width: 800px; }
.section-header p { max-width: 650px; margin: 0.8rem auto 0; font-size: 1.05rem; }
.section-header .section-label { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; padding: 5px 14px; background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.12); border-radius: 50px; }
.section-alt { background: linear-gradient(180deg, rgba(0,255,136,0.025) 0%, rgba(0,255,136,0.01) 50%, transparent 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }

/* ===== SECTION DIVIDER LINE ===== */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0; }

/* ===== CARDS ===== */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); transform-origin: left; }
.card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 20px rgba(0,255,136,0.04); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-top: 0; font-size: 1.1rem; }
.card-title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card-excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }
.card-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: start; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-text p { line-height: 1.85; font-size: 0.96rem; }
.about-cards-col { display: flex; flex-direction: column; gap: 14px; }
.about-card-v { display: flex; align-items: flex-start; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.4rem 1.6rem; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.about-card-v::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--primary), var(--accent)); opacity: 0; transition: opacity 0.3s; }
.about-card-v:hover { border-color: rgba(0,255,136,0.3); transform: translateX(4px); box-shadow: 0 6px 24px rgba(0,0,0,0.2), 0 0 15px rgba(0,255,136,0.04); }
.about-card-v:hover::before { opacity: 1; }
.about-card-v-icon { font-size: 1.6rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-glow), rgba(88,166,255,0.06)); border: 1px solid rgba(0,255,136,0.15); border-radius: var(--radius-lg); transition: var(--transition); }
.about-card-v:hover .about-card-v-icon { border-color: rgba(0,255,136,0.35); box-shadow: 0 0 18px rgba(0,255,136,0.1); }
.about-card-v-body h4 { font-size: 0.94rem; color: var(--primary); margin-bottom: 0.3rem; margin-top: 0; }
.about-card-v-body p { font-size: 0.82rem; margin-bottom: 0; line-height: 1.55; }

/* ===== USE CASES ===== */
.use-cases { padding: 80px 0; }
.use-case-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.use-case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); transform-origin: left; }
.use-case-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.use-case-card:hover::before { transform: scaleX(1); }
.use-case-icon { font-size: 1.8rem; margin-bottom: 1rem; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-glow), rgba(88,166,255,0.08)); border: 1px solid rgba(0,255,136,0.15); border-radius: var(--radius-lg); }
.use-case-card h3 { font-size: 1.02rem; margin-top: 0; margin-bottom: 0.6rem; }
.use-case-card p { font-size: 0.88rem; margin-bottom: 0; line-height: 1.7; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 80px 0; }
.why-grid-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .why-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid-v2 { grid-template-columns: 1fr; } }
.why-card-v2 { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.5rem 1.8rem; position: relative; overflow: hidden; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.why-card-v2::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); transform-origin: left; }
.why-card-v2:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.25), 0 0 20px rgba(0,255,136,0.05); }
.why-card-v2:hover::before { transform: scaleX(1); }
.why-card-num { position: absolute; top: 14px; right: 16px; font-size: 2.2rem; font-weight: 800; color: rgba(0,255,136,0.06); line-height: 1; letter-spacing: -1px; pointer-events: none; }
.why-card-v2:hover .why-card-num { color: rgba(0,255,136,0.12); }
.why-card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-glow), rgba(88,166,255,0.06)); border: 1px solid rgba(0,255,136,0.12); border-radius: var(--radius-lg); transition: var(--transition); }
.why-card-v2:hover .why-card-icon { border-color: rgba(0,255,136,0.35); box-shadow: 0 0 20px rgba(0,255,136,0.1); }
.why-card-v2 h3 { font-size: 0.96rem; margin-top: 0; margin-bottom: 0.5rem; }
.why-card-v2 p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.65; color: var(--text-secondary); }

/* ===== SIGNS SECTION ===== */
.signs-section { padding: 80px 0; }
.signs-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .signs-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .signs-grid-v2 { grid-template-columns: 1fr; } }
.sign-card-v2 { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem 1.6rem; position: relative; overflow: hidden; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.sign-card-v2::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--danger), var(--warning)); transform: scaleX(0); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); transform-origin: left; }
.sign-card-v2:hover { border-color: rgba(248,81,73,0.35); transform: translateY(-5px); box-shadow: 0 10px 32px rgba(0,0,0,0.25), 0 0 15px rgba(248,81,73,0.04); }
.sign-card-v2:hover::before { transform: scaleX(1); }
.sign-card-v2-num { position: absolute; top: 14px; right: 16px; font-size: 2.2rem; font-weight: 800; color: rgba(248,81,73,0.07); line-height: 1; pointer-events: none; }
.sign-card-v2:hover .sign-card-v2-num { color: rgba(248,81,73,0.14); }
.sign-card-v2-icon { font-size: 1.6rem; margin-bottom: 1rem; display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: rgba(248,81,73,0.06); border: 1px solid rgba(248,81,73,0.12); border-radius: var(--radius-lg); transition: var(--transition); }
.sign-card-v2:hover .sign-card-v2-icon { background: rgba(248,81,73,0.1); border-color: rgba(248,81,73,0.3); box-shadow: 0 0 15px rgba(248,81,73,0.08); }
.sign-card-v2 h3 { font-size: 0.96rem; margin-top: 0; margin-bottom: 0.5rem; }
.sign-card-v2 p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.65; color: var(--text-secondary); }

/* Signs CTA Box */
.signs-cta-box { display: flex; align-items: center; gap: 20px; margin-top: 28px; padding: 1.8rem 2rem; background: linear-gradient(135deg, rgba(248,81,73,0.06), rgba(240,136,62,0.04)); border: 1px solid rgba(248,81,73,0.2); border-radius: var(--radius-xl); }
.signs-cta-icon { font-size: 2.2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(248,81,73,0.08); border: 1px solid rgba(248,81,73,0.15); border-radius: var(--radius-lg); }
.signs-cta-text { flex: 1; }
.signs-cta-text p { font-size: 0.92rem; margin-bottom: 0; line-height: 1.7; }
.signs-cta-box .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 768px) { .signs-cta-box { flex-direction: column; text-align: center; } .signs-cta-box .btn { width: 100%; } }

/* ===== TECH SECTION ===== */
.tech-section { padding: 80px 0; }
.tech-content { max-width: 900px; margin: 0 auto 2rem; }
.tech-content p { line-height: 1.85; font-size: 0.96rem; }
.tech-compare-wrap { max-width: 920px; margin: 0 auto; overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.tech-compare-table { width: 100%; border-collapse: collapse; background: var(--bg-card); }
.tech-compare-table thead th { padding: 16px 20px; text-align: left; font-size: 0.9rem; font-weight: 700; border-bottom: 2px solid var(--border); background: rgba(255,255,255,0.02); }
.tech-compare-table thead th:first-child { width: 28%; }
.tech-compare-table thead th:nth-child(2),
.tech-compare-table thead th:nth-child(3) { width: 36%; }
.tech-compare-table tbody td { padding: 14px 20px; font-size: 0.87rem; color: var(--text-secondary); border-bottom: 1px solid rgba(48,54,61,0.5); line-height: 1.6; }
.tech-compare-table tbody td:first-child { color: var(--text-primary); font-weight: 600; font-size: 0.85rem; }
.tech-compare-table tbody tr:last-child td { border-bottom: none; }
.tech-compare-table tbody tr:hover { background: rgba(255,255,255,0.015); }
.tech-compare-table .check { color: var(--primary); }
.tech-compare-table .cross { color: var(--danger); opacity: 0.8; }
.tech-platform-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }
.tech-platform-badge.ios { background: rgba(142,142,147,0.1); border: 1px solid rgba(142,142,147,0.2); color: #c7c7cc; }
.tech-platform-badge.android { background: rgba(61,220,132,0.08); border: 1px solid rgba(61,220,132,0.2); color: #3ddc84; }

/* ===== HOW IT WORKS / STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 2rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 52px; left: 22%; right: 22%; height: 2px; background: linear-gradient(90deg, transparent, rgba(0,255,136,0.25), transparent); z-index: 0; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }
.step { text-align: center; padding: 2.8rem 2rem 2.2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); position: relative; z-index: 1; transition: var(--transition); }
.step:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 0 30px rgba(0,255,136,0.06); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: linear-gradient(135deg, rgba(0,255,136,0.12), rgba(0,255,136,0.04)); border: 2px solid rgba(0,255,136,0.4); border-radius: 50%; color: var(--primary); font-weight: 800; font-size: 1.4rem; margin-bottom: 1.4rem; box-shadow: 0 0 25px rgba(0,255,136,0.1); transition: var(--transition); }
.step:hover .step-number { border-color: var(--primary); box-shadow: 0 0 35px rgba(0,255,136,0.2); background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(0,255,136,0.08)); }
.step h3 { font-size: 1.1rem; margin-bottom: 0.7rem; margin-top: 0; }
.step p { font-size: 0.9rem; line-height: 1.75; }

/* ===== LEGAL SECTION ===== */
.legal-section { padding: 80px 0; }

/* Legal Intro Card */
.legal-intro-v2 { max-width: 920px; margin: 0 auto 2.5rem; }
.legal-intro-card { display: flex; align-items: flex-start; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.8rem 2rem; margin-bottom: 1.2rem; }
.legal-intro-icon { font-size: 2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(88,166,255,0.08); border: 1px solid rgba(88,166,255,0.15); border-radius: var(--radius-lg); }
.legal-intro-body p { margin-bottom: 0; line-height: 1.85; font-size: 0.95rem; }
@media (max-width: 640px) { .legal-intro-card { flex-direction: column; } }

/* Law Tags Strip */
.legal-laws-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.legal-law-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; background: rgba(88,166,255,0.06); border: 1px solid rgba(88,166,255,0.12); border-radius: 50px; font-size: 0.76rem; font-weight: 600; color: var(--accent); letter-spacing: 0.3px; }

/* Legal Cards Grid */
.legal-grid-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 0 auto; }
@media (max-width: 640px) { .legal-grid-v2 { grid-template-columns: 1fr; } }
.legal-card-v2 { background: var(--bg-card); border-radius: var(--radius-xl); padding: 2rem 2.2rem; position: relative; overflow: hidden; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.legal-card-v2::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.legal-card-v2.legal-yes { border: 1px solid rgba(0,255,136,0.2); }
.legal-card-v2.legal-yes::before { background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }
.legal-card-v2.legal-yes:hover { border-color: rgba(0,255,136,0.4); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,255,136,0.06); }
.legal-card-v2.legal-no { border: 1px solid rgba(248,81,73,0.2); }
.legal-card-v2.legal-no::before { background: linear-gradient(90deg, var(--danger), #da3633); }
.legal-card-v2.legal-no:hover { border-color: rgba(248,81,73,0.4); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(248,81,73,0.06); }

/* Legal Card Header with Badge */
.legal-card-v2-header { margin-bottom: 1.2rem; }
.legal-card-v2-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 0.6rem; }
.legal-badge-yes { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.2); color: var(--primary); }
.legal-badge-no { background: rgba(248,81,73,0.1); border: 1px solid rgba(248,81,73,0.2); color: var(--danger); }
.legal-card-v2 h3 { margin-top: 0; font-size: 1.08rem; margin-bottom: 0; }
.legal-card-v2.legal-yes h3 { color: var(--primary); }
.legal-card-v2.legal-no h3 { color: var(--danger); }

/* Legal Card List */
.legal-card-v2 ul { padding-left: 0; margin-bottom: 0; list-style: none; }
.legal-card-v2 li { font-size: 0.87rem; margin-bottom: 0.7rem; line-height: 1.65; padding-left: 1.6rem; position: relative; color: var(--text-secondary); }
.legal-card-v2.legal-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.legal-card-v2.legal-no li::before { content: '✗'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* Legal Footer Note */
.legal-footer-note { display: flex; align-items: center; gap: 16px; max-width: 920px; margin: 2rem auto 0; padding: 1.4rem 1.8rem; background: rgba(0,255,136,0.03); border: 1px solid rgba(0,255,136,0.1); border-radius: var(--radius-xl); }
.legal-footer-icon { font-size: 1.6rem; flex-shrink: 0; }
.legal-footer-note p { margin-bottom: 0; font-size: 0.9rem; line-height: 1.7; }
@media (max-width: 640px) { .legal-footer-note { flex-direction: column; text-align: center; } }

/* ===== TESTIMONIALS / REVIEWS ===== */
.testimonials-section { padding: 80px 0; }

/* Review Summary Bar */
.review-summary-bar { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 2.5rem; padding: 1.2rem 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); max-width: 560px; margin-left: auto; margin-right: auto; }
.review-summary-score { display: flex; align-items: baseline; gap: 2px; }
.review-big-number { font-size: 2.4rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.review-out-of { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.review-summary-stars { font-size: 1.3rem; letter-spacing: 3px; color: #f5a623; text-shadow: 0 0 12px rgba(245,166,35,0.3); }
.review-summary-text { font-size: 0.82rem; color: var(--text-muted); }
@media (max-width: 640px) { .review-summary-bar { flex-direction: column; gap: 8px; text-align: center; } }

/* Review Grid */
.review-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 1024px) { .review-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid-v2 { grid-template-columns: 1fr; } }

/* Review Card */
.review-card-v2 { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.8rem 2rem; display: flex; flex-direction: column; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.review-card-v2::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #f5a623, #f0883e); opacity: 0; transition: opacity 0.3s; }
.review-card-v2:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.2), 0 0 15px rgba(245,166,35,0.04); }
.review-card-v2:hover::before { opacity: 1; }

/* Card Top (stars + date) */
.review-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.review-stars-v2 { font-size: 1.05rem; letter-spacing: 2px; color: #f5a623; text-shadow: 0 0 10px rgba(245,166,35,0.25); }
.review-date { font-size: 0.72rem; color: var(--text-muted); }

/* Review Text */
.review-text-v2 { font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.4rem; flex: 1; }

/* Review Author */
.review-author-v2 { display: flex; align-items: center; gap: 12px; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.review-avatar-v2 { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(240,136,62,0.08)); border: 2px solid rgba(245,166,35,0.3); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #f5a623; font-size: 1rem; flex-shrink: 0; }
.review-name-v2 { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.review-meta-v2 { font-size: 0.76rem; color: var(--text-muted); }
.review-verified { margin-left: auto; font-size: 0.7rem; font-weight: 600; color: var(--primary); background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.15); padding: 3px 10px; border-radius: 50px; white-space: nowrap; }

/* ===== STATS SECTION ===== */
.stats-section { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { text-align: center; padding: 2.5rem 1.2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); position: relative; overflow: hidden; transition: var(--transition); }
.stat-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background: var(--primary); border-radius: 0 0 3px 3px; transition: width 0.3s; }
.stat-card:hover { border-color: rgba(0,255,136,0.25); transform: translateY(-4px); }
.stat-card:hover::before { width: 80px; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1.1; margin-bottom: 0.6rem; text-shadow: 0 0 30px rgba(0,255,136,0.15); }
.stat-label { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.5; }
.stat-source { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.6rem; font-style: italic; }

/* ===== COMPARISON TABLE ===== */
.comparison-section { padding: 80px 0; }
.comparison-table-wrap { overflow-x: auto; margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-card); }
.comparison-table thead th { padding: 18px 22px; text-align: left; font-size: 0.92rem; font-weight: 700; border-bottom: 2px solid var(--border); }
.comparison-table thead th:first-child { background: rgba(255,255,255,0.02); color: var(--text-primary); }
.comparison-table thead th:nth-child(2) { background: rgba(248,81,73,0.05); color: var(--text-muted); }
.comparison-table thead th:nth-child(3) { background: rgba(0,255,136,0.06); color: var(--primary); }
.comparison-table tbody td { padding: 15px 22px; font-size: 0.88rem; color: var(--text-secondary); border-bottom: 1px solid rgba(48,54,61,0.5); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(255,255,255,0.015); }
.comparison-table .check { color: var(--primary); font-weight: 600; }
.comparison-table .cross { color: var(--danger); opacity: 0.8; }

/* ===== GEO SECTION ===== */
.geo-section { padding: 80px 0; }
.geo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 768px) { .geo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .geo-grid { grid-template-columns: 1fr; } }
.geo-card { text-align: center; padding: 2rem 1.4rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); transition: var(--transition); position: relative; overflow: hidden; }
.geo-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity 0.3s; }
.geo-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.geo-card:hover::before { opacity: 1; }
.geo-flag { font-size: 3rem; margin-bottom: 0.8rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.geo-card h3 { font-size: 0.96rem; margin-top: 0; margin-bottom: 0.4rem; }
.geo-card p { font-size: 0.82rem; margin-bottom: 0; line-height: 1.55; }

/* ===== FEATURED ARTICLES ===== */
.featured-articles { padding: 80px 0; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.featured-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: transform 0.4s; transform-origin: left; }
.featured-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.featured-card:hover::before { transform: scaleX(1); }
.featured-card .fc-category { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--primary); background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.15); padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.featured-card h3 { font-size: 1.05rem; margin-top: 0; margin-bottom: 0.6rem; }
.featured-card h3 a { color: var(--text-primary); }
.featured-card h3 a:hover { color: var(--primary); }
.featured-card p { font-size: 0.86rem; margin-bottom: 0.8rem; line-height: 1.65; }
.featured-card .fc-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== INTERNAL LINKS ===== */
.internal-links { padding: 50px 0; }
.internal-links h2 { text-align: center; margin-bottom: 2rem; margin-top: 0; font-size: 1.4rem; }
.links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 640px) { .links-grid { grid-template-columns: 1fr; } }
.link-item { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); font-size: 0.9rem; color: var(--text-secondary); }
.link-item:hover { border-color: rgba(0,255,136,0.3); color: var(--primary); background: rgba(0,255,136,0.02); transform: translateX(4px); }
.link-item::before { content: '→'; color: var(--primary); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:has(.faq-question.active) { border-color: rgba(0,255,136,0.25); box-shadow: 0 4px 20px rgba(0,255,136,0.04); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.96rem; color: var(--text-primary); background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body); transition: var(--transition); gap: 16px; }
.faq-question:hover { color: var(--primary); background: rgba(0,255,136,0.02); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; width: 18px; height: 18px; opacity: 0.5; }
.faq-question.active svg { transform: rotate(180deg); color: var(--primary); opacity: 1; }
.faq-question.active { color: var(--primary); }
.faq-answer { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.9rem; display: none; line-height: 1.8; border-top: 1px solid rgba(48,54,61,0.5); margin: 0 14px; padding-top: 16px; }
.faq-answer.active { display: block; }

/* ===== LEAD FORM ===== */
.lead-form-section { padding: 40px 0; }
.lead-form-container { max-width: 700px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.8rem; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.lead-form-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); background-size: 200%; animation: gradient-slide 4s linear infinite; }
@keyframes gradient-slide { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.lead-form-header { text-align: center; margin-bottom: 2rem; }
.lead-form-title { font-size: 1.5rem; margin-bottom: 0.5rem; margin-top: 0; }
.lead-form-subtitle { color: var(--text-secondary); font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 0; }
.form-group-full { margin-top: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.required { color: var(--danger); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; background: var(--bg-input); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,255,136,0.1), 0 0 15px rgba(0,255,136,0.05); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238b949e'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--bg-input); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; }
.checkbox-label a { color: var(--accent); }
.btn-submit { width: 100%; padding: 15px; font-size: 1.02rem; margin-top: 8px; letter-spacing: 0.3px; }
.form-errors { background: rgba(248,81,73,0.08); border: 1px solid rgba(248,81,73,0.2); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 1.5rem; }
.form-errors ul { list-style: none; padding: 0; margin: 0; }
.form-errors li { color: var(--danger); font-size: 0.9rem; padding: 3px 0; }

/* ===== CONTACT METHODS ===== */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) { .contact-methods { grid-template-columns: 1fr; } }
.contact-method { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); font-size: 0.86rem; color: var(--text-secondary); transition: var(--transition); }
.contact-method:hover { border-color: rgba(0,255,136,0.2); }
.contact-method-icon { font-size: 1.4rem; }

/* ===== ARTICLE LAYOUT ===== */
/* Template A: <div class="article-layout container"> with sidebar TOC + article as direct children */
div.article-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; max-width: var(--container); margin: 0 auto; padding: 40px 20px; }
/* Template B: <article class="article-layout"> wrapping a .container > .article-grid */
article.article-layout { display: block; padding: 0; }
article.article-layout > .container { max-width: var(--container); margin: 0 auto; padding: 40px 20px; }

.article-content { min-width: 0; }
.article-content h2 { padding-top: 1rem; border-top: 1px solid var(--border); }
.article-content h2:first-of-type { border-top: none; padding-top: 0; }

/* Breadcrumbs - Template B (ordered list) */
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: 0; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumb-list li { color: var(--text-muted); }
.breadcrumb-list li a { color: var(--text-muted); transition: var(--transition-fast); }
.breadcrumb-list li a:hover { color: var(--primary); }
.breadcrumb-list li + li::before { content: '/'; margin: 0 8px; color: var(--text-muted); opacity: 0.5; }
.breadcrumb-list li:last-child { color: var(--text-secondary); }
nav.breadcrumbs .breadcrumb-list { padding: 16px 0; }

/* Article Header (Template B) */
.article-header { margin-bottom: 2rem; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 1rem; font-size: 0.8rem; color: var(--text-muted); }
.article-category { display: inline-block; background: rgba(0,255,136,0.08); color: var(--primary); padding: 3px 12px; border-radius: 50px; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.3px; }
.article-reading-time { display: inline-flex; align-items: center; gap: 4px; }
.article-reading-time::before { content: ''; display: inline-block; width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }
.article-meta time { display: inline-flex; align-items: center; gap: 4px; }
.article-meta time::before { content: ''; display: inline-block; width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }
.article-intro { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 2rem; border-left: 3px solid rgba(0,255,136,0.3); padding-left: 1.2rem; }

/* ===== TOC SIDEBAR ===== */
.toc-sidebar { position: sticky; top: 84px; height: fit-content; max-height: calc(100vh - 100px); overflow-y: auto; }
.toc-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.toc-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 1rem; font-weight: 600; }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-item { margin-bottom: 0; }
.toc-link { display: block; padding: 6px 12px; font-size: 0.85rem; color: var(--text-secondary); border-left: 2px solid transparent; transition: var(--transition-fast); border-radius: 0 4px 4px 0; }
.toc-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.toc-link.active { color: var(--primary); border-left-color: var(--primary); background: var(--primary-glow); }
.toc-mobile-toggle { display: none; }

/* Article grid (Template B) */
.article-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.article-sidebar .toc-sidebar { position: sticky; top: 84px; display: block; }
.article-sidebar .toc-mobile-toggle { display: none; }

@media (max-width: 1024px) {
    div.article-layout { grid-template-columns: 1fr; gap: 0; }
    .article-grid { grid-template-columns: 1fr; gap: 0; }
    .article-sidebar .toc-sidebar { position: relative; top: 0; display: none; margin-bottom: 1.5rem; }
    .article-sidebar .toc-sidebar.mobile-open { display: block; }
    .article-sidebar .toc-mobile-toggle { display: block; margin-bottom: 1rem; }
    .toc-sidebar { position: relative; top: 0; display: none; margin-bottom: 1.5rem; }
    .toc-sidebar.mobile-open { display: block; }
    .toc-mobile-toggle { display: block; margin-bottom: 1rem; }
    .toc-mobile-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-secondary); font-size: 0.9rem; cursor: pointer; font-family: var(--font-body); }
    .toc-mobile-btn:hover { border-color: var(--primary); color: var(--primary); }
    .toc-mobile-btn svg { transition: transform 0.3s; }
    .toc-mobile-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
    .toc-mobile-btn[aria-expanded="true"] { border-color: rgba(0,255,136,0.3); color: var(--primary); }
}

/* ===== RELATED ARTICLES ===== */
.related-articles { padding: 40px 0; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: var(--transition); }
.related-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-3px); }
.related-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.related-card h4 a { color: var(--text-primary); }
.related-card h4 a:hover { color: var(--primary); }
.related-card p { font-size: 0.85rem; margin-bottom: 0.5rem; }
.related-card .card-meta { font-size: 0.75rem; }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.blog-card:hover { border-color: rgba(0,255,136,0.3); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.blog-card-body { padding: 1.5rem; }
.blog-card-category { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--primary); background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.15); padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card-title a { color: var(--text-primary); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.blog-card-link { color: var(--primary); font-weight: 600; font-size: 0.85rem; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 16px 0; font-size: 0.85rem; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--text-muted); margin: 0 8px; }
.breadcrumbs .current { color: var(--text-secondary); }

/* ===== FOOTER ===== */
.site-footer { background: var(--bg-card); margin-top: 60px; position: relative; overflow: hidden; }
.site-footer::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,255,136,0.03) 0%, transparent 70%); pointer-events: none; }

/* Footer Accent Bar */
.footer-accent-bar { height: 3px; background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--accent) 50%, var(--primary) 80%, transparent 100%); opacity: 0.5; }

/* Article CTA Banner */
.article-cta { background: linear-gradient(135deg, rgba(0,255,136,0.10) 0%, rgba(0,179,104,0.08) 50%, rgba(88,166,255,0.06) 100%); border: 1px solid rgba(0,255,136,0.15); border-radius: var(--radius-xl); padding: 3rem 2.5rem; margin: 0 auto 3rem; text-align: center; position: relative; overflow: hidden; }
.article-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.article-cta-badge { display: inline-block; background: rgba(0,255,136,0.12); color: var(--primary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(0,255,136,0.25); margin-bottom: 1rem; }
.article-cta h3 { font-size: 1.6rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.3; }
.article-cta h3 span { color: var(--primary); }
.article-cta p { font-size: 1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.7; }
.article-cta .btn-primary { background: #00b368; color: #ffffff; font-size: 1rem; padding: 14px 32px; box-shadow: 0 4px 20px rgba(0,179,104,0.3); }
.article-cta .btn-primary:hover { background: #009955; color: #ffffff; box-shadow: 0 6px 28px rgba(0,179,104,0.45); transform: translateY(-2px); }
@media (max-width: 768px) { .article-cta { padding: 2rem 1.5rem; } .article-cta h3 { font-size: 1.3rem; } }

/* Footer CTA Banner */
.footer-cta-banner { background: linear-gradient(135deg, rgba(0,255,136,0.06) 0%, rgba(88,166,255,0.04) 50%, rgba(0,255,136,0.06) 100%); border-bottom: 1px solid var(--border-light); padding: 2rem 0; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-cta-content { flex: 1; }
.footer-cta-badge { display: inline-block; background: rgba(0,255,136,0.1); color: var(--primary); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(0,255,136,0.2); margin-bottom: 0.5rem; }
.footer-cta-title { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.footer-cta-text { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0; line-height: 1.5; }
.footer-cta-btn { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-weight: 600; padding: 12px 28px; border-radius: 10px; font-size: 0.92rem; }
@media (max-width: 768px) {
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-btn { width: 100%; justify-content: center; }
}

/* Footer Main Area */
.footer-main { display: grid; grid-template-columns: 1.3fr 2fr; gap: 60px; padding: 3.5rem 0 2.5rem; }
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Nav Logo Image */
.nav-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.nav-logo-text { color: #00ff88; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }

/* Footer Brand Column */
.footer-brand { padding-right: 1rem; }
.footer-logo-img { height: 40px; width: auto; display: block; object-fit: contain; margin-bottom: 1.2rem; }
.footer-logo-fallback { display: flex; align-items: center; gap: 12px; }
.footer-logo-group { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.footer-logo-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.15); border-radius: 12px; flex-shrink: 0; }
.footer-brand-name { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 0; letter-spacing: -0.01em; }
.footer-brand-desc { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }

/* Trust Badges */
.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-trust-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,255,136,0.05); border: 1px solid rgba(0,255,136,0.1); border-radius: 6px; padding: 5px 10px; font-size: 0.72rem; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.02em; }
.footer-trust-badge svg { color: var(--primary); flex-shrink: 0; }

/* Footer Links Area */
.footer-links-area { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 640px) { .footer-links-area { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-heading { display: flex; align-items: center; gap: 8px; color: var(--text-primary); font-size: 0.88rem; font-weight: 600; margin-bottom: 1.2rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border-light); letter-spacing: 0.02em; }
.footer-heading svg { flex-shrink: 0; opacity: 0.8; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0; }
.footer-links a { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); font-size: 0.84rem; line-height: 1.5; padding: 5px 0; transition: var(--transition-fast); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }
.footer-links a:hover .footer-link-arrow { color: var(--primary); transform: translateX(3px); }
.footer-link-arrow { color: var(--text-muted); font-size: 1rem; font-weight: 700; line-height: 1; transition: var(--transition-fast); flex-shrink: 0; width: 10px; }

/* Footer Bottom */
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding: 1.5rem 0; border-top: 1px solid var(--border); }
.footer-bottom-left { flex-shrink: 0; }
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); opacity: 0.5; }
.footer-disclaimer { font-size: 0.75rem; color: var(--text-muted); max-width: 480px; line-height: 1.6; text-align: right; margin: 0; opacity: 0.7; }
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
    .footer-bottom-left { align-items: center; display: flex; flex-direction: column; }
    .footer-disclaimer { text-align: center; max-width: 100%; }
}

/* ===== EXIT INTENT POPUP ===== */
.exit-popup { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000; }
.exit-popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); }
.exit-popup-content { position: relative; max-width: 480px; margin: 15vh auto; background: var(--bg-card); border: 1px solid rgba(0,255,136,0.3); border-radius: var(--radius-xl); padding: 3rem 2.5rem; text-align: center; box-shadow: 0 0 60px rgba(0,255,136,0.1), var(--shadow-lg); }
.exit-popup-content::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.exit-popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; line-height: 1; transition: var(--transition-fast); }
.exit-popup-close:hover { color: var(--text-primary); }
.exit-popup-content h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.exit-popup-content p { margin-bottom: 1.5rem; }
.exit-popup-cta { display: inline-block; }

/* ===== THANK YOU PAGE ===== */
.thank-you { text-align: center; padding: 100px 20px; min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.thank-you .checkmark { width: 80px; height: 80px; border-radius: 50%; background: var(--primary-glow); border: 3px solid var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2.5rem; color: var(--primary); box-shadow: 0 0 30px rgba(0,255,136,0.15); }

/* ===== 404 PAGE ===== */
.page-404 { text-align: center; padding: 100px 20px; min-height: 60vh; }
.page-404 h1 { font-size: 6rem; color: var(--primary); margin-bottom: 0.5rem; text-shadow: 0 0 40px rgba(0,255,136,0.2); }

/* ===== ARTICLE BODY ===== */
.article-body h2, .article-content h2 { color: var(--text-primary); }
.article-body h3, .article-content h3 { color: var(--text-primary); }
.article-body p, .article-content p { color: var(--text-secondary); line-height: 1.85; }
.article-body ul, .article-body ol, .article-content ul, .article-content ol { margin-bottom: 1.5rem; }
.article-body li, .article-content li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--text-secondary); }
.article-body a, .article-content a { color: var(--accent); border-bottom: 1px solid transparent; }
.article-body a:hover, .article-content a:hover { border-bottom-color: var(--accent); }
.article-body .info-box, .article-content .info-box { background: rgba(88,166,255,0.06); border: 1px solid rgba(88,166,255,0.15); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; margin: 1.5rem 0; }
.article-body .info-box strong, .article-content .info-box strong { color: var(--accent); }
.article-body .warning-box, .article-content .warning-box { background: rgba(240,136,62,0.06); border: 1px solid rgba(240,136,62,0.15); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; margin: 1.5rem 0; }
.article-body .warning-box strong, .article-content .warning-box strong { color: var(--warning); }

/* ===== IMAGES ===== */
/* Hero background image */
.hero { position: relative; overflow: hidden; }
.hero-bg-image { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 1200px; height: auto; opacity: 0.08; pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }

/* Article featured image */
.article-featured-image { margin: 0 0 2rem; padding: 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); }
.article-featured-image img { width: 100%; height: auto; display: block; aspect-ratio: 1200/630; object-fit: cover; }

/* Homepage section images */
.section-image { max-width: 600px; width: 100%; height: auto; border-radius: var(--radius-xl); margin-bottom: 2rem; border: 1px solid var(--border); }
.section-image-wide { max-width: 100%; width: 100%; height: auto; border-radius: var(--radius-xl); margin-bottom: 2rem; border: 1px solid var(--border); opacity: 0.85; }

/* Blog card image */
.blog-card-image { display: block; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 600/315; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image + .blog-card-body { border-top: none; }

/* Responsive image adjustments */
@media (max-width: 768px) {
    .section-image { max-width: 100%; }
    .article-featured-image { border-radius: var(--radius); }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Number badge */
.num-badge { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--primary-glow); border: 1.5px solid rgba(0,255,136,0.3); color: var(--primary); font-weight: 800; font-size: 0.9rem; margin-bottom: 0.8rem; flex-shrink: 0; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(88,166,255,0.04)); }
.cta-banner::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,255,136,0.3), transparent); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 0; margin-bottom: 0.8rem; }
.cta-banner p { font-size: 1.05rem; max-width: 620px; margin: 0 auto 2rem; }

/* ===== PRINT STYLES ===== */
@media print {
    .nav, .site-footer, .lead-form-section, .exit-popup, .toc-sidebar, .toc-mobile-toggle { display: none !important; }
    body { background: #fff; color: #000; }
    .article-content { max-width: 100%; }
}
