/* ============================================
   AI Agent Solutions - SafeComs Landing Page
   Professional, Clean, Client-Focused Design
   ============================================ */

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* SafeComs Brand Colors */
    --primary-red: #E33751;
    --secondary-red: #C4304A;
    --accent-red: #FF4D6A;
    --white: #FFFFFF;
    --dark-gray: #000000;
    --text-gray: #333333;
    --light-gray: #F8F9FA;
    --border-gray: #E5E7EB;
    
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(227, 55, 81, 0.6) 0%, rgba(196, 48, 74, 0.7) 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --heading-weight: 700;
    --body-weight: 400;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-gray);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.highlight {
    color: var(--accent-red);
    font-weight: 600;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease 0.9s forwards;
    opacity: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.nav-brand {
    font-size: 24px;
    font-weight: var(--heading-weight);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 250px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.brand-logo {
    height: 50px;
    max-width: 250px;
    width: auto;
    display: block;
    object-fit: contain;
    font-size: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.brand-logo-link:hover .brand-logo {
    opacity: 0.8;
}

.brand-text {
    display: inline-block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li a {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition-normal);
}

.nav-menu li a:hover {
    color: var(--primary-red);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.btn-nav:hover {
    color: var(--white) !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: var(--transition-normal);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: var(--heading-weight);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 28px;
    color: var(--white);
}

.stat-content h3 {
    font-size: 32px;
    font-weight: var(--heading-weight);
    margin-bottom: 5px;
    color: var(--primary-red);
}

.stat-content p {
    font-size: 16px;
    color: #6B7280;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--primary-red);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(227, 55, 81, 0.1);
    color: var(--primary-red);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: var(--heading-weight);
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 30px;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.problem-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 55, 81, 0.1);
    color: var(--primary-red);
    border-radius: var(--radius-md);
    font-size: 32px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
}

.problem-cta {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.problem-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ==================== SECTION IMAGES ==================== */
.section-image {
    max-width: 900px;
    margin: 40px auto 60px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    padding: var(--section-padding);
    background: var(--white);
}

.solution-intro {
    max-width: 900px;
    margin: 0 auto 60px;
}

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

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.agent-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gray);
    transition: var(--transition-normal);
}

.agent-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.agent-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 32px;
    margin-bottom: 20px;
}

.agent-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.agent-card > p {
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 20px;
}

.agent-features {
    list-style: none;
}

.agent-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 10px;
}

.agent-features li i {
    color: var(--success);
    font-size: 14px;
}

.results-showcase {
    background: linear-gradient(135deg, #E8F4F8 0%, #D6EAF8 100%);
    color: var(--text-gray);
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid #B8D9E8;
}

.results-showcase h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000 !important;
}

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

.result-metric {
    text-align: center;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    color: var(--text-gray) !important;
}

.result-metric p {
    font-size: 16px;
    color: #666666 !important;
}

.results-showcase .highlight {
    color: var(--primary-red) !important;
    font-weight: 800;
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EFF5 100%);
    color: var(--text-gray);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 48px;
    color: var(--white);
}

.trust-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
}

.trust-text em {
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .trust-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .trust-text h3 {
        font-size: 24px;
    }
    
    .trust-text p {
        font-size: 16px;
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -50px;
    width: 2px;
    background: var(--border-gray);
}

.step-number {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.step-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 20px;
}

.step-deliverable {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 55, 81, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.step-deliverable i {
    color: var(--primary-red);
    font-size: 18px;
}

.step-deliverable strong {
    color: var(--primary-red);
}

.step-features {
    list-style: none;
}

.step-features li {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

/* ==================== USE CASES SECTION ==================== */
.use-cases-section {
    padding: var(--section-padding);
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.use-case-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-normal);
}

.use-case-card:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.use-case-industry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.use-case-challenge,
.use-case-solution,
.use-case-results {
    margin-bottom: 25px;
}

.use-case-challenge h4,
.use-case-solution h4,
.use-case-results h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.use-case-challenge h4 i {
    color: var(--error);
}

.use-case-solution h4 i {
    color: var(--warning);
}

.use-case-results h4 i {
    color: var(--success);
}

.use-case-challenge p,
.use-case-solution p {
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.metric {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--radius-md);
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 5px;
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

/* ==================== AGENT STORE SECTION ==================== */
.agent-store-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.agent-store-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--text-gray);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.tab-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.agent-listings {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.agent-listing {
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-normal);
}

.agent-listing:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-md);
}

