:root {
    --primary-color: #7F56D9; /* Purple from your app */
    --primary-hover: #6A5ACD;
    --secondary-color: #5EAAA8; /* A complementary teal */
    --text-dark: #212529;
    --text-light: #6c757d;
    --text-muted: #94a3b8;
    --text-on-primary: #ffffff;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-light: #e9ecef;
    --border-medium: #ced4da;
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background-image: url('header.webp');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    pointer-events: none;
}

/* Loading state */
body.loading {
    cursor: wait;
}

body.loading * {
    pointer-events: none;
}



h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7em;
    line-height: 1.3;
}

h1 {
    font-size: 3.5em; /* Larger for more impact like Profound */
    font-weight: 800;
    margin-bottom: 0.3em;
    line-height: 1.1;
}

h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 1em;
    line-height: 1.2;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 0.8em;
    line-height: 1.3;
}

h4 {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1em;
    margin-top: -2em; /* Pull up if h2 has large margin */
    margin-bottom: 2.5em;
}

.features-subtitle { /* Specific styling for the features subtitle */
    max-width: 800px; /* Constrain width for readability */
    margin-left: auto;
    margin-right: auto;
    /* font-size: 1.05em; Optional: if you want it slightly different from generic subtitle */
}

p {
    margin-bottom: 1em;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

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

/* Header */
.landing-header {
    /* background-color: var(--background-white); */ /* Original opaque background */
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    padding: 15px 0; 
    border-bottom: 1px solid var(--border-light);
    position: fixed; /* Changed from sticky to allow floating over content */
    top: 20px; /* Space from the top of the viewport */
    left: 50%; /* Start at 50% from the left */
    transform: translateX(-50%); /* Shift left by half its own width to center */
    width: 90%; /* Match container width */
    max-width: var(--container-width); /* Match container max-width */
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    backdrop-filter: blur(8px); /* Standard syntax */
    border-radius: 15px; /* Rounded corners */
    /* margin: 20px auto; Removed, as positioning is now handled by top/left/transform */
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px; /* Reduced padding for tighter logo positioning */
}

.logo-container {
    display: flex;
    align-items: center;
}

#landing-logo {
    height: 40px;
    margin-right: 10px;
}

.logo-container span {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 40px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
}

.landing-nav a {
    margin-left: 25px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px; /* Subtle horizontal padding */
    border: none; /* Remove any borders */
    background-color: transparent; /* Ensure no background */
    transition: all 0.2s ease;
    border-radius: 6px; /* Subtle rounded corners */
}

.nav-left a:first-child {
    margin-left: 0;
}

.nav-right a {
    margin-left: 25px;
    color: var(--primary-color);
    background-color: rgba(127, 86, 217, 0.08);
}

.nav-right a:hover {
    color: var(--primary-color);
    background-color: rgba(127, 86, 217, 0.12);
}

.landing-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(127, 86, 217, 0.08); /* Very subtle background */
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010; /* Above nav, below potential modal backdrop */
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    text-align: center;
    position: relative;
    border-radius: 0 0 30px 30px; /* Rounded corners on bottom only */
    width: 100%;
    margin: 0 auto;
}

/* Hero section now uses body background */
.hero-section.pattern-dots-lg {
    position: relative;
}



.hero-section .container {
    position: relative; /* To ensure content is above pseudo-elements */
    z-index: 2; /* Increased to ensure content appears above the overlay */
}

/* Styles for animated headline */
#animated-model-name {
    display: inline-block;
    min-width: 200px;
    text-align: center;
    color: var(--primary-color); /* Brand purple to stand out on light background */
    transition: opacity 0.3s ease-in-out;
}

.animated-text-placeholder {
    /* Can add a subtle underline or different font weight if desired */
}

/* CSS Keyframe Animations for fade in/out */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.model-name-enter {
    animation: fadeIn 0.5s ease-out forwards;
}

.model-name-exit {
    animation: fadeOut 0.4s ease-in forwards;
}



.hero-section h1 {
    color: var(--text-dark);
}

