/*
Theme Name: SEOelinks
Theme URI: https://seoelinks.com
Author: SEOelinks
Author URI: https://seoelinks.com
Description: Professional SEO agency theme by SEOelinks. Built for performance, conversions, and search engine rankings.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seoelinks
Tags: seo, agency, business, professional, dark, custom-menu, featured-images, theme-options
*/

/* ===== CSS RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #030014; color: #ffffff; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', -apple-system, sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

/* ===== CSS VARIABLES ===== */
:root {
    --bg: #030014;
    --bg2: rgba(15, 10, 35, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --primary: #00f2ff;
    --secondary: #ff00ff;
    --accent: #7000ff;
    --text: #ffffff;
    --muted: #8a8a9b;
    --success: #34a853;
    --warning: #fbbc04;
    --error: #ea4335;
    --grad1: linear-gradient(135deg, #00f2ff 0%, #7000ff 50%, #ff00ff 100%);
    --grad2: linear-gradient(135deg, #ff00ff 0%, #ff5555 100%);
    --font-h: 'Space Grotesk', -apple-system, sans-serif;
    --font-b: 'Outfit', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(0, 242, 255, 0.15);
    --container: 1200px;
    --header-h: 80px;
}

/* ===== UTILITY CLASSES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); margin-bottom: 16px; padding: 6px 16px; background: rgba(0, 242, 255, 0.06); border: 1px solid rgba(0, 242, 255, 0.15); border-radius: 50px; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -2px; margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; max-width: 600px; margin: 0 auto; color: var(--muted); }
.text-gradient { background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-h); border: none; cursor: pointer; transition: all 0.4s var(--ease); position: relative; overflow: hidden; }
.btn-glow { background: var(--grad1); color: #fff; background-size: 200% auto; box-shadow: 0 8px 30px rgba(112, 0, 255, 0.4); }
.btn-glow:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 12px 35px rgba(255, 0, 255, 0.5); }
.btn-glass { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); color: var(--text); backdrop-filter: blur(10px); }
.btn-glass:hover { border-color: var(--primary); background: rgba(0, 242, 255, 0.08); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== CARDS ===== */
.card { background: var(--bg2); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: all 0.4s var(--ease); position: relative; z-index: 2; }
.card:hover { border-color: rgba(0, 242, 255, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card-icon { font-size: 2rem; margin-bottom: 16px; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 2; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-input { width: 100%; padding: 16px 20px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 1rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 20px rgba(0, 242, 255, 0.1); }
.form-input::placeholder { color: var(--muted); }
textarea.form-input { min-height: 150px; resize: vertical; }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 16px 0; transition: all 0.5s var(--ease); }
.site-header.scrolled { background: rgba(3, 0, 20, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 12px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 10px; font-family: var(--font-h); }
.logo-icon { width: 36px; height: 36px; background: var(--grad1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #000; font-weight: 900; }

/* Creative SEOelinks Logo */
.seoelinks-logo { display: flex; align-items: center; gap: 0; font-family: var(--font-h); font-weight: 800; font-size: 1.6rem; }
.logo-icon-wrap { display: flex; align-items: center; gap: 1px; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-bracket { font-weight: 300; font-size: 1.8rem; opacity: 0.7; }
.logo-seo { font-weight: 900; letter-spacing: -1px; }
.logo-text { color: var(--text); font-weight: 600; letter-spacing: -0.5px; }
.seoelinks-logo:hover .logo-icon-wrap { animation: logoGlow 0.5s ease; }
@keyframes logoGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; padding: 8px; }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(3, 0, 20, 0.98); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.active { display: flex; }
.mobile-nav a { font-size: 1.5rem; font-weight: 600; color: var(--text); }
.mobile-nav-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text); font-size: 2rem; cursor: pointer; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 30%, rgba(0, 242, 255, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(112, 0, 255, 0.06) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; color: var(--primary); text-transform: uppercase; margin-bottom: 24px; }
.badge-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.6); } 50% { box-shadow: 0 0 0 8px rgba(0, 242, 255, 0); } }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -3px; margin-bottom: 24px; line-height: 1.05; }
.hero-desc { font-size: 1.2rem; color: var(--muted); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.hero-trust-item i { color: var(--primary); font-size: 1rem; }

/* ===== METRICS BAR ===== */
.metrics-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 2; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-item { padding: 40px 24px; text-align: center; border-right: 1px solid var(--border); }
.metric-item:last-child { border-right: none; }
.metric-value { font-size: 2.5rem; font-weight: 800; font-family: var(--font-h); background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline; }
.metric-label { display: block; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; font-weight: 600; }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ===== PROCESS SECTION ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: var(--border); }
.process-step { text-align: center; position: relative; }
.process-num { font-size: 3rem; font-weight: 900; font-family: var(--font-h); background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 16px; }
.process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--muted); }

/* ===== CASE STUDIES ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.case-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; transition: all 0.4s var(--ease); position: relative; z-index: 2; }
.case-card:hover { border-color: rgba(255, 0, 255, 0.3); transform: translateY(-6px); }
.case-stat { font-size: 3rem; font-weight: 900; font-family: var(--font-h); background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.case-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.case-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.case-tag { display: inline-block; padding: 4px 14px; background: rgba(0, 242, 255, 0.08); border: 1px solid rgba(0, 242, 255, 0.2); border-radius: 50px; font-size: 0.7rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: all 0.4s var(--ease); }
.testimonial-card:hover { border-color: rgba(255, 0, 255, 0.2); transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; font-style: italic; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.testimonial-author strong { display: block; color: var(--text); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 1.1rem; font-family: var(--font-h); font-weight: 600; background: none; border: none; width: 100%; color: var(--text); text-align: left; }
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); font-size: 0.9rem; transition: transform 0.4s; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-answer p { padding-bottom: 20px; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; overflow: hidden; }
.cta-card { text-align: center; padding: 80px 40px; background: var(--bg2); backdrop-filter: blur(20px); border: 1px solid var(--primary); border-radius: var(--radius-xl); position: relative; overflow: hidden; z-index: 2; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; pointer-events: none; }
.cta-orb-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; left: -100px; }
.cta-orb-2 { width: 350px; height: 350px; background: var(--secondary); bottom: -100px; right: -100px; }
.cta-content { position: relative; z-index: 2; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; position: relative; z-index: 2; }
.price-card { background: var(--bg2); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 28px; display: flex; flex-direction: column; transition: all 0.4s var(--ease); position: relative; z-index: 2; }
.price-card:hover { border-color: rgba(0, 242, 255, 0.3); transform: translateY(-6px); }
.price-card.featured { border-color: var(--secondary); background: linear-gradient(180deg, rgba(255, 0, 255, 0.04), var(--bg2)); transform: scale(1.03); box-shadow: 0 0 50px rgba(255, 0, 255, 0.1); z-index: 2; }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--grad1); color: #fff; padding: 5px 18px; border-radius: 0 0 10px 10px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.price-tier { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.price-amount { font-size: 2.5rem; font-weight: 800; font-family: var(--font-h); margin-bottom: 24px; }
.price-amount span { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.price-list { margin-bottom: 28px; flex-grow: 1; }
.price-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--muted); }
.price-list li i { color: var(--primary); font-size: 0.8rem; }

/* ===== FOOTER ===== */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; color: var(--text); }
.footer-col a { display: block; color: var(--muted); font-size: 0.9rem; padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--muted); transition: all 0.3s; }
.footer-socials a:hover { background: var(--primary); color: #000; border-color: var(--primary); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.4s var(--ease); }
.blog-card:hover { border-color: rgba(0, 242, 255, 0.3); transform: translateY(-6px); }
.blog-card-thumb { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-card-tag { display: inline-block; padding: 4px 12px; background: rgba(255, 0, 255, 0.08); border: 1px solid rgba(255, 0, 255, 0.2); border-radius: 50px; font-size: 0.7rem; font-weight: 600; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text); transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.blog-card-meta { font-size: 0.8rem; color: var(--muted); display: flex; gap: 16px; }

/* Single Post */
.single-post { max-width: 800px; margin: 0 auto; }
.post-header { padding-top: 120px; padding-bottom: 48px; text-align: center; }
.post-header h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.post-meta { font-size: 0.85rem; color: var(--muted); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.post-content { font-size: 1.05rem; line-height: 1.8; color: var(--muted); }
.post-content h2 { font-size: 1.6rem; color: var(--text); margin: 40px 0 16px; }
.post-content h3 { font-size: 1.3rem; color: var(--text); margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin-bottom: 20px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--primary); border-bottom: 1px solid rgba(0, 242, 255, 0.3); }
.post-content a:hover { border-bottom-color: var(--primary); }
.post-content blockquote { border-left: 3px solid var(--primary); padding: 16px 24px; margin: 24px 0; background: rgba(0, 242, 255, 0.03); border-radius: 0 var(--radius) var(--radius) 0; }
.post-content code { background: rgba(255, 255, 255, 0.06); padding: 2px 8px; border-radius: 4px; font-size: 0.9em; }
.post-content pre { background: rgba(255, 255, 255, 0.04); padding: 20px; border-radius: var(--radius); overflow-x: auto; margin-bottom: 20px; }
.post-content img { border-radius: var(--radius); margin: 24px 0; }

/* Related Posts */
.related-posts { padding: 80px 0; border-top: 1px solid var(--border); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item i { font-size: 1.2rem; color: var(--primary); margin-top: 4px; }
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--muted); }
.contact-form-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }

