/* ═══════════════════════════════════════════════════════════════
   VZLOMTG PRO — CYBER PRO DESIGN SYSTEM
   Dark theme, neon green accents, glassmorphism, cyberpunk grid
   ═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;700;900&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
    --bg-dark: #0B1120;
    --bg-darker: #060B16;
    --bg-card: #0F1629;
    --bg-card-hover: #141D35;
    --bg-glass: rgba(15, 22, 41, 0.6);

    --neon-green: #00FF41;
    --neon-green-dim: #00CC33;
    --cyber-blue: #00D4FF;
    --cyber-purple: #8B5CF6;
    --accent-gold: #D4AF37;
    --error-red: #FF4757;
    --warning-yellow: #FFC107;

    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --text-white: #FFFFFF;

    --gradient-neon: linear-gradient(135deg, #00FF41 0%, #00D4FF 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 0%, rgba(0, 255, 65, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    --shadow-neon: 0 0 20px rgba(0, 255, 65, 0.3);
    --shadow-neon-strong: 0 0 40px rgba(0, 255, 65, 0.4);
    --shadow-blue: 0 0 20px rgba(0, 212, 255, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition: all 0.3s ease;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-tech: 'Orbitron', monospace;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ─── Cyberpunk Grid Background ─────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 0;
    pointer-events: none;
}

/* ─── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--cyber-blue);
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* ─── Navigation ────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    padding: 0 1.5rem;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: var(--font-tech);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--shadow-neon);
}

.logo span {
    color: var(--cyber-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 65, 0.05);
}

.nav-cta {
    background: var(--gradient-neon) !important;
    color: var(--bg-dark) !important;
    font-weight: 700 !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 1.2rem !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-neon) !important;
    transform: translateY(-1px);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 420px;
    background: rgba(15, 22, 41, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
}

.nav-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nav-dropdown-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-green);
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    margin-bottom: 0.3rem;
}

.nav-dropdown-menu a {
    color: var(--text-secondary) !important;
    font-size: 0.85rem !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 6px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: var(--neon-green) !important;
    background: rgba(0, 255, 65, 0.08) !important;
}

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

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition);
    display: block;
}

.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 menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 2rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu.active {
    display: flex !important;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: rgba(0, 255, 65, 0.2);
    color: var(--neon-green);
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 65, 0.15);
    box-shadow: var(--shadow-card);
}

.card.glass {
    background: var(--bg-glass);
    backdrop-filter: saturate(180%) blur(20px);
}

.card.neon-border:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--bg-dark);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon-strong);
    color: var(--bg-dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-outline:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
    color: var(--neon-green);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: var(--neon-green);
    opacity: 0.04;
    filter: blur(120px);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--cyber-blue);
    opacity: 0.04;
    filter: blur(120px);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: var(--neon-green);
    text-shadow: var(--shadow-neon);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.hero-visual .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-visual .orb-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    opacity: 0.08;
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-visual .orb-2 {
    width: 200px;
    height: 200px;
    background: var(--cyber-blue);
    opacity: 0.06;
    bottom: 0;
    left: 0;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-visual .orb-3 {
    width: 150px;
    height: 150px;
    background: var(--cyber-purple);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

/* ─── Section Headers ───────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 65, 0.08);
    border: 1px solid rgba(0, 255, 65, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--neon-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--text-muted);
}

/* ─── Service Cards ─────────────────────────────────────────── */
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 255, 65, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(0, 255, 65, 0.15);
    box-shadow: var(--shadow-neon);
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    width: 100%;
}

/* ─── Steps / Process ───────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    counter-increment: step;
}

.step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-neon);
    color: var(--bg-dark);
    font-family: var(--font-tech);
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: var(--shadow-neon);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
}

/* ─── Stats ─────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(0, 255, 65, 0.2);
}

.stat-number {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: var(--shadow-neon);
    margin-bottom: 0.5rem;
}

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

/* ─── Reviews ───────────────────────────────────────────────── */
.review-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.review-meta h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.review-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.verified-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #4CAF50;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 255, 65, 0.15);
}

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

.faq-question:hover {
    color: var(--neon-green);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--neon-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(15, 22, 41, 0.5);
}

