:root {
    /* Broshield.us Brand Colors */
    --primary-orange: #F27405;
    /* Main Action Color */
    --primary-orange-hover: #D96704;
    --dark-teal: #0B2D39;
    /* Section Backgrounds */
    --dark-teal-light: #124050;

    /* Gradients (Updated to match brand) */
    --primary-gradient: linear-gradient(135deg, #F27405 0%, #FF9F43 100%);
    --secondary-gradient: linear-gradient(135deg, #0B2D39 0%, #164E63 100%);

    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;

    /* Text Colors */
    --text-main: #1A1A1A;
    /* Darker Black */
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-on-dark: #FFFFFF;

    /* Accents */
    --indigo: #F27405;
    /* Re-mapped for compatibility */
    --cyan: #0B2D39;
    /* Re-mapped for compatibility */
    --success: #10B981;
    --danger: #EF4444;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 40px -10px rgba(11, 45, 57, 0.1);
    --shadow-glow: 0 0 20px rgba(242, 116, 5, 0.3);

    /* Animation Speeds */
    --spin-slow: 20s;
    --spin-med: 10s;
    --spin-fast: 3s;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Status Bar */
.status-bar {
    background: var(--text-main);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 20;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--success);
    animation: blink 2s infinite;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.logo svg {
    width: 32px;
    height: 32px;
    fill: url(#logoGradient);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

/* Hero Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.05));
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(139, 92, 246, 0.1));
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-content .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Hero Illustration Container */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Cyber Guard Animation */
.cyber-guard-svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
    overflow: visible;
}

/* Animation Classes applied to SVG elements */
.ring-outer {
    animation: spin-right 20s linear infinite;
    transform-origin: center;
}

.ring-middle {
    animation: spin-left 15s linear infinite;
    transform-origin: center;
}

.ring-inner {
    animation: spin-right 8s linear infinite;
    transform-origin: center;
}

.core-pulse {
    animation: pulse-glow 3s ease-in-out infinite;
    transform-origin: center;
}

.scan-beam {
    animation: scan-rotate 4s linear infinite;
    transform-origin: center;
}

.particle-float {
    animation: float-up 5s linear infinite;
}

.shield-icon {
    animation: shield-float 4s ease-in-out infinite;
}

/* Form Card - Glassmorphism */
.glass-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Feature Grid */
.features-section {
    padding: 5rem 0;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

/* Gradient border effect on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Animation Keyframes */
@keyframes spin-right {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-left {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px var(--cyan));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--cyan));
    }
}

@keyframes scan-rotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0.5;
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
    }
}

@keyframes shield-float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Footer */
footer {
    background: #0F172A;
    color: white;
    padding: 4rem 0;
}

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

.footer-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--cyan);
}



/* Responsiveness */
@media (max-width: 900px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        height: 350px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }


}

/* Detailed Form Restored Styles */
.form-section {
    background: #F1F5F9;
    padding: 6rem 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    cursor: pointer;
}