/* ===== ABOUT PAGE ===== */
.about-hero { padding-top: 120px; padding-bottom: 80px; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.about-stats div { text-align: center; }
.about-stats strong { display: block; font-size: 2rem; font-family: var(--font-h); background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-stats span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== INDUSTRIES ===== */
.industries-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industry-pill { padding: 12px 24px; background: var(--bg2); border: 1px solid var(--border); border-radius: 50px; font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: all 0.3s; }
.industry-pill:hover { border-color: var(--primary); background: rgba(0, 242, 255, 0.06); }
.industry-pill i { color: var(--primary); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(3, 0, 20, 0.95); backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 12px 24px; z-index: 998; }
.sticky-cta .btn { width: 100%; }

/* ===== PAGE HEADER ===== */
.page-header { padding-top: 140px; padding-bottom: 60px; text-align: center; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===== SIDEBAR ===== */
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ===== 404 ===== */
.error-404 { text-align: center; padding: 160px 24px; }
.error-404 h1 { font-size: 8rem; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.error-404 p { font-size: 1.2rem; color: var(--muted); margin-bottom: 32px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3, .cases-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .page-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .section-pad { padding: 64px 0; }
    .grid-2, .grid-3, .grid-4, .pricing-grid, .cases-grid, .testimonials-grid, .blog-grid, .process-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .metric-item { padding: 24px 16px; }
    .metric-item:nth-child(2) { border-right: none; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .sticky-cta { display: block; }
    .site-footer { padding-bottom: 100px; }
    .about-stats { flex-direction: column; gap: 20px; }
    .hero-trust { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .metric-item { border-right: none; border-bottom: 1px solid var(--border); }
    .metrics-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== ENHANCED VISUALS ===== */

/* Animated gradient background */
.bg-animated { position: relative; overflow: hidden; }
.bg-animated::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 242, 255, 0.03), rgba(112, 0, 255, 0.03), rgba(255, 0, 255, 0.03)); background-size: 400% 400%; animation: gradientShift 15s ease infinite; z-index: 0; pointer-events: none; }
.bg-animated > .container { position: relative; z-index: 2; }
.bg-animated .orb { z-index: 1; }

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

/* Floating orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.08; pointer-events: none; animation: float 20s ease-in-out infinite; }
.orb-primary { background: var(--primary); }
.orb-secondary { background: var(--secondary); }
.orb-accent { background: var(--accent); }
.orb-1 { width: 300px; height: 300px; top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 250px; height: 250px; bottom: -80px; left: -80px; animation-delay: -5s; }
.orb-3 { width: 200px; height: 200px; top: 50%; left: 50%; animation-delay: -10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Gradient border cards */
.card-gradient-border { position: relative; background: var(--bg2); border-radius: var(--radius-lg); padding: 36px; z-index: 1; }
.card-gradient-border::before { content: ''; position: absolute; inset: -1px; border-radius: calc(var(--radius-lg) + 1px); background: var(--grad1); z-index: -1; opacity: 0; transition: opacity 0.4s; }
.card-gradient-border:hover::before { opacity: 1; }
.card-gradient-border::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); background: var(--bg2); z-index: -1; }

/* Glow effect on hover */
.card-glow { transition: all 0.4s var(--ease); }
.card-glow:hover { box-shadow: 0 0 40px rgba(0, 242, 255, 0.15), 0 0 80px rgba(112, 0, 255, 0.05); }

/* Animated underline links */
.link-animated { position: relative; display: inline-block; }
.link-animated::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--grad1); transition: width 0.4s var(--ease); }
.link-animated:hover::after { width: 100%; }

