﻿/* ==========================================
   SOCFortress-Inspired Dark Theme
   Colors: #0b0912 bg, #f85d3b orange, #884fff purple, #66fabc green
   ========================================== */

/* Self-hosted Inter font (latin subset, variable weights 400-700) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Inter-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Inter-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Inter-latin.woff2') format('woff2');
}

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

:root {
    --primary: #f85d3b;
    --primary-hover: #ff7a5c;
    --secondary: #884fff;
    --accent: #f85d3b;
    --accent-hover: #ff7a5c;
    --success: #66fabc;
    --bg-dark: #0b0912;
    --bg-darker: #06050a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glow-orange: rgba(248, 93, 59, 0.4);
    --glow-purple: rgba(136, 79, 255, 0.4);
    --grid-color: rgba(255, 255, 255, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grid Background Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Cybersecurity scan line effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0.4;
    z-index: 9999;
    animation: scanLine 8s linear infinite;
    pointer-events: none;
}

@keyframes scanLine {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/* Navbar */
.navbar {
    background: rgba(11, 9, 18, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 9, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-icon {
    filter: drop-shadow(0 0 8px rgba(248, 93, 59, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 14px rgba(248, 93, 59, 0.6)) drop-shadow(0 0 20px rgba(136, 79, 255, 0.3));
}

.logo-text {
    background: linear-gradient(135deg, #f85d3b, #884fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hire-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hire-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--glow-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-btn.active {
    color: var(--primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 9, 18, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(136, 79, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(248, 93, 59, 0.06) 0%, transparent 50%),
                var(--bg-dark);
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-orange) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobFloat1 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat2 25s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(60px, -40px); }
    66% { transform: translate(-30px, 30px); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-50px, 40px); }
    66% { transform: translate(40px, -20px); }
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.center-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 250, 188, 0.08);
    border: 1px solid rgba(102, 250, 188, 0.25);
    color: var(--success);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 0 20px rgba(102, 250, 188, 0.1);
}

.hero-badge svg,
.hero-badge i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-name {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.3px;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.stat {
    text-align: center;
    padding: 24px 36px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

        .stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

.stat:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(248, 93, 59, 0.15), 0 0 40px rgba(248, 93, 59, 0.05);
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-family: 'Courier New', monospace;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 15px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border-hover);
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: -0.2px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.hero-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(248, 93, 59, 0.2);
}

/* Pain Points Section */
.pain-section {
    background: var(--bg-darker);
    position: relative;
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08);
}

.pain-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: var(--bg-dark);
    position: relative;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(248, 93, 59, 0.08);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(248, 93, 59, 0.12);
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Courier New', monospace;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-includes span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-includes svg,
.service-includes i {
    color: var(--success);
    font-size: 12px;
}

/* Process Section */
.process-section {
    background: var(--bg-darker);
    position: relative;
}

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

.process-card {
    text-align: center;
    padding: 32px 24px;
}

.process-step {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 93, 59, 0.08);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 24px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.process-card:hover .process-step {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 30px var(--glow-orange);
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Results Section */
.results-section {
    background: var(--bg-dark);
    position: relative;
}

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

.result-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.result-card:hover {
    border-color: var(--success);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 250, 188, 0.08);
}

.result-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.result-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Credentials Section */
.credentials-section {
    background: var(--bg-darker);
    position: relative;
}

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

.credential-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.credential-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.credential-category h3 svg,
.credential-category h3 i {
    font-size: 18px;
}

.credential-category ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential-category li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.credential-category li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(248, 93, 59, 0.08);
    border: 1px solid rgba(248, 93, 59, 0.25);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Courier New', monospace;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