.checkbox-item input {
    margin-top: 5px;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.compliance-box {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.compliance-box .checkbox-item {
    margin-bottom: 0.5rem;
    color: #0369A1;
}

@media (max-width: 600px) {
    .input-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Restored FAQ Styles */
.faq-grid-v3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-v3 {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question-v3 {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: var(--text-main);
}

.faq-question-v3:hover {
    color: var(--indigo);
}

.faq-answer-v3 {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item-v3.active .faq-answer-v3 {
    padding-bottom: 1.5rem;
    max-height: 300px;
    /* ample space */
}

.faq-item-v3.active {
    box-shadow: var(--shadow-soft);
    border-color: var(--indigo);
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item-v3.active .faq-icon {
    transform: rotate(180deg);
    color: var(--indigo);
}

/* Hidden Field */
#antivirusNameGroup {
    display: none;
    /* hidden by default */
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Enhanced Glass Effect */
.glass-form {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    /* Inner shine */
}

/* Floating Platform Icons Animation */
.platform-icon {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: iconFloat 6s ease-in-out infinite;
}

.platform-icon:nth-child(1) {
    animation-delay: 0s;
}

.platform-icon:nth-child(2) {
    animation-delay: 2s;
}

.platform-icon:nth-child(3) {
    animation-delay: 4s;
}

@keyframes iconFloat {

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

    50% {
        transform: translateY(-15px);
    }
}

/* =========================================
   New Hero Animation: Cyber Sphere
   ========================================= */

.sphere-container {
    width: 300px;
    height: 300px;
    perspective: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: sphereRotate 30s linear infinite;
}

.sphere-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.1);
}

.sphere-ring:nth-child(1) {
    transform: rotateY(0deg);
    border-width: 2px;
    border-color: rgba(6, 182, 212, 0.6);
}

.sphere-ring:nth-child(2) {
    transform: rotateY(60deg);
}

.sphere-ring:nth-child(3) {
    transform: rotateY(120deg);
}

.sphere-ring:nth-child(4) {
    transform: rotateX(90deg);
    border-style: dashed;
}

/* Satellites */
.satellite {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyan);
    transform: translate(-50%, -50%);
}

.sphere-ring:nth-child(2) .satellite {
    left: 100%;
    background: var(--indigo);
    box-shadow: 0 0 15px var(--indigo);
}

.sphere-ring:nth-child(4) .satellite {
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
}

/* Glowing Core */
.sphere-core {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #fff, var(--cyan));
    border-radius: 50%;
    box-shadow: 0 0 50px var(--cyan), 0 0 80px var(--indigo);
    animation: corePulse 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes sphereRotate {
    0% {
        transform: rotateX(15deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(15deg) rotateY(360deg);
    }
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* =========================================
   Hero Animation: Diagnostic Scan & Repair
   ========================================= */

.scan-container {
    width: 360px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The PC Monitor */
.monitor {
    width: 200px;
    height: 150px;
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid #475569;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.monitor::after {
    /* Stand */
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(to bottom, #334155, #1e293b);
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.monitor::before {
    /* Base */
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: #334155;
    border-radius: 4px;
}

/* Screen Content */
.screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 4px solid #1e293b;
}

/* The Scanning Beam */
.scan-line {
    width: 100%;
    height: 2px;
    background: var(--danger);
    box-shadow: 0 0 15px var(--danger);
    position: absolute;
    top: 0;
    animation: scanning 4s ease-in-out infinite;
    z-index: 10;
}

/* Status Text on Screen */
.status-text {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--danger);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: statusColor 8s infinite;
}

/* Floating Issue Cards */
.issue-card {
    position: absolute;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    z-index: 20;
}

/* Issue 1: Virus */
.issue-1 {
    top: 20px;
    right: -40px;
    animation: popIssue1 8s infinite;
}

/* Issue 2: Malware */
.issue-2 {
    bottom: 40px;
    left: -40px;
    animation: popIssue2 8s infinite;
}

/* Issue 3: Speed */
.issue-3 {
    top: -30px;
    left: 20px;
    animation: popIssue3 8s infinite;
}

/* Icons */
.icon-danger {
    width: 16px;
    height: 16px;
    fill: var(--danger);
}

.icon-success {
    width: 16px;
    height: 16px;
    fill: var(--success);
    display: none;
}

/* Keyframes for the Sequence */
/* 0-4s: Scanning (Red), 4-8s: Fixing (Green) */

@keyframes scanning {
    0% {
        top: 0;
        background: var(--danger);
        box-shadow: 0 0 15px var(--danger);
    }

    50% {
        top: 100%;
    }

    50.1% {
        background: var(--success);
        box-shadow: 0 0 15px var(--success);
    }

    100% {
        top: 0;
        background: var(--success);
        box-shadow: 0 0 15px var(--success);
    }
}

@keyframes statusColor {

    0%,
    45% {
        color: var(--danger);
        content: "SCANNING...";
    }

    50%,
    100% {
        color: var(--success);
        content: "SECURE";
    }
}

@keyframes popIssue1 {

    0%,
    10% {
        opacity: 0;
        transform: translateX(20px);
    }

    15%,
    45% {
        opacity: 1;
        transform: translateX(0);
    }

    /* Shown Red */
    50% {
        opacity: 1;
        transform: translateX(0);
    }

    /* Transition point */
    55%,
    90% {
        opacity: 1;
        transform: translateX(0);
    }

    /* Shown Green */
    95%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes popIssue2 {

    0%,
    20% {
        opacity: 0;
        transform: translateX(-20px);
    }

    25%,
    45% {
        opacity: 1;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(0);
    }

    55%,
    90% {
        opacity: 1;
        transform: translateX(0);
    }

    95%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes popIssue3 {

    0%,
    30% {
        opacity: 0;
        transform: translateY(20px);
    }

    35%,
    45% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    55%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }

    95%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Text & Icon Color Changes */
.issue-card span {
    transition: color 0.5s;
}

.scan-container {
    animation: globalState 8s infinite;
}

@keyframes globalState {

    0%,
    45% {
        --state-color: var(--danger);
    }

    50%,
    100% {
        --state-color: var(--success);
    }
}

/* Professional Polish: Trusted Strip */
.trusted-strip {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E2E8F0;
    margin-top: -2rem;
    /* Pull up to overlap/connect with hero space if needed, or just sit below */
    position: relative;
    z-index: 5;
}

.trusted-label {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: block;
    width: fit-content;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.trusted-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trusted-logos svg {
    width: 32px;
    height: 32px;
}

/* Refined Typography */
h1 {
    letter-spacing: -1px;
}

.lead {
    font-weight: 400;
    line-height: 1.8;
}

/* =========================================
   Ultra-Realistic PC Workstation CSS
   ========================================= */

.workstation {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Desk Surface */
.desk {
    position: absolute;
    bottom: 50px;
    width: 500px;
    height: 12px;
    background: linear-gradient(to bottom, #E2E8F0, #94A3B8);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Realistic Monitor */
.monitor-realistic {
    width: 320px;
    height: 200px;
    background: #0F172A;
    border-radius: 12px;
    padding: 12px;
    /* Bezel */
    position: relative;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    z-index: 5;
    transform: perspective(1000px) rotateX(1deg);
    border: 1px solid #334155;
}

/* Stand */
.monitor-realistic::after {
    /* Neck */
    content: '';
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 55px;
    background: linear-gradient(to right, #1E293B, #334155, #1E293B);
    z-index: -1;
}

.monitor-realistic::before {
    /* Base */
    content: '';
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 12px;
    background: #0F172A;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #334155;
}

/* Webcam */
.webcam {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    border: 1px solid #334155;
}

.webcam::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 1px;
    left: 1px;
}

/* Power Button LED */
.power-led {
    position: absolute;
    bottom: 4px;
    right: 20px;
    width: 4px;
    height: 4px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 5px #10B981;
    animation: blink 4s infinite;
}

/* Monitor Brand Logo Area (Subtle) */
.brand-label {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

/* Screen reflection */
.monitor-realistic .screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 15;
}

/* Keyboard - More detailed */
.keyboard {
    width: 220px;
    height: 15px;
    background: #CBD5E1;
    border-radius: 4px;
    position: absolute;
    bottom: 70px;
    transform: perspective(600px) rotateX(45deg);
    box-shadow:
        0 6px 0 #94A3B8,
        0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.keyboard::before {
    /* Key pattern */
    content: '';
    width: 90%;
    height: 60%;
    background-image: linear-gradient(90deg, #94A3B8 2px, transparent 2px);
    background-size: 15px 100%;
    opacity: 0.5;
}

/* Mouse - More detailed */
.mouse {
    width: 22px;
    height: 34px;
    background: linear-gradient(to bottom, #94A3B8, #64748B);
    border-radius: 12px 12px 10px 10px;
    position: absolute;
    bottom: 70px;
    right: 60px;
    transform: perspective(600px) rotateX(25deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mouse::after {
    /* scroll wheel */
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #334155;
    border-radius: 2px;
}

/* Re-adjust Scan Animation to fit smaller realistic screen */
.monitor-realistic .screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    border: 1px solid #1E293B;
}

.monitor-realistic .scan-line {
    width: 100%;
    height: 2px;
    background: var(--danger);
    box-shadow: 0 0 15px var(--danger);
    position: absolute;
    top: 0;
    animation: scanning-realistic 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes scanning-realistic {
    0% {
        top: 0;
        background: var(--danger);
        box-shadow: 0 0 15px var(--danger);
    }

    50% {
        top: 100%;
    }

    50.1% {
        background: var(--success);
        box-shadow: 0 0 15px var(--success);
    }

    100% {
        top: 0;
        background: var(--success);
        box-shadow: 0 0 15px var(--success);
    }
}

/* Popups are now relative to the whole workstation */
.issue-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 30;
}

/* =========================================
   Redesign Phase 1: New Sections (Core, How, Diff, Trust)
   ========================================= */

/* Core Issues Section */
.section-core-issues {
    background: white;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-lead {
    font-size: 1.2rem;
    color: #64748B;
    margin-top: 1rem;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.issue-card-content {
    background: #F1F5F9;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: transform 0.3s;
}

.issue-card-content:hover {
    transform: translateY(-5px);
}

.issue-card-content h3 {
    color: #0F172A;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.issue-card-content .icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* How It Works (Timeline) Section */
.section-how-it-works {
    padding: 5rem 0;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #4F46E5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    color: #0F172A;
}

/* Service vs Software Differentiation */
.section-differentiation {
    background: white;
    padding: 5rem 0;
}

.diff-box {
    display: flex;
    background: #F8FAFC;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    flex-wrap: wrap;
}

.diff-col {
    flex: 1;
    padding: 3rem;
    min-width: 300px;
}

.diff-col.software {
    background: #E2E8F0;
    color: #475569;
}

.diff-col.human {
    background: #0F172A;
    color: white;
}

.diff-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.diff-divider {
    width: 50px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #475569;
    font-style: italic;
    z-index: 5;
    margin: -25px;
    align-self: center;
    border-radius: 50%;
    height: 50px;
    border: 2px solid #E2E8F0;
    display: none;
    /* Hidden for now on mobile, flex logic tricky without more complex CSS */
}

.diff-disclaimer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748B;
    background: #FEF3C7;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #FCD34D;
}

/* Trust & Compliance Badge Grid */
.section-trust-compliance {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid #E2E8F0;
}

.compliance-badge-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.comp-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.comp-item h4 {
    color: #0F172A;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.comp-item h4::before {
    content: '✓';
    color: #10B981;
    font-weight: 900;
}

/* =========================================
   Trust Badges Section
   ========================================= */
.trust-badges-section {
    background: #FFFFFF;
    padding: 2rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-badge-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F0F9FF;
    color: #0284C7;
    border: 1px solid #BAE6FD;
}

.trust-badge-item h5 {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0px;
    font-weight: 700;
}

.trust-badge-item span {
    font-size: 0.75rem;
    color: #64748B;
}

@media (max-width: 600px) {
    .trust-badge-grid {
        gap: 1.5rem;
    }

    .trust-badge-item {
        max-width: 120px;
    }
}

/* =========================================
   Common Issues List (Detailed)
   ========================================= */
.section-common-issues {
    background: #F8FAFC;
    padding: 5rem 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.common-issues-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.common-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.issue-list-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s;
}

.issue-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

.issue-list-icon {
    width: 40px;
    height: 40px;
    background: #F1F5F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #475569;
    flex-shrink: 0;
}

.issue-list-content h4 {
    margin: 0 0 0.25rem 0;
    color: #0F172A;
    font-size: 1rem;
}

.issue-list-content p {
    font-size: 0.85rem;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   Redesign: Common Issues (Premium Dark Mode)
   ========================================= */
.section-common-issues {
    background: #0F172A;
    /* Slate 900 */
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background Glow Effect */
.section-common-issues::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.section-common-issues .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-common-issues .section-header .section-lead {
    color: #94A3B8;
    /* Slate 400 */
    font-size: 1.1rem;
}

.common-issues-wrapper {
    position: relative;
    z-index: 1;
    /* Above glow */
    max-width: 1000px;
}

.common-issues-grid {
    gap: 2rem;
}

.issue-list-item {
    background: #1E293B;
    /* Slate 800 */
    border: 1px solid #334155;
    padding: 2rem;
    border-radius: 16px;
    align-items: center;
    /* Center vertically if needed */
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.issue-list-item:hover {
    transform: translateY(-5px);
    background: #253346;
    /* Slightly lighter */
    border-color: #06B6D4;
    /* Cyan border on hover */
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.3);
}

.issue-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4F46E5, #06B6D4);
    border-radius: 12px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.issue-list-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.issue-list-content p {
    color: #94A3B8;
    /* Slate 400 */
    font-size: 0.95rem;
}

/* =========================================
   Redesign Phase 2: Modern Icons & Glow
   ========================================= */
.section-common-issues {
    background: #0B1120;
    /* Darker, richer navy */
}

/* Card Improvements */
.issue-list-item {
    background: rgba(30, 41, 59, 0.4);
    /* More transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    flex-direction: column;
    /* Stack for modern look */
    align-items: flex-start;
    gap: 1.5rem;
}

.issue-list-item:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(6, 182, 212, 0.5);
    /* Cyan border glow */
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
    /* Ambient glow */
}

/* Icon Modernization */
.issue-list-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #38BDF8;
    /* Sky blue icon */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.issue-list-item:hover .issue-list-icon {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.issue-list-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.issue-list-content p {
    color: #94A3B8;
    line-height: 1.7;
    font-size: 1rem;
}

/* =========================================
   NEW SERVICE SECTIONS STYLING
   ========================================= */

/* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    border-color: #4F46E5;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.service-card h3 {
    color: #0F172A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-points li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.service-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Process Steps Styling */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: linear-gradient(to bottom, #E2E8F0, transparent);
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    z-index: 2;
    position: relative;
}

.process-content {
    flex: 1;
    padding-right: 1rem;
}

.process-content h3 {
    color: #0F172A;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.process-content p {
    color: #64748B;
    line-height: 1.7;
}

/* Brand Disclaimer Box */
.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #F8FAFC;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #E2E8F0;
}

.disclaimer-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    background: #FEF3C7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D97706;
}

.disclaimer-box h2 {
    color: #0F172A;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.disclaimer-lead {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.disclaimer-alert {
    background: #FEF3C7;
    border: 2px solid #FCD34D;
    border-radius: 12px;
    padding: 1.5rem;
    color: #78350F;
    font-size: 1rem;
    line-height: 1.6;
}

.disclaimer-alert strong {
    color: #92400E;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.12);
    border-color: #CBD5E1;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    color: #0F172A;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.why-card p {
    color: #64748B;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design for Service Sections */
@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        padding: 1rem;
    }

    .process-step {
        gap: 1rem;
    }

    .process-step:not(:last-child)::after {
        left: 19px;
    }

    .disclaimer-box {
        padding: 2rem 1.5rem;
    }

    .disclaimer-box h2 {
        font-size: 1.5rem;
    }

    .disclaimer-lead {
        font-size: 1rem;
    }
}

/* Enhanced Animations */
@keyframes iconFloat {

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

    50% {
        transform: translateY(-10px);
    }
}

/* =========================================

/* =========================================
   FLOATING CALL BUTTON - PROFESSIONAL DESIGN
   ========================================= */

.floating-call-btn {
    position: fixed;
    /* Left align */
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-call-btn a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

.floating-call-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5), 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #5B51E8 0%, #8B45F0 100%);
}

.floating-call-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
    flex-shrink: 0;
    animation: ringBell 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.floating-call-btn .call-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-call-btn .call-tooltip {
    display: none;
}



/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes floatBounce {

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

    50% {
        transform: translateY(-8px);
    }
}

@keyframes ringBell {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-12deg);
    }

    20%,
    40% {
        transform: rotate(12deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-call-btn {
        left: 20px !important;
        transform: none !important;
        bottom: 20px !important;
        right: auto !important;
        animation: none;
    }

    .floating-call-btn a {
        padding: 16px 28px;
        gap: 12px;
        border-radius: 50px;
    }

    .floating-call-btn svg {
        width: 22px;
        height: 22px;
    }

    .floating-call-btn .call-text {
        font-size: 1rem;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .floating-call-btn {
        left: 20px;
    }

    .floating-call-btn a {
        padding: 16px 26px;
    }
}

/* =========================================
   NAVIGATION MENU
   ========================================= */

/* Header Updates for Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 2rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #0F172A;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu>li>a:hover {
    color: #4F46E5;
}

.nav-menu>li>a.active {
    color: #4F46E5;
    position: relative;
}

.nav-menu>li>a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Dropdown Arrow */
.nav-menu .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-menu li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #F8FAFC;
    color: #4F46E5;
    padding-left: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #0F172A;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    z-index: 1000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu>ul>li {
    border-bottom: 1px solid #E2E8F0;
}

.mobile-nav-menu>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: #0F172A;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-nav-menu .dropdown-toggle {
    background: none;
    border: none;
    padding: 1rem 0;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0F172A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-menu .mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-menu .mobile-dropdown.active {
    max-height: 500px;
}

.mobile-nav-menu .mobile-dropdown a {
    display: block;
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: #64748B;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.mobile-nav-menu .mobile-dropdown a:hover {
    color: #4F46E5;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu>li>a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 60px;
    }

    header .container {
        padding: 0.5rem 1rem;
        height: 60px;
        gap: 0.5rem;
        /* Reduced gap */
    }

    .logo {
        font-size: 1.1rem;
        /* Slightly smaller */
        gap: 0.3rem;
    }

    .logo svg {
        width: 22px;
        height: 22px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 0.3rem;
        /* Reduce padding to save space */
    }

    .mobile-menu-overlay,
    .mobile-nav-menu {
        display: block;
    }

    header .btn-primary {
        padding: 0.5rem 0.8rem;
        /* Compact padding */
        font-size: 0.85rem;
        /* Compact font */
        white-space: nowrap;
        /* PREVENT WRAPPING */
        gap: 6px !important;
    }

    header .btn-primary svg {
        width: 14px;
        height: 14px;
    }
}

/* =========================================
   BROSHIELD REDESIGN COMPONENTS
   ========================================= */

/* Stats Section */
.stats-section {
    background-color: var(--dark-teal);
    color: white;
    padding: 4rem 0;
    margin-top: -2rem;
    /* Overlap hero slightly if needed */
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* New Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-top: 5px solid var(--dark-teal);
    background: linear-gradient(to bottom, #ffffff, #f0f9ff);
    transform: scale(1.02);
}

.pricing-header h3 {
    color: var(--dark-teal);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: 800;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
}

.btn-pricing {
    width: 100%;
    margin-top: auto;
    padding: 1rem;
    background: var(--dark-teal);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-pricing:hover {
    background: var(--primary-orange);
}

/* Feature Cards Update */
.feature-card-v2 {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card-v2:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(242, 116, 5, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-teal);
    color: white;
    padding: 4rem 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 6px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    color: var(--dark-teal);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-orange);
    font-weight: 800;
    margin: 1.5rem 0;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.features-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.features-list li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    margin-top: auto;
    padding: 1rem;
    background: var(--dark-teal);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(242, 116, 5, 0.4);
}

/* Hero Visual Wrapper */
.hero-visual-wrapper {
    position: relative;
    display: inline-block;
    /* Wraps tightly around the image */
    border-radius: 20px;
    overflow: hidden;
    /* Contains the scan beam */
}

/* Hero Shield Animation (Pulse) */
.hero-shield-anim {
    filter: drop-shadow(0 0 30px rgba(79, 70, 229, 0.4));
    /* Stronger initial glow */
    animation: shieldPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(79, 70, 229, 0.4));
    }

    50% {
        transform: scale(1.02);
        /* Subtle breathing effect */
        filter: drop-shadow(0 0 50px rgba(79, 70, 229, 0.6));
    }
}

/* Scanning Beam Animation */
.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(16, 185, 129, 0.1) 40%,
            rgba(16, 185, 129, 0.5) 50%,
            rgba(16, 185, 129, 0.1) 60%,
            transparent 100%);
    z-index: 2;
    animation: scanBeam 3s linear infinite;
    pointer-events: none;
    /* Let clicks pass through */
    opacity: 0.8;
}

@keyframes scanBeam {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
        /* Move completely out of view */
    }
}

/* Expert Cards Styling */
.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 116, 5, 0.2);
    border-color: var(--primary-orange);
}

.experts-grid {
    transition: all 0.3s ease;
}