.agent-listing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.agent-listing-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 26px;
}

.agent-listing-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.agent-listing-info p {
    font-size: 15px;
    color: #6B7280;
}

.agent-listing-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--radius-md);
}

.metric-item .label {
    display: block;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 5px;
}

.metric-item .value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
}

.metric-item .value.highlight {
    color: var(--accent-red);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-red);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 55, 81, 0.1);
    color: var(--primary-red);
    border-radius: var(--radius-md);
    font-size: 36px;
    margin: 0 auto 20px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.pricing-description {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 25px;
}

.pricing-example {
    margin-bottom: 25px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.price-tag .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.price-tag .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-red);
}

.price-tag .period {
    font-size: 18px;
    color: #6B7280;
}

.price-note {
    font-size: 14px;
    color: #6B7280;
}

.pricing-comparison {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.comparison-item .label {
    font-size: 14px;
    color: #6B7280;
}

.comparison-item .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-gray);
}

.comparison-savings {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--success);
    font-weight: 700;
}

.comparison-savings i {
    font-size: 18px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 12px;
}

.pricing-features li i {
    color: var(--success);
    font-size: 14px;
}

/* ==================== ROI CALCULATOR SECTION ==================== */
.roi-calculator-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.calculator-inputs h3,
.calculator-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.input-group input[type="number"],
.input-group input[type="range"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition-normal);
}

.input-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.input-group input[type="range"] {
    height: 6px;
    padding: 0;
    cursor: pointer;
}

.range-value {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-red);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.result-item.highlight {
    background: rgba(227, 55, 81, 0.05);
    border-radius: var(--radius-md);
    border-bottom: none;
    margin-bottom: 15px;
}

.result-label {
    font-size: 15px;
    color: #6B7280;
    font-weight: 500;
}

.result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
}

.result-summary {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
}

.result-summary strong {
    color: var(--primary-red);
    font-size: 18px;
}

/* ==================== WHY SAFECOMS SECTION ==================== */
.why-safecoms-section {
    padding: var(--section-padding);
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-normal);
}

.why-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 32px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.why-card ul {
    list-style: none;
}

.why-card ul li {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.why-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.why-card ul li strong {
    color: var(--primary-red);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
}

.faq-question i {
    font-size: 18px;
    color: var(--primary-red);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EFF5 100%);
    color: var(--text-gray);
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: #000000;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.cta-step {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.cta-step:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cta-step .step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.cta-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-step p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-form {
    max-width: 700px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.cta-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: var(--font-family);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
}

.contact-info p {
    color: #6B7280;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition-normal);
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.contact-link:hover {
    color: var(--accent-red);
    background: rgba(227, 55, 81, 0.05);
    transform: translateX(5px);
}

.contact-link i {
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-links {
        gap: 12px;
    }
    
    .contact-link {
        font-size: 15px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-stats .stat {
    text-align: center;
}

.footer-stats .stat strong {
    display: block;
    font-size: 28px;
    color: var(--accent-red);
    margin-bottom: 5px;
}

.footer-stats .stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-normal);
}

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

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 40px;
        max-width: 200px;
    }
    
    .nav-brand {
        max-width: 200px;
    }
    
    .nav-wrapper {
        padding: 12px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-image-wrapper {
        margin-bottom: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .problems-grid,
    .agents-grid,
    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .agent-listing-metrics {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 35px;
        max-width: 180px;
    }
    
    .nav-brand {
        max-width: 180px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-wrapper {
        padding: 30px 20px;
    }
    
    .tab-content {
        padding: 20px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}