/* About Section */
.about-section {
    background: var(--bg-dark);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-wrapper.no-avatar {
    grid-template-columns: 1fr;
    text-align: center;
}

.about-wrapper.no-avatar .about-content .section-badge,
.about-wrapper.no-avatar .about-content .section-title {
    text-align: center;
}

.about-wrapper.no-avatar .about-stats {
    justify-content: center;
}

.about-wrapper.no-avatar .btn-primary {
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-content .section-badge,
.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

.about-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
}

/* Contact Section */
.contact-section {
    background: var(--bg-darker);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg,
.contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 93, 59, 0.08);
    border: 1px solid rgba(248, 93, 59, 0.2);
    color: var(--primary);
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover svg,
.contact-item:hover i {
    background: rgba(248, 93, 59, 0.15);
    transform: scale(1.05);
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: 'Courier New', monospace;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 32px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-row-name {
    grid-template-columns: 2fr 1fr;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-row-name .form-group:first-child input {
    font-size: 16px;
    padding: 14px 16px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(248, 93, 59, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-orange);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 60px 24px 24px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-4b { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection */
::selection {
    background: rgba(248, 93, 59, 0.3);
    color: #fff;
}

/* Form button states */
.submit-btn.btn-success {
    background: #10b981;
}

.submit-btn.btn-error {
    background: #ef4444;
}

/* Contact link */
.contact-link {
    color: var(--accent);
    text-decoration: none;
}

/* Two-Step Form */
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.step-header {
    margin-bottom: 24px;
}
.step-badge {
    display: inline-block;
    background: rgba(136, 79, 255, 0.1);
    border: 1px solid rgba(136, 79, 255, 0.25);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.3s;
    font-family: 'Inter', sans-serif;
}
.btn-back:hover {
    color: var(--primary);
}
.btn-next {
    margin-top: 8px;
}

/* Phone input with country code */
.phone-input {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}
.phone-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(248, 93, 59, 0.1);
}
.phone-input select {
    width: auto;
    min-width: 100px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-right: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%2394a3b8' viewBox='0 0 16 10'%3E%3Cpath d='M8 10L0 0h16z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    padding-right: 22px;
}
.phone-input select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}
.phone-input input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}
.phone-input input:focus {
    outline: none;
}
.phone-input input::placeholder {
    color: var(--text-muted);
}

/* Honeypot field */
.honeypot {
    position: absolute;
    left: -9999px;
}

/* Service Checklists */
.service-checklists {
    margin-bottom: 20px;
}
.checklist-group {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
    animation: fadeIn 0.3s ease;
}
.checklist-group.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.checklist-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}
.checklist-label i {
    font-size: 16px;
}
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    color: var(--text-secondary);
}
.check-item:hover {
    border-color: var(--primary);
    background: rgba(248, 93, 59, 0.05);
    color: var(--text-primary);
}
.check-item input {
    display: none;
}
.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-hover);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.check-item input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}
.check-item input:checked ~ .checkmark::after {
    opacity: 1;
}
.check-item input:checked ~ .check-item-text,
.check-item:has(input:checked) {
    color: var(--text-primary);
    border-color: rgba(248, 93, 59, 0.3);
    background: rgba(248, 93, 59, 0.08);
}

/* Other input field */
.other-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.check-item-other {
    flex-shrink: 0;
}
.other-text {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s;
}
.other-text:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.other-text:not(:disabled):focus {
    outline: none;
    border-color: var(--primary);
}
.other-text::placeholder {
    color: var(--text-muted);
}

/* Active navigation link */
.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
    background: var(--accent);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 18px; }
    .section-title { font-size: 32px; }

    .hero-container { text-align: center; }
    .hero-stats, .hero-actions, .hero-social { justify-content: center; }

    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-wrapper { grid-template-columns: 1fr; }
    .featured-stats { grid-template-columns: repeat(4, 1fr); }
    .credentials-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-wrapper { grid-template-columns: 1fr; }
    .featured-stats { grid-template-columns: repeat(4, 1fr); }

    .about-wrapper { grid-template-columns: 1fr; text-align: center; }
    .about-content .section-badge, .about-content .section-title { text-align: center; }
    .about-stats { justify-content: center; }

    .contact-wrapper { grid-template-columns: 1fr; }
}

/* Responsive - Mobile Landscape */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 9, 18, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }

    .hero { padding-top: 0; }
    .hero-name { font-size: 56px; letter-spacing: -2px; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .stat { padding: 16px 20px; }
    .stat-number { font-size: 28px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }

    .section-container { padding: 60px 16px; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 14px; }

    .pain-grid, .services-grid, .credentials-grid { grid-template-columns: 1fr; }
    .process-grid, .results-grid { grid-template-columns: 1fr; }

    .pain-card, .service-card, .credential-category { padding: 24px; }
    .service-number { font-size: 36px; top: 16px; right: 20px; }
    .service-card h3 { font-size: 18px; }

    .about-stats { gap: 24px; }
    .about-stat-number { font-size: 28px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .phone-input select { min-width: 80px; font-size: 13px; }
    .checklist-grid { grid-template-columns: 1fr; }

    .footer-content { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer-social { justify-content: center; }
}

/* Responsive - Mobile Portrait */
@media (max-width: 480px) {
    .hero-name { font-size: 48px; letter-spacing: -1.5px; }
    .hero-title { font-size: 28px; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 14px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .stat { width: 100%; }

    .section-title { font-size: 24px; }
    .section-badge { font-size: 10px; }

    .process-step { width: 48px; height: 48px; font-size: 16px; }
    .result-number { font-size: 36px; }

    .contact-item { flex-direction: column; align-items: center; text-align: center; }
    .contact-item svg { margin-bottom: 8px; }

    .hire-btn { padding: 8px 16px; font-size: 12px; }
}

/* ==========================================
   VIRAL DESIGN UPGRADES
   ========================================== */

/* Page entrance overlay */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-shield {
    width: 64px;
    height: 64px;
    animation: loaderPulse 1s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

/* Typing cursor for hero */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 0.8s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero title word animation */
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordReveal 0.5s ease forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) { animation-delay: 0.3s; }
.hero-title .word:nth-child(3) { animation-delay: 0.4s; }
.hero-title .word:nth-child(4) { animation-delay: 0.5s; }
.hero-title .word:nth-child(5) { animation-delay: 0.6s; }
.hero-title .word:nth-child(6) { animation-delay: 0.7s; }
.hero-title .word:nth-child(7) { animation-delay: 0.8s; }
.hero-title .word:nth-child(8) { animation-delay: 0.9s; }
.hero-title .word:nth-child(9) { animation-delay: 1.0s; }

@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Glowing orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.glow-orb--orange {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 93, 59, 0.15) 0%, transparent 70%);
    top: 10%;
    left: -5%;
    animation: orbDrift1 18s ease-in-out infinite;
}
.glow-orb--purple {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(136, 79, 255, 0.12) 0%, transparent 70%);
    bottom: 15%;
    right: -5%;
    animation: orbDrift2 22s ease-in-out infinite;
}
.glow-orb--green {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 250, 188, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbDrift3 15s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, -60px) scale(1.1); }
    66% { transform: translate(-40px, 40px) scale(0.95); }
}
@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 50px) scale(1.05); }
    66% { transform: translate(50px, -30px) scale(0.9); }
}
@keyframes orbDrift3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -60%) scale(1.2); }
}