/* Text reveal animation */
.text-reveal { overflow: hidden; }
.text-reveal span { display: inline-block; transform: translateY(100%); transition: transform 0.6s var(--ease); }
.text-reveal.visible span { transform: translateY(0); }

/* Staggered list animation */
.stagger-list > * { opacity: 0; transform: translateX(-20px); transition: opacity 0.4s, transform 0.4s; }
.stagger-list.visible > *:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
.stagger-list.visible > *:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.stagger-list.visible > *:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.stagger-list.visible > *:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.stagger-list.visible > *:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
.stagger-list.visible > *:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.stagger-list.visible > *:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
.stagger-list.visible > *:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 0.45s; }

/* Pulse animation for icons */
.icon-pulse { animation: iconPulse 3s ease-in-out infinite; }
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Rotate on hover */
.icon-rotate { transition: transform 0.4s var(--ease); }
.icon-rotate:hover { transform: rotate(360deg); }

/* Scale up on hover */
.card-scale { transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.card-scale:hover { transform: scale(1.02); }

/* Shimmer effect */
.shimmer { position: relative; overflow: hidden; }
.shimmer::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); animation: shimmer 3s infinite; }
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Noise texture overlay */
.noise-overlay { position: relative; }
.noise-overlay::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; }
.noise-overlay > * { position: relative; z-index: 1; }