.hero-section .sub-headline {
    font-size: 1.2em; /* Larger for better readability */
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #7f56d9;
    line-height: 1.6;
}

/* Hero Social Proof */
.hero-social-proof {
    text-align: center;
    margin-bottom: 30px;
}

.social-proof-text {
    font-size: 0.9em;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-placeholder {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.8;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(127, 86, 217, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px auto 40px auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Guarantee */
.hero-guarantee {
    font-size: 0.95em;
    color: var(--text-dark);
    margin-top: 20px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-transform: none; /* Remove uppercase for cleaner look */
    letter-spacing: 0.3px;
    cursor: pointer;
    user-select: none;
    border: none;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.3);
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 86, 217, 0.4);
    border-color: var(--primary-hover);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--text-on-primary);
    color: var(--primary-color);
}

.cta-button.tertiary {
    background-color: var(--secondary-color);
    color: var(--text-on-primary);
    padding: 10px 25px;
}
.cta-button.tertiary:hover {
    background-color: #4a8c8a; /* Darker shade of secondary */
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns in a single row for desktop/tablet */
    gap: 20px; 
    margin-top: 30px; /* Ensure enough space after the new subtitle */
}

.feature-item {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    /* color: var(--primary-hover); Optional: change icon color on hover */
}

.feature-item .cta-button.tertiary {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 0.9em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-item:hover .cta-button.tertiary {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: rgba(248, 249, 250, 0.9);
    border-top: 1px solid var(--border-light);
}

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

.testimonial-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3em;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-size: 1.1em;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9em;
}

.testimonial-rating {
    display: flex;
    align-items: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.testimonials-cta h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8em;
}

