/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-cta {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #1d4ed8 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 80px;
    padding: 0 2rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    color: #2563eb;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    width: 100%;
    max-width: 600px;
}

.dashboard-description {
    margin-bottom: 2rem;
    text-align: center;
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dashboard-subtitle {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.dashboard-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-badge i {
    font-size: 0.8rem;
}

.dashboard-screenshot {
    margin-top: 2rem;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

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

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #10b981;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
}

.route-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.route-id {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.driver-name {
    font-size: 0.8rem;
    color: #64748b;
}

.route-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.route-status.completed {
    background: #dcfce7;
    color: #166534;
}

.route-status.pending {
    background: #fef3c7;
    color: #92400e;
}

/* Problem Section */
.problem {
    padding: 5rem 0;
    background: #ffffff;
}

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

.problem h2 {
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item i {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-item h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-item p {
    color: #64748b;
}

/* Solution Preview */
.solution-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.solution-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.solution-demo {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.demo-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e5e5e5;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
}

.tab-btn:hover {
    color: #2563eb;
}

.demo-content {
    padding: 3rem;
}

.tab-panel {
    display: none;
}

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

.demo-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-description ul {
    list-style: none;
    margin-top: 1rem;
}

.feature-description li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.feature-description li::before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
}

/* Feature Visuals */
.assignment-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    min-width: 100px;
}

.flow-step i {
    font-size: 1.5rem;
    color: #2563eb;
}

.flow-arrow {
    color: #64748b;
    font-size: 1.5rem;
}

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

.driver-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    position: relative;
}

.driver-status {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.driver-status.available {
    background: #10b981;
}

.driver-status.busy {
    background: #ef4444;
}

.driver-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.driver-cert {
    font-size: 0.8rem;
    color: #64748b;
}

.vehicle-status-demo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vehicle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.vehicle-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

.vehicle-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vehicle-id {
    font-weight: 600;
    color: #1a1a1a;
}

.vehicle-status.operational {
    color: #10b981;
    font-size: 0.9rem;
}

.vehicle-status.maintenance {
    color: #ef4444;
    font-size: 0.9rem;
}

.sms-demo {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 380px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 8px solid #2d2d2d;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 11;
}

.phone-screen {
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    padding-top: 2.5rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.phone-status-bar {
    position: absolute;
    top: 2.5rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.8rem;
    z-index: 5;
}

.status-time {
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 0.5rem;
}

.messages-header {
    background: #1a1a1a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    border-bottom: 1px solid #333;
}

.contact-name {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.messages-header i {
    font-size: 1.1rem;
    cursor: pointer;
}

.messages-container {
    flex: 1;
    background: #000;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message.incoming {
    align-items: flex-start;
}

.message.outgoing {
    align-items: flex-end;
}

.message-text {
    background: #2563eb;
    color: white;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message.outgoing .message-text {
    background: #34c759;
    color: white;
}

.message-time {
    font-size: 0.7rem;
    color: #94a3b8;
    margin: 0 0.75rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
}

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

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #2563eb;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Pricing Hero */
.pricing-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-card-main {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #2563eb;
    text-align: center;
}

.price-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-highlight .currency {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2563eb;
}

.price-highlight .amount {
    font-size: 5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-highlight .period {
    font-size: 1.25rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.pricing-tagline {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-examples {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
}

.pricing-examples h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1rem;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 150px));
    gap: 1rem;
    align-items: stretch;
    justify-content: center;
}

.example-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    min-height: 80px;
}

.example-routes {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    white-space: nowrap;
}

.example-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
}

@media (max-width: 768px) {
    .price-highlight .amount {
        font-size: 3.5rem;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
    }
}

/* ROI Callout */
.roi-callout {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.roi-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.roi-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    flex-shrink: 0;
}

.roi-icon i {
    font-size: 2.5rem;
    color: #10b981;
}

.roi-text h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.roi-text p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.roi-text strong {
    color: white;
}

.roi-highlight {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.roi-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.roi-label {
    color: #cbd5e1;
    font-size: 1rem;
}

.roi-bottom {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .roi-content {
        flex-direction: column;
        text-align: center;
    }
    
    .roi-icon {
        align-self: center;
    }
}

/* Common Features */
.common-features {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.common-features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #2563eb;
    background: #dbeafe;
}

.feature-item i {
    font-size: 1.5rem;
    color: #2563eb;
    min-width: 24px;
}

.feature-item span {
    font-weight: 500;
    color: #1a1a1a;
}

/* Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.pricing-card.starter-dsp {
    border-color: #10b981;
}

.pricing-card.starter-dsp:hover {
    border-color: #059669;
}

.pricing-card.growth-dsp {
    border-color: #2563eb;
}

.pricing-card.growth-dsp:hover {
    border-color: #1d4ed8;
}

.pricing-card.enterprise-dsp {
    border-color: #7c3aed;
}

.pricing-card.enterprise-dsp:hover {
    border-color: #6d28d9;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.route-info {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: #64748b;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    font-size: 1.25rem;
    color: #64748b;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-cta .btn {
    margin-bottom: 1rem;
    align-self: center;
}

.cta-note {
    color: #64748b;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 2rem;
    color: #2563eb;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.company-stats {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.cta-form {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #475569;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group select {
    color: #94a3b8;
}

.form-group option {
    background: #1e293b;
    color: white;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
}

.benefit i {
    color: #10b981;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    color: white;
}

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

.link-group h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .demo-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .assignment-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .driver-grid-demo {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 320px;
    }

    .phone-screen {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 280px;
    }

    .phone-screen {
        min-height: 450px;
    }

    .message-text {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual {
    animation: fadeInUp 1s ease;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
/* Demo Picker Modal */
.demo-picker-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.demo-picker-modal.show {
    display: flex;
}

.demo-picker-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.demo-picker-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.demo-picker-close:hover {
    background: #f1f5f9;
    color: #1a1a1a;
}

.demo-picker-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.demo-picker-content > p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.demo-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.demo-option:hover {
    border-color: #2563eb;
    background: #f8fafc;
    transform: translateY(-2px);
}

.demo-option i {
    font-size: 2rem;
    color: #2563eb;
}

.demo-option-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.demo-option-desc {
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 480px) {
    .demo-picker-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .demo-picker-content h3 {
        font-size: 1.5rem;
    }
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slides {
    position: relative;
    min-height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-carousel .testimonial-card {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel .testimonial-content p {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-carousel .quote-icon {
    margin-bottom: 1rem;
}

.testimonial-carousel .quote-icon i {
    font-size: 2rem;
    color: #2563eb;
    opacity: 0.3;
}

.testimonial-carousel .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-carousel .author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.testimonial-carousel .author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-carousel .company-stats span {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #475569;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #94a3b8;
}

.carousel-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-carousel .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-carousel .testimonial-content p {
        font-size: 1.125rem;
    }
    
    .testimonial-carousel .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .testimonial-slides {
        min-height: 380px;
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-card.about-main {
    grid-column: 1 / -1;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.375rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.about-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.badge-item i {
    font-size: 1.25rem;
    color: #2563eb;
}

.badge-item span {
    font-weight: 600;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-card.about-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   SUPPORT PAGE STYLES
   =================================== */

/* Support Hero */
.support-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    text-align: center;
    color: white;
}

.support-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.support-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: white;
    margin-bottom: 2rem;
}

.support-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.support-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.1rem;
}

.support-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.support-search input:focus {
    outline: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

/* Support Content Layout */
.support-content {
    padding: 3rem 0;
    background: #f8fafc;
    min-height: calc(100vh - 300px);
}

.support-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.support-sidebar {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: #f1f5f9;
    color: #2563eb;
}

.sidebar-link.active {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 500;
}

.sidebar-link i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.sidebar-contact {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
}

.sidebar-contact p {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-contact .btn-small {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    display: block;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.sidebar-contact .btn-small:hover {
    background: #1d4ed8;
}

/* Module Filters */
.module-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.filter-tag {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    color: #475569;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.filter-tag.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Documentation Modules */
.doc-module {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.module-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.module-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.module-header h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.module-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Documentation Sections */
.doc-section {
    margin-bottom: 2rem;
}

.doc-section:last-child {
    margin-bottom: 0;
}

.doc-section h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.doc-section h3 i {
    color: #2563eb;
    font-size: 1rem;
}

.doc-subsection {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid #e2e8f0;
}

.doc-subsection h4 {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 0.75rem;
}

/* Documentation Lists */
.doc-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.doc-list li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.6;
}

.doc-list li ul {
    margin-top: 0.5rem;
}

/* Documentation Tables */
.doc-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.doc-table th,
.doc-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.doc-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1a1a1a;
}

.doc-table td {
    color: #475569;
}

.doc-table tr:last-child td {
    border-bottom: none;
}

/* Tips and Warnings */
.doc-tip,
.doc-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.doc-tip {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.doc-tip i {
    color: #16a34a;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.doc-tip span {
    color: #166534;
    line-height: 1.5;
}

.doc-warning {
    background: #fef3c7;
    border: 1px solid #fcd34d;
}

.doc-warning i {
    color: #d97706;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.doc-warning span {
    color: #92400e;
    line-height: 1.5;
}

/* Code blocks */
code {
    background: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85em;
    color: #dc2626;
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: 8px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* Workflow Diagram */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 2rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    margin: 1rem 0;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    min-width: 140px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    font-size: 0.85rem;
    color: #1a1a1a;
}

.step-content span {
    font-size: 0.75rem;
    color: #64748b;
}

.workflow-arrow {
    color: #cbd5e1;
    font-size: 1.25rem;
}

/* Checklist */
.checklist {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
}

.checklist-item span {
    color: #475569;
}

.checklist-item input:checked + span {
    text-decoration: line-through;
    color: #94a3b8;
}

/* No Results */
.no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #64748b;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    color: #334155;
    margin-bottom: 0.5rem;
}

/* Active nav link */
.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .support-layout {
        grid-template-columns: 1fr;
    }
    
    .support-sidebar {
        position: static;
        display: none;
    }
    
    .workflow-diagram {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .workflow-step {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .support-hero p {
        font-size: 1rem;
    }
    
    .module-filters {
        justify-content: center;
    }
    
    .doc-module {
        padding: 1.5rem;
    }
    
    .module-header h2 {
        font-size: 1.5rem;
    }
    
    .doc-table {
        font-size: 0.8rem;
    }
    
    .doc-table th,
    .doc-table td {
        padding: 0.5rem;
    }
}

/* Why DailyDSP - Competitive Positioning */
.why-dailydsp {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.compare-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.compare-header i {
    font-size: 1.5rem;
    color: #2563eb;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 8px;
    flex-shrink: 0;
}

.compare-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.compare-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.comparison-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.compare-summary {
    font-size: 1.1rem;
    color: #334155;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* ROI Calculator */
.roi-calculator {
    margin: 1rem 0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.25rem;
}

.calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.calc-row label {
    font-weight: 500;
    color: #334155;
    font-size: 0.9rem;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    max-width: 320px;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
    transition: transform 0.15s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.slider-value {
    min-width: 44px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
}

.calc-results {
    display: grid;
    gap: 0.25rem;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

.calc-label {
    color: #64748b;
    font-size: 0.85rem;
}

.calc-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    white-space: nowrap;
}

.calc-item.savings {
    border-top: 2px solid #22c55e;
    padding-top: 0.5rem;
    margin-top: 0.15rem;
}

.calc-item.savings-total {
    border-top: 4px double #16a34a;
    padding-top: 0.5rem;
    margin-top: 0.15rem;
}

.calc-item.savings .calc-label,
.calc-item.savings-total .calc-label {
    color: #16a34a;
    font-weight: 600;
    background: none;
    -webkit-text-fill-color: #16a34a;
}

.calc-item.savings .calc-label strong,
.calc-item.savings-total .calc-label strong {
    color: #16a34a;
    background: none;
    -webkit-text-fill-color: #16a34a;
}

.savings-value {
    color: #16a34a !important;
    -webkit-text-fill-color: #16a34a !important;
    font-size: 1.05rem !important;
    background: none !important;
}

@media (max-width: 640px) {
    .calc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