/* Grid pattern background */
.grid-bg { background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 60px 60px; }

/* Dotted pattern */
.dots-bg { background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 30px 30px; }

/* Service page enhanced styles */
.service-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.service-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: linear-gradient(180deg, rgba(0, 242, 255, 0.03) 0%, transparent 100%); z-index: 0; pointer-events: none; }
.service-hero .container { position: relative; z-index: 2; }
.service-hero .split-block { position: relative; z-index: 2; }

.service-content { max-width: 900px; margin: 0 auto; }
.service-content p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 24px; }
.service-content h2 { font-size: 1.8rem; margin: 48px 0 20px; }
.service-content h3 { font-size: 1.4rem; margin: 36px 0 16px; }

.service-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.service-feature { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.4s var(--ease); }
.service-feature:hover { border-color: rgba(0, 242, 255, 0.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 242, 255, 0.1); }
.service-feature-icon { font-size: 1.5rem; margin-bottom: 12px; background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.service-feature h4 { font-size: 1.05rem; margin-bottom: 8px; }
.service-feature p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }

.service-stat-row { display: flex; gap: 40px; justify-content: center; margin: 48px 0; flex-wrap: wrap; }
.service-stat { text-align: center; }
.service-stat-value { font-size: 2.5rem; font-weight: 800; font-family: var(--font-h); background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.service-stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.service-checklist { list-style: none; margin: 24px 0; }
.service-checklist li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: var(--muted); line-height: 1.6; }
.service-checklist li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.service-checklist li strong { color: var(--text); }

