/* UnnatLeads AI - Luxury Dark Mode Agency Design System */
:root {
    --bg-dark: #07080c;
    --bg-card: rgba(18, 22, 36, 0.75);
    --bg-card-hover: rgba(28, 35, 58, 0.9);
    --bg-glass-inner: rgba(10, 14, 26, 0.85);
    
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 242, 254, 0.5);
    
    --accent-cyan: #00f2fe;
    --accent-indigo: #4facfe;
    --accent-purple: #7f00ff;
    --accent-green: #00e676;
    --accent-gold: #ffb703;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-glow: 0 0 30px rgba(0, 242, 254, 0.35);
    --shadow-purple: 0 0 30px rgba(127, 0, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Background Glowing Mesh & Grid Overlay */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 15% 15%, rgba(0, 242, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(127, 0, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.08) 0%, transparent 60%);
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Cards & Glow Borders */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.glass-inner {
    background: var(--bg-glass-inner);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Typography & Headings */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.4));
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    margin-bottom: 12px;
}

/* Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, rgba(127, 0, 255, 0.3), rgba(0, 242, 254, 0.3));
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.announcement-badge {
    background: var(--accent-cyan);
    color: #000;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.announcement-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.announcement-link:hover {
    text-decoration: underline;
}

/* Header & Navigation */
.agency-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo-text .highlight {
    color: var(--accent-cyan);
}

.badge-ai {
    font-size: 0.65rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: super;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links .operator-link {
    color: var(--accent-indigo);
    border: 1px solid rgba(79, 172, 254, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
}

.nav-links .operator-link:hover {
    background: rgba(79, 172, 254, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-indigo));
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 242, 254, 0.6);
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.7);
}

.btn-glow-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 242, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-cyan);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 120px 24px 80px 24px;
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 48px auto;
}

/* Search Box */
.hero-search-box {
    padding: 28px;
    max-width: 820px;
    margin: 0 auto 48px auto;
    text-align: left;
}

.search-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.free-tag {
    font-size: 0.75rem;
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
}

.search-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(10, 14, 26, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 8px 12px 8px 20px;
}

.search-icon {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.search-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.tag-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.tag-btn:hover {
    background: rgba(0, 242, 254, 0.2);
    border-color: var(--accent-cyan);
}

/* Social Proof Bar */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.metrics-row {
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 16px 36px;
    border-radius: 40px;
}

.m-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

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

.m-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Trust Marquee Logo Section */
.trust-marquee-section {
    padding: 36px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(5, 7, 12, 0.6);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-weight: 700;
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 3px;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Common Layout */
.section-padding {
    padding: 100px 24px;
}

.alt-bg {
    background: rgba(10, 14, 26, 0.6);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

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

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

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 36px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Demo & Scanner Container */
.demo-container {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.demo-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(5, 7, 12, 0.95);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-glass);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.dot-red, .dot-yellow, .dot-green {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.demo-title {
    margin-left: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.demo-badge {
    margin-left: auto;
    font-size: 0.75rem;
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 3px 12px;
    border-radius: 12px;
    font-weight: 700;
}

#scanner-progress-overlay {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    background: rgba(7, 8, 12, 0.95);
    backdrop-filter: blur(15px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-box {
    text-align: center;
    max-width: 450px;
    width: 100%;
    padding: 24px;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 242, 254, 0.2);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

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

.demo-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 36px;
}

.intel-heading {
    font-size: 1.15rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.intel-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.intel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.intel-lbl {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.intel-val {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.tech-tags-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tech-pill {
    background: rgba(79, 172, 254, 0.15);
    color: var(--accent-indigo);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.intent-score-box {
    margin-top: 16px;
}

.score-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.score-num {
    color: var(--accent-cyan);
    font-size: 1.1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    transition: width 0.5s ease;
}

.intent-signal-text {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Leads Cards List */
.leads-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.lead-item-card {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lead-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
}

.lead-info {
    flex: 1;
}

.lead-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.status-verified {
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
}

.lead-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lead-contact {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    font-family: 'JetBrains Mono', monospace;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.comp-card {
    padding: 40px;
}

.comp-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.comp-badge.bad {
    background: rgba(255, 95, 86, 0.15);
    color: #ff5f56;
    border: 1px solid rgba(255, 95, 86, 0.3);
}

.comp-badge.good {
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.comp-header h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-bad .comp-list li {
    color: #cbd5e1;
}

.comp-good .comp-list li {
    color: #ffffff;
}

/* Calculator Section */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 44px;
    padding: 44px;
    max-width: 1050px;
    margin: 0 auto;
}

.calc-group {
    margin-bottom: 32px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.calc-val-badge {
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-cyan);
    padding: 4px 14px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.95rem;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: 0 0 15px var(--accent-cyan);
}

.results-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 28px;
    margin-bottom: 28px;
}

.res-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.res-item.main {
    border-bottom: none;
    margin-top: 12px;
    padding-top: 20px;
}

.res-lbl {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.res-val {
    font-weight: 700;
    font-size: 1.15rem;
}

.res-val-lg {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.res-val-roi {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-green);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: stretch;
}

.price-card {
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.popular {
    box-shadow: var(--shadow-glow);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 6px 20px;
    border-radius: 14px;
}

.tier-name {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.tier-price {
    margin-bottom: 36px;
}

.tier-price .currency {
    font-size: 1.6rem;
    vertical-align: super;
    color: var(--accent-cyan);
}

.tier-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.tier-price .amount-str {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.tier-price .period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.tier-features li {
    padding: 12px 0;
    color: var(--text-main);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Security Box */
.security-box {
    padding: 60px;
    text-align: center;
}

.security-content h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.security-content p {
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 36px auto;
}

.sec-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sec-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Modal Overlay & Card */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-card {
    width: 100%;
    max-width: 560px;
    padding: 44px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
}

.modal-close:hover {
    color: #fff;
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
}

/* Floating Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glow);
    padding: 14px 0;
    transition: bottom 0.4s ease;
}

.sticky-cta-bar.visible {
    bottom: 0;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-weight: 600;
}

/* Footer */
.agency-footer {
    background: rgba(4, 6, 10, 0.98);
    border-top: 1px solid var(--border-glass);
    padding: 50px 24px 24px 24px;
}

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

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 8px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .features-grid, .pricing-grid, .comparison-grid { grid-template-columns: 1fr; }
    .demo-body-grid, .calculator-wrapper { grid-template-columns: 1fr; }
    .metrics-row { flex-wrap: wrap; justify-content: center; }
    .m-divider { display: none; }
    .nav-links { display: none; }
}