/* Dashboard Insights Section */
.dashboard-insights-section {
    padding: var(--section-padding);
    background-color: rgba(248, 249, 250, 0.9);
    border-top: 1px solid var(--border-light);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    background-color: var(--background-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.insight-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.insight-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.insight-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-number {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-dark);
}

.metric-description {
    font-size: 0.9em;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-trend-small {
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.metric-trend-small.positive {
    color: #28a745;
}

.metric-trend-small.negative {
    color: #dc3545;
}

.metric-trend-small.neutral {
    color: #6c757d;
}

.feature-icon {
    width: 132px;  /* Increased from 120px (10% more) */
    height: 132px; /* Increased from 120px (10% more) */
    margin-bottom: 25px; 
    display: inline-block; 
    transition: transform 0.3s ease; /* Removed color from transition */
    object-fit: contain; /* Ensures image scales nicely within the dimensions */
}

.feature-item h3 {
    font-size: 1.4em; /* Adjusted from 1.6em if it was too large before */
    margin-bottom: 0.6em;
    color: var(--primary-color); /* Changed to primary accent color */
}

/* Removed .features-conclusion styles as the element was deleted */
/*
.features-conclusion {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-dark); 
    max-width: 800px;
    margin: 40px auto 0 auto; 
    line-height: 1.7;
    font-weight: 500;
}
*/

/* How It Works Section - REMOVED */
/*
.how-it-works-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.steps-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    flex-basis: 300px; 
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

/* Trusted By Section - REMOVED */
/*
.trusted-by-section {
    padding: 40px 0;
    background-color: var(--background-light);
}

.trusted-by-section .section-subtitle {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 20px; 
}

.logos-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logos-slider span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
    color: var(--text-light);
    opacity: 0.7;
}
.logos-slider span i {
    width: 28px;
    height: 28px;
}
*/

/* Market Shift Section */
.market-shift-section {
    padding: var(--section-padding);
    margin-top: -25px;
}

.market-shift-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* New style for when the market-shift section only has text */
.market-shift-container-text-only {
    justify-content: center; /* Center the .text-content div */
}

.market-shift-container-text-only .text-content {
    flex: 0 1 700px; /* Allow it to grow but cap max-width, adjust as needed */
    text-align: center; /* Center the text within this div */
}

.market-shift-section .text-content {
    flex: 1;
}

/* Styles for the new prominent statement */
.market-shift-statement {
    font-size: 1.4em; /* Slightly smaller for better hierarchy */
    font-weight: 400; /* Regular weight for better readability */
    color: var(--text-light);
    text-align: center;
    line-height: 1.9;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.8);
    max-width: 700px; /* Constrain width for better readability */
    margin: 0 auto 10px auto; /* Center block and add bottom margin before CTA */
}

/* Remove old .market-shift-quote styles */
/*
.market-shift-quote {
    margin: 20px 0 30px 0;
    padding: 20px 25px 20px 50px; 
    background-color: var(--background-light);
    border-left: 5px solid var(--primary-color);
    position: relative;
    font-size: 1.05em; 
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.market-shift-quote p {
    margin-bottom: 0; 
    color: var(--text-dark); 
}
.market-shift-quote::before {
    content: '\201C'; 
    font-family: Georgia, serif; 
    font-size: 4em;
    color: var(--primary-color);
    position: absolute;
    left: 10px;
    top: 0px;
    opacity: 0.8;
}
*/

.market-shift-section .visual-content {
    /* flex: 1; */ /* No longer needed */
    /* text-align: center; */ /* No longer needed */
}

/* Product Showcase Section */
.product-showcase-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
    border-top: 1px solid var(--border-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
    align-items: stretch; /* Ensures cards in the same row stretch to the same height */
}

/* Style for when there's only one item in the product showcase - RETAIN FOR POTENTIAL FUTURE USE but not active with 2 cards */
.product-showcase-single-item {
    grid-template-columns: minmax(320px, 600px); /* Max width for the single card */
    justify-content: center; /* Center the card in the grid area */
}

.showcase-card {
    background-color: var(--background-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex; /* Added for better internal alignment if needed */
    flex-direction: column; /* Added for better internal alignment if needed */
    border: 1px solid var(--border-light); /* Changed from dashed */
}

.showcase-card h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.metric-display {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.metric-display:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.metric-display .metric-value {
    font-size: 1.6em;
    font-weight: 700;
    display: block;
    color: var(--text-dark);
}

.metric-display .metric-label {
    font-size: 0.85em;
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}

.metric-display .metric-trend {
    font-size: 0.9em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.metric-trend.positive {
    color: #28a745; /* Green for positive */
}
.metric-trend.negative {
    color: #dc3545; /* Red for negative */
}
.metric-trend.neutral {
    color: #6c757d; /* Gray for neutral */
}
.metric-trend i {
    width: 16px;
    height: 16px;
}

.showcase-card .prompt-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    background-color: var(--background-light);
    padding: 10px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.showcase-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.showcase-card th, .showcase-card td {
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-light);
}

.showcase-card th {
    background-color: var(--background-light);
    font-weight: 600;
}

/* Metrics Columns Layout */
.metrics-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Sentiment Section Styling */
.sentiment-section {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: 20px;
}

/* Color-coded Sentiment Tags */
.sentiment-positive {
    background-color: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.sentiment-neutral {
    background-color: rgba(108, 117, 125, 0.1) !important;
    color: #6c757d !important;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.sentiment-negative {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.metric-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1em;
}

/* Styles for the new product visual placeholder card */
.product-visual-placeholder {
    background-color: var(--background-white); /* Changed from --background-light */
    border: 1px solid var(--border-light); /* Changed from dashed */
    /* Removed justify-content, align-items, text-align as content will fill */
    padding: 25px; /* Standard showcase-card padding */
}

.product-visual-placeholder h4 {
    color: var(--text-dark); /* Standard h4 color */
    text-align: left; /* Align with other card */
    margin-bottom: 10px;
}

.product-visual-placeholder p {
    font-size: 0.9em;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: left; /* Align with other card */
}

/* Dashboard Preview Styles */
.dashboard-preview {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 15px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.dashboard-logo img {
    width: 24px;
    height: 24px;
}

.dashboard-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.total-row {
    background: var(--primary-color);
    color: var(--text-on-primary);
    border-color: var(--primary-color);
    font-weight: 600;
}

.total-row .metric-name,
.total-row .metric-value-dash,
.total-row .metric-trend-dash {
    color: var(--text-on-primary);
}

.metric-name {
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

.metric-value-dash {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 15px;
}

.metric-trend-dash {
    font-size: 0.85em;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 50px;
    text-align: center;
}

.metric-trend-dash.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.metric-trend-dash.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.metric-trend-dash.neutral {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    font-size: 0.9em;
    color: var(--text-light);
}

.time-period, .location-filter {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Chart.js Chart Styles */
.visual-placeholder-content.chart-area {
    padding: 20px;
    border-radius: var(--border-radius);
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-title {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

#aiPerformanceChart {
    max-width: 100%;
    height: 250px !important;
}

/* Features Section - (Ensure h2 has enough margin-bottom if section-subtitle is removed or modified) */
.features-section h2 {
    margin-bottom: 1.5em;
}

/* Pricing Section - REMOVED */
/*
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--background-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; 
}

.pricing-plan {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-plan.popular {
    border-color: var(--primary-color);
    border-width: 2px;
    position: relative;
    background-color: var(--background-white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 5px 15px;
    border-radius: var(--border-radius);
    font-size: 0.85em;
    font-weight: 600;
}

.pricing-plan h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-plan .price {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-plan .price span {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1; 
}

.pricing-plan ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.pricing-plan ul li i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

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

.cta-button.primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}
*/

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
    border-top: 1px solid var(--border-light);
}

.faq-item {
    background-color: var(--background-white);
    padding: 0; /* Remove padding from item, will be on question/answer */
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid var(--border-light); /* Restore border for definition */
    overflow: hidden; /* Important for height transition */
    transition: all 0.3s ease; /* Smooth transition for all changes */
}

/* Ensure collapsed state looks clean */
.faq-question[aria-expanded="false"] {
    background-color: var(--background-white);
}

.faq-question {
    background: none;
    border: none;
    padding: 18px 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

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



.faq-question h4 {
    margin-bottom: 0; /* Remove default h4 margin */
    color: var(--primary-color);
    font-size: 1.20em; /* Slightly increase question font size */
    flex-grow: 1; /* Allow h4 to take available space */
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: transform 0.3s ease;
    margin-left: 15px; /* Space between text and icon */
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px; /* Horizontal padding, vertical will be added on expand */
}

.faq-answer p {
    margin-bottom: 0; /* Ensure no extra bottom margin on the p inside */
    color: var(--text-light); /* Standard paragraph color */
    font-size: 0.95em;
}

.faq-item.open .faq-answer {
    max-height: 300px; /* Adjust if answers are very long */
    opacity: 1;
    padding: 10px 20px 20px 20px; /* Add vertical padding when expanded */
}

/* Open state styling for expanded FAQ items */
.faq-item.open {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* CTA Bottom Section */
.cta-section-bottom {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #a28cd1, #8b5cf6);    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Subtle white line on purple */
    width: 95%;
    margin: 0 auto;
    border-radius: 30px 30px 0 0; /* Rounded corners on top only */
}

.cta-section-bottom h2 {
    color: var(--background-white);
    margin-bottom: 0.5em;
}

.cta-section-bottom p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta-section-bottom .cta-button.primary {
    background-color: var(--background-white);
    color: var(--primary-color);
}

.cta-section-bottom .cta-button.primary:hover {
    background-color: var(--border-light);
    color: var(--primary-color);
}

.cta-section-bottom .small-text {
    font-size: 0.9em;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    margin-bottom: 0;
}

.cta-section-bottom .small-text a {
    color: var(--background-white);
    font-weight: 500;
    text-decoration: underline;
}

.cta-button.large {
    padding: 15px 40px;
    font-size: 1.1em;
}

/* Footer */
.landing-footer {
    background-image: url('footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #a0aec0; /* Lighter gray for footer text on dark bg */
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Very subtle light line on dark bg */
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.landing-footer .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-cta {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.footer-cta h2 {
    color: var(--background-white);
    margin-bottom: 0.5em;
    font-size: 2.5em;
}

.footer-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.footer-cta .cta-button.primary {
    background-color: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--background-white);
}

.footer-cta .cta-button.primary:hover {
    background-color: transparent;
    color: var(--background-white);
}

.footer-content {
    display: flex;
    flex-direction: column; /* Stack on small screens */
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--background-white);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-links i {
    width: 20px;
    height: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 35px;
}

.footer-logo span {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--background-white);
}

/* Footer contact removed, so styles are no longer needed */
/*
.footer-contact p {
    margin: 0;
}

.footer-contact a {
    color: var(--background-light);
    font-size: 1em;
}
.footer-contact a:hover {
    color: var(--primary-color);
}
*/

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    font-size: 0.9em;
    font-weight: 500;
}

.security-badge i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.footer-bottom p {
    font-size: 0.9em;
    color: #718096; /* Even lighter gray */
    margin:0;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .market-shift-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .market-shift-section {
        margin-top: -40px;
    }
    .market-shift-section .text-content,
    .market-shift-section .visual-content {
        flex: none; 
        width: 100%;
    }
    .market-shift-graph-placeholder {
        max-width: 80%;
        margin: 20px auto 0 auto;
    }
    /* Adjust features grid for tablets - perhaps 2 columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px; /* Slightly larger gap for 2 columns */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4em;
    }
    h2 {
        font-size: 2em;
    }

    .landing-header { /* Added rule for mobile header adjustments */
        width: 80%; /* More appropriate width for mobile */
    }

    /* Hero section mobile improvements */
    .hero-stats {
        gap: 20px;
        margin: 20px auto 30px auto;
    }

    .stat-number {
        font-size: 1.8em;
    }

    .social-proof-logos {
        gap: 15px;
    }

    .logo-placeholder {
        font-size: 0.9em;
        padding: 6px 12px;
    }

    .hero-guarantee {
        font-size: 0.85em;
        padding: 0 20px;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonials-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }

    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-plan.popular {
        transform: none;
    }

    .pricing-plan {
        padding: 30px 20px;
    }

    .pricing-guarantee {
        padding: 15px;
        margin-top: 30px;
    }

    /* Security badges mobile */
    .security-badges {
        gap: 20px;
        margin-bottom: 15px;
    }

    .security-badge {
        font-size: 0.8em;
    }

    .landing-header {
        background-color: rgba(255, 255, 255, 1); /* Completely opaque for mobile readability */
    }

    .landing-header .container {
        flex-direction: row; /* Keep logo and hamburger side-by-side */
        justify-content: space-between; /* Pushes logo to left, hamburger to right */
    }

    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
    }

    .landing-nav {
        display: flex; /* Changed from 'none' to 'flex' for smooth transition */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0; /* Align with the left edge of the .landing-header */
        right: 0; /* Align with the right edge of the .landing-header, making it full width of header */
        
        /* Updated styles for glassy effect, rounded corners, and gap */
        background-color: rgba(255, 255, 255, 0.98); /* Much more opaque for mobile readability */
        -webkit-backdrop-filter: blur(8px); /* For Safari */
        backdrop-filter: blur(8px); /* Standard syntax */
        border-radius: 15px; /* Match header's border-radius */
        margin-top: 10px; /* Add a gap below the header */
        box-shadow: 0 5px 15px rgba(0,0,0,0.12); /* Adjusted shadow for better depth */
        
        padding: 20px 0; /* Existing padding for nav items */
        flex-direction: column;
        align-items: center;
        z-index: 1000; /* Ensure it's above other content */
        
        /* Smooth transition properties */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .landing-nav.mobile-nav-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .landing-nav {
        flex-direction: column;
        margin-left: 0;
    }

    .nav-left, .nav-right {
        flex-direction: column;
        width: 100%;
    }

    .nav-right a {
        margin-left: 0;
    }

    .landing-nav a {
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        font-size: 1.1em;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .pricing-grid {
        grid-template-columns: 1fr; /* Stack pricing plans */
    }
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    /* Stack features grid on mobile */
    .features-grid {
        grid-template-columns: 1fr; /* Stack to a single column */
        gap: 20px;
    }
    
    /* Stack insights grid on mobile */
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Additional styles for Feather icons if needed, like default size/stroke */
.feather {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Optional: No scroll on body when mobile nav is open */
/*
.no-scroll {
    overflow: hidden;
}
*/

.competitor-tags-container {
    display: flex;
    flex-wrap: wrap; /* Allow tags to wrap to the next line if needed */
    gap: 6px; /* Reduced space between tags */
    margin-top: 5px; /* A little space above the tags */
}

.competitor-tag {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 500;
    display: inline-block; 
    box-shadow: var(--shadow-sm);
}

/* Example alternate colors for tags if desired */
/*
.competitor-tag:nth-child(2n) {
    background-color: var(--secondary-color);
}
.competitor-tag:nth-child(3n) {
    background-color: #FF9F43; 
}
*/ 

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--background-white);
    border-top: 1px solid var(--border-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; 
    margin: 40px 0;
}

.pricing-plan {
    background-color: var(--background-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-plan.popular {
    border-color: var(--primary-color);
    border-width: 2px;
    position: relative;
    background-color: var(--background-white);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-size: 0.85em;
    font-weight: 600;
}

.pricing-plan h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pricing-plan .price {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.pricing-plan .price span:first-child {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.pricing-plan .price span:last-child {
    font-size: 1em;
    color: var(--text-light);
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1; 
}

.pricing-plan ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95em;
}

.pricing-plan ul li i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.pricing-guarantee p {
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95em;
}

/* Agencies Section Styles */
.agencies-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a4fcf 100%);
    border-top: 1px solid #e9ecef;
    color: white;
}

.agencies-section h2 {
    color: white;
}

.agencies-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.agency-feature {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.agency-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 1);
}

.agency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-on-primary);
}

.agency-icon i {
    width: 36px;
    height: 36px;
    stroke-width: 2.5;
}

.agency-feature h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.agency-feature p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.agency-cta {
    text-align: center;
    background: var(--background-white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.agency-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8em;
}

.agency-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsive adjustments for agencies section */
@media (max-width: 768px) {
    .agencies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .agency-feature {
        padding: 30px 20px;
    }
    
    .agency-cta {
        padding: 40px 20px;
    }
    
    .agency-cta h3 {
        font-size: 1.5em;
    }
}

/* AI Agent Tracking Section */
.ai-agent-tracking-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.ai-agent-tracking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}

.agent-tracking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.agent-tracking-card {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.agent-tracking-card.main-tracking {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tracking-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.tracking-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.tracking-metric .metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.tracking-metric .metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.tracking-metric .metric-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: var(--background-light);
}

.tracking-metric .metric-trend.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.tracking-metric .metric-trend.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.tracking-metric .metric-trend.neutral {
    color: var(--text-light);
    background: rgba(108, 117, 125, 0.1);
}

.agent-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agent-breakdown .metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.agent-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.agent-tag {
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.agent-tag:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.tracking-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-dashboard-preview {
    width: 100%;
    max-width: 400px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.tracking-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.tracking-header .tracking-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tracking-header .tracking-logo i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.tracking-chart-placeholder {
    margin: 1.5rem 0;
    text-align: center;
}

.chart-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.chart-point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-medium);
    transition: all 0.3s ease;
}

.chart-point.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tracking-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.tracking-stat {
    text-align: center;
}

.tracking-stat .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.tracking-stat .stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    color: var(--text-on-primary);
    width: 28px;
    height: 28px;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.tracking-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: var(--border-radius);
    color: var(--text-on-primary);
}

.tracking-cta h3 {
    color: var(--text-on-primary);
    margin-bottom: 1.5rem;
}

.tracking-cta .cta-button {
    background: var(--text-on-primary);
    color: var(--primary-color);
    border: 2px solid var(--text-on-primary);
}

.tracking-cta .cta-button:hover {
    background: transparent;
    color: var(--text-on-primary);
}

/* Responsive Design for Agent Tracking */
@media (max-width: 768px) {
    .agent-tracking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tracking-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tracking-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .agent-tracking-card {
        padding: 1.5rem;
    }
    
    .tracking-metric .metric-value {
        font-size: 2rem;
    }
}