.faq-answer.show {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    padding-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    opacity: 0.03;
    filter: blur(80px);
    border-radius: 50%;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
}

.footer h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--neon-green);
}

.breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ─── Keyword Cloud ─────────────────────────────────────────── */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tag-cloud span {
    background: rgba(0, 255, 65, 0.08);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 65, 0.15);
    white-space: nowrap;
    transition: var(--transition);
}

.tag-cloud span:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* ─── Sidebar ───────────────────────────────────────────────── */
.sidebar-sticky {
    position: sticky;
    top: 90px;
}

.price-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.price-card .price {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: var(--shadow-neon);
    margin-bottom: 1rem;
}

.price-card .features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.price-card .features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-card .features li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: 700;
}

/* ─── Guarantee Cards ───────────────────────────────────────── */
.guarantee-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ─── Contact Form ──────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* ─── Alert Blocks ──────────────────────────────────────────── */
.alert {
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning-yellow);
    color: var(--warning-yellow);
}

.alert-info {
    background: rgba(0, 212, 255, 0.08);
    border-left: 4px solid var(--cyber-blue);
    color: var(--cyber-blue);
}

.alert-success {
    background: rgba(0, 255, 65, 0.08);
    border-left: 4px solid var(--neon-green);
    color: var(--neon-green);
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────── */

/* --- Tablet Landscape & Small Desktop (≤1024px) --- */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

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

    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-sticky {
        position: static;
    }

    .nav-dropdown-menu {
        min-width: 360px;
    }

    table {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 0.7rem;
    }
}

/* --- Tablet Portrait (≤768px) --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-dropdown-menu {
        display: none !important;
    }

    section {
        padding: 3.5rem 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

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

    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

    /* Tables responsive */
    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 0.6rem 0.5rem;
    }

    /* GEO blocks */
    .geo-takeaway {
        padding: 1rem !important;
    }

    .geo-takeaway h3 {
        font-size: 1rem !important;
    }

    .geo-takeaway li {
        font-size: 0.88rem !important;
    }

    .geo-definition {
        font-size: 0.95rem !important;
        padding: 1rem !important;
    }

    /* Related links */
    .related-links div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Legal footer */
    .footer-legal {
        padding: 1.5rem 0 !important;
    }

    .footer-legal p {
        font-size: 0.72rem !important;
    }

    /* Inline stat blocks */
    div[style*="grid-template-columns:repeat(auto-fit,minmax(200px"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Price card */
    .price-card {
        padding: 1.5rem;
    }

    .price-card .price {
        font-size: 1.5rem;
    }

    /* Hero section */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 0.8rem;
    }

    /* Mobile menu overflow scroll */
    .mobile-menu {
        overflow-y: auto;
    }
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

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

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

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 85px;
    }

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

    /* Inline stat blocks — single column */
    div[style*="grid-template-columns:repeat(auto-fit,minmax(200px"] {
        grid-template-columns: 1fr !important;
    }

    /* Stats card font size */
    div[style*="font-size:2.5rem"] {
        font-size: 2rem !important;
    }

    /* Comparison table scroll */
    table {
        font-size: 0.75rem;
    }

    table th:nth-child(4),
    table td:nth-child(4) {
        display: none;
    }

    table th,
    table td {
        padding: 0.5rem 0.4rem;
    }

    /* Tag cloud wrap */
    .tag-cloud {
        gap: 0.3rem;
    }

    .tag-cloud span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    /* Cards smaller padding */
    .card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    /* Buttons */
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-links li {
        padding: 0.35rem 0;
    }

    /* Legal */
    .footer-legal p {
        font-size: 0.68rem !important;
        line-height: 1.5 !important;
    }

    /* Navbar logo */
    .logo {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0 1rem;
    }

    .navbar-inner {
        height: 60px;
    }

    .mobile-menu {
        top: 60px;
        padding: 1rem;
    }

    .mobile-menu a {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}

/* --- Ultra Small (≤360px) --- */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .card {
        padding: 1rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .geo-takeaway {
        margin: 1rem 0 !important;
    }

    /* Hide less important table columns */
    table th:nth-child(3),
    table td:nth-child(3),
    table th:nth-child(5),
    table td:nth-child(5) {
        display: none;
    }
}