/* Pulsing glow on CTA buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--success), var(--primary));
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradientSpin 4s linear infinite;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--primary);
    border-radius: 50px;
    z-index: -1;
}
@keyframes gradientSpin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card glow hover effect */
.pain-card, .service-card, .process-card, .result-card, .credential-category {
    position: relative;
}
.pain-card::before, .service-card::before, .process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(248, 93, 59, 0.1), rgba(136, 79, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.pain-card:hover::before, .service-card:hover::before, .process-card:hover::before {
    opacity: 1;
}

/* Trust badges bar */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}
.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-darker) 0%, transparent 20%, transparent 80%, var(--bg-darker) 100%);
    z-index: 1;
    pointer-events: none;
}
.trust-label {
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-family: 'Courier New', monospace;
}
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: scrollLogos 20s linear infinite;
}
.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.trust-logo:hover {
    opacity: 1;
}
.trust-logo i, .trust-logo svg {
    font-size: 20px;
}

/* Featured Project Section */
.featured-section {
    background: var(--bg-darker);
    position: relative;
}
.featured-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.featured-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--success));
}
.featured-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.featured-stat {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.featured-stat:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.featured-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}
.featured-stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-family: 'Courier New', monospace;
}
.featured-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.featured-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.featured-list i {
    color: var(--success);
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Testimonial Form */
.testimonial-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f59e0b;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
}
.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(248, 93, 59, 0.1);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}
.testimonial-info .name {
    font-weight: 600;
    font-size: 14px;
}
.testimonial-info .role {
    font-size: 12px;
    color: var(--text-muted);
}

/* Animated counter */
.stat-number[data-target] {
    transition: all 0.3s ease;
}

/* Floating CTA for mobile */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--primary);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 20px var(--glow-orange);
    animation: ctaPulse 2s ease-in-out infinite;
    text-decoration: none;
}
.floating-telegram {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    background: #0088cc;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.floating-telegram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 136, 204, 0.6);
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px var(--glow-orange); }
    50% { box-shadow: 0 4px 30px var(--glow-orange), 0 0 40px rgba(248, 93, 59, 0.3); }
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 16px;
    border-radius: 2px;
}

/* Stats row in about */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

/* Enhanced service card hover */
.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(248, 93, 59, 0.1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1s both;
}
.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
}
.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}
.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Enhanced responsive */
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .floating-cta { display: flex; }
    .trust-logos { gap: 24px; }
    .trust-logo { font-size: 12px; }
    .feedback-tab { display: none; }
    .featured-wrapper { grid-template-columns: 1fr; padding: 24px; }
    .featured-stats { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .featured-stat { padding: 16px 12px; }
    .featured-stat-number { font-size: 24px; }
}

/* Feedback Side Tab */
.feedback-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    padding: 12px 10px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 998;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: -2px 0 20px rgba(248, 93, 59, 0.3);
}
.feedback-tab i {
    writing-mode: horizontal-tb;
    font-size: 18px;
}
.feedback-tab:hover {
    padding-right: 14px;
    box-shadow: -4px 0 30px rgba(248, 93, 59, 0.5);
}

/* Feedback Panel */
.feedback-panel {
    position: fixed;
    right: -400px;
    top: 0;
    bottom: 0;
    width: 380px;
    background: var(--bg-dark);
    border-left: 1px solid var(--border);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}
.feedback-panel.open {
    right: 0;
}
.feedback-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-darker);
}
.feedback-panel-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.feedback-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}
.feedback-close:hover {
    color: var(--primary);
}
.feedback-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}
.feedback-form .form-group {
    margin-bottom: 16px;
}
.feedback-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.feedback-form input,
.feedback-form textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.feedback-form textarea {
    resize: vertical;
    min-height: 80px;
}
.feedback-form .submit-btn {
    width: 100%;
    margin-top: 8px;
}

/* Feedback Overlay */
.feedback-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.feedback-overlay.open {
    opacity: 1;
    visibility: visible;
}