.service-quote { background: var(--bg2); border-left: 3px solid var(--primary); padding: 24px 32px; margin: 32px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.service-comparison { width: 100%; border-collapse: collapse; margin: 32px 0; }
.service-comparison th, .service-comparison td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.service-comparison th { color: var(--text); font-weight: 600; background: rgba(255,255,255,0.02); }
.service-comparison td { color: var(--muted); }
.service-comparison tr:hover td { background: rgba(0, 242, 255, 0.02); }

@media (max-width: 768px) {
    .service-feature-grid { grid-template-columns: 1fr; }
    .service-stat-row { gap: 24px; }
    .service-stat-value { font-size: 2rem; }
}

/* ===== TOPIC-SPECIFIC ANIMATED VISUALS ===== */

/* Rotating gear animation (Technical SEO) */
.visual-rotate-slow { animation: rotateSlow 20s linear infinite; }
.visual-rotate-medium { animation: rotateMedium 12s linear infinite; }
.visual-rotate-reverse { animation: rotateSlow 15s linear infinite reverse; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateMedium { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Pulsing link animation (Link Building) */
.visual-pulse { animation: visualPulse 2s ease-in-out infinite; }
.visual-pulse-delay-1 { animation-delay: 0.3s; }
.visual-pulse-delay-2 { animation-delay: 0.6s; }
@keyframes visualPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* Growing chart animation (SEO Audit, Analytics) */
.visual-grow { animation: growUp 2s ease-out forwards; transform-origin: bottom; }
@keyframes growUp {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Floating animation (Content, Voice Search) */
.visual-float { animation: visualFloat 4s ease-in-out infinite; }
.visual-float-delay { animation-delay: -2s; }
@keyframes visualFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Bounce animation (Local SEO, Maps) */
.visual-bounce { animation: visualBounce 2s ease-in-out infinite; }
@keyframes visualBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Ping animation (Analytics dots) */
.visual-ping { animation: visualPing 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes visualPing {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Slide in from left */
.visual-slide-left { animation: slideLeft 0.8s ease-out forwards; }
@keyframes slideLeft {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Slide in from right */
.visual-slide-right { animation: slideRight 0.8s ease-out forwards; }
@keyframes slideRight {
    from { transform: translateX(40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Scale up animation */
.visual-scale { animation: visualScale 0.6s ease-out forwards; }
@keyframes visualScale {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Typing cursor blink (Content Strategy) */
.visual-blink { animation: visualBlink 1s step-end infinite; }
@keyframes visualBlink {
    50% { opacity: 0; }
}

/* Wave animation (Reputation, Social) */
.visual-wave { animation: visualWave 3s ease-in-out infinite; }
@keyframes visualWave {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Orbit animation (International SEO) */
.visual-orbit { animation: visualOrbit 8s linear infinite; }
@keyframes visualOrbit {
    from { transform: rotate(0deg) translateX(30px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

/* Glow pulse (CRO, PPC) */
.visual-glow-pulse { animation: glowPulse 2s ease-in-out infinite; }
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 242, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 242, 255, 0.4), 0 0 50px rgba(112, 0, 255, 0.2); }
}

/* Shake animation (Penalty Recovery) */
.visual-shake { animation: visualShake 0.5s ease-in-out; animation-iteration-count: infinite; animation-delay: 3s; }
@keyframes visualShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Map pin drop (Local SEO) */
.visual-pin-drop { animation: pinDrop 1.5s ease-out forwards; }
@keyframes pinDrop {
    0% { transform: translateY(-50px); opacity: 0; }
    60% { transform: translateY(5px); opacity: 1; }
    80% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

/* Loading bar animation (Web Design) */
.visual-loading-bar { position: relative; overflow: hidden; }
.visual-loading-bar::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.15), transparent); animation: loadingBar 2s ease-in-out infinite; }
@keyframes loadingBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Checkmark draw animation (Results) */
.visual-check-draw svg { stroke-dasharray: 50; stroke-dashoffset: 50; animation: drawCheck 1s ease-out forwards; }
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* ===== LANDING PAGE BLOCK STYLES ===== */

/* Hero visual block */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 300px; }
.hero-visual-icon { font-size: 6rem; opacity: 0.15; position: absolute; }
.hero-visual-icon-1 { top: 10%; left: 10%; }
.hero-visual-icon-2 { bottom: 10%; right: 10%; }
.hero-visual-icon-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Split block (visual left, content right) */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }
.split-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; z-index: 2; }
.split-content h2 { font-size: 2rem; margin-bottom: 20px; }
.split-content p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

/* Visual card with animated background */
.visual-card { position: relative; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; overflow: hidden; z-index: 2; }
.visual-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%); animation: rotateSlow 30s linear infinite; z-index: 0; pointer-events: none; }
.visual-card > * { position: relative; z-index: 1; }

/* Icon grid block */
.icon-grid-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 2; }
.icon-grid-item { text-align: center; padding: 32px 20px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.4s var(--ease); position: relative; z-index: 2; }
.icon-grid-item:hover { border-color: rgba(0, 242, 255, 0.3); transform: translateY(-6px); box-shadow: 0 8px 32px rgba(0, 242, 255, 0.1); }
.icon-grid-item .icon-wrapper { width: 64px; height: 64px; margin: 0 auto 16px; background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(112, 0, 255, 0.1)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.icon-grid-item h4 { font-size: 1rem; margin-bottom: 8px; }
.icon-grid-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Stat block with animated counter */
.stat-block { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; padding: 48px 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 900; font-family: var(--font-h); background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat-text { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }

/* Process block with connecting lines */
.process-block { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.process-block::before { content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary)); background-size: 200% 100%; animation: gradientShift 5s linear infinite; z-index: 0; }
.process-item { text-align: center; position: relative; z-index: 1; }
.process-item-number { width: 48px; height: 48px; margin: 0 auto 16px; background: var(--bg); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-h); color: var(--primary); font-size: 1.1rem; }
.process-item h4 { font-size: 1rem; margin-bottom: 8px; }
.process-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* Comparison block */
.comparison-block { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.comparison-card.good { border-color: rgba(52, 168, 83, 0.3); }
.comparison-card.bad { border-color: rgba(234, 67, 53, 0.3); }
.comparison-card h4 { font-size: 1.1rem; margin-bottom: 16px; }
.comparison-card.good h4 { color: #34a853; }
.comparison-card.bad h4 { color: #ea4335; }

@media (max-width: 768px) {
    .split-block { grid-template-columns: 1fr; gap: 32px; }
    .split-block.reverse { direction: ltr; }
    .split-visual { min-height: 200px; }
    .icon-grid-block { grid-template-columns: 1fr; }
    .process-block { grid-template-columns: 1fr 1fr; }
    .process-block::before { display: none; }
    .stat-block { gap: 24px; }
    .comparison-block { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .process-block { grid-template-columns: 1fr; }
}

/* ===== 3D VISUALS & PREMIUM ANIMATIONS ===== */

/* 3D Card tilt effect */
.card-3d { perspective: 1000px; transform-style: preserve-3d; transition: transform 0.6s var(--ease); }
.card-3d:hover { transform: rotateY(-5deg) rotateX(5deg) translateZ(20px); }

/* 3D floating element */
.float-3d { animation: float3d 6s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    25% { transform: translateY(-15px) rotateX(5deg) rotateY(5deg); }
    50% { transform: translateY(-5px) rotateX(-3deg) rotateY(-3deg); }
    75% { transform: translateY(-20px) rotateX(3deg) rotateY(5deg); }
}

/* 3D rotate on hover */
.rotate-3d:hover { transform: perspective(800px) rotateY(15deg) rotateX(-5deg); transition: transform 0.6s var(--ease); }

/* Neon glow border */
.neon-border { position: relative; border: 1px solid transparent; background-clip: padding-box; }
.neon-border::before { content: ''; position: absolute; inset: -2px; border-radius: inherit; background: var(--grad1); z-index: -1; opacity: 0.5; filter: blur(8px); transition: opacity 0.4s; }
.neon-border:hover::before { opacity: 1; }

/* Animated gradient border */
.gradient-border { position: relative; border: none; background: var(--bg2); border-radius: var(--radius-lg); }
.gradient-border::before { content: ''; position: absolute; inset: -2px; border-radius: calc(var(--radius-lg) + 2px); background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary)); background-size: 300% 300%; animation: gradientBorder 4s ease infinite; z-index: -1; }
@keyframes gradientBorder { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Particle background */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--primary); border-radius: 50%; opacity: 0.3; animation: particleFloat 10s linear infinite; }
.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; animation-duration: 8s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; animation-duration: 15s; }
.particle:nth-child(4) { left: 40%; animation-delay: -1s; animation-duration: 10s; }
.particle:nth-child(5) { left: 50%; animation-delay: -3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: -5s; animation-duration: 9s; }
.particle:nth-child(7) { left: 70%; animation-delay: -2s; animation-duration: 11s; }
.particle:nth-child(8) { left: 80%; animation-delay: -4s; animation-duration: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: -1s; animation-duration: 7s; }
.particle:nth-child(10) { left: 15%; animation-delay: -3s; animation-duration: 16s; }
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Animated grid background */
.animated-grid { position: relative; background-image: linear-gradient(rgba(0,242,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,242,255,0.03) 1px, transparent 1px); background-size: 60px 60px; animation: gridMove 20s linear infinite; }
.animated-grid > .container { position: relative; z-index: 2; }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }

/* Animated dots */
.animated-dots { position: relative; background-image: radial-gradient(circle, rgba(0,242,255,0.08) 1px, transparent 1px); background-size: 40px 40px; animation: dotsMove 15s linear infinite; }
.animated-dots > .container { position: relative; z-index: 2; }
@keyframes dotsMove { 0% { background-position: 0 0; } 100% { background-position: 40px 40px; } }

/* Pulse ring animation */
.pulse-ring { position: relative; }
.pulse-ring::before { content: ''; position: absolute; inset: -10px; border: 2px solid var(--primary); border-radius: 50%; animation: pulseRing 2s ease-out infinite; opacity: 0; }
@keyframes pulseRing { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }

/* Typing animation */
.typing-text { overflow: hidden; border-right: 2px solid var(--primary); white-space: nowrap; animation: typing 3s steps(30) forwards, blink 0.8s step-end infinite; width: 0; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* Counter animation */
.counter-animated { display: inline-block; }

/* Horizontal scroll cards */
.scroll-cards { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.scroll-cards::-webkit-scrollbar { height: 4px; }
.scroll-cards::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.scroll-cards::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.scroll-card { min-width: 300px; scroll-snap-align: start; }

/* Stagger fade in */
.stagger-fade > * { opacity: 0; transform: translateY(30px); transition: all 0.6s var(--ease); }
.stagger-fade.visible > * { opacity: 1; transform: translateY(0); }
.stagger-fade.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-fade.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-fade.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-fade.visible > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-fade.visible > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-fade.visible > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-fade.visible > *:nth-child(7) { transition-delay: 0.4s; }
.stagger-fade.visible > *:nth-child(8) { transition-delay: 0.45s; }
.stagger-fade.visible > *:nth-child(9) { transition-delay: 0.5s; }
.stagger-fade.visible > *:nth-child(10) { transition-delay: 0.55s; }
.stagger-fade.visible > *:nth-child(11) { transition-delay: 0.6s; }
.stagger-fade.visible > *:nth-child(12) { transition-delay: 0.65s; }

/* Trust badge */
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(52, 168, 83, 0.1); border: 1px solid rgba(52, 168, 83, 0.3); border-radius: 50px; font-size: 0.8rem; color: #34a853; font-weight: 600; }
.trust-badge i { font-size: 0.9rem; }

/* Service badge */
.service-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(0, 242, 255, 0.06); border: 1px solid rgba(0, 242, 255, 0.15); border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: var(--primary); text-transform: uppercase; }

/* Glow line divider */
.glow-line { height: 2px; background: var(--grad1); border-radius: 1px; box-shadow: 0 0 10px rgba(0, 242, 255, 0.3); margin: 48px 0; }

/* Animated underline */
.animated-underline { position: relative; display: inline-block; }
.animated-underline::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 3px; background: var(--grad1); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.animated-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* Premium blockquote */
.premium-quote { position: relative; padding: 32px 40px; background: linear-gradient(135deg, rgba(0, 242, 255, 0.03), rgba(112, 0, 255, 0.03)); border-left: 3px solid var(--primary); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin: 32px 0; }
.premium-quote::before { content: '\201C'; position: absolute; top: -10px; left: 16px; font-size: 4rem; color: var(--primary); opacity: 0.2; font-family: Georgia, serif; line-height: 1; }
.premium-quote p { font-size: 1.1rem; font-style: italic; color: var(--muted); line-height: 1.7; margin: 0; }
.premium-quote cite { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--text); font-style: normal; font-weight: 600; }

/* Feature row */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 64px 0; position: relative; z-index: 2; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual { position: relative; min-height: 350px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.feature-content h2 { font-size: 2rem; margin-bottom: 16px; }
.feature-content p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

/* Pricing comparison */
.pricing-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pricing-compare-card { padding: 32px; border-radius: var(--radius-lg); }
.pricing-compare-card.without { background: rgba(234, 67, 53, 0.05); border: 1px solid rgba(234, 67, 53, 0.2); }
.pricing-compare-card.with { background: rgba(52, 168, 83, 0.05); border: 1px solid rgba(52, 168, 83, 0.2); }
.pricing-compare-card h4 { margin-bottom: 16px; }
.pricing-compare-card.without h4 { color: #ea4335; }
.pricing-compare-card.with h4 { color: #34a853; }
.pricing-compare-card ul { list-style: none; }
.pricing-compare-card li { padding: 8px 0; font-size: 0.9rem; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.pricing-compare-card.without li i { color: #ea4335; }
.pricing-compare-card.with li i { color: #34a853; }

@media (max-width: 768px) {
    .feature-row { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse { direction: ltr; }
    .feature-visual { min-height: 200px; }
    .pricing-compare { grid-template-columns: 1fr; }
    .scroll-cards { padding-left: 16px; }
}
