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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo h2 {
    font-weight: 700;
    color: #667eea;
    font-size: 1.5rem;
}

.nav-logo span {
    font-weight: 300;
    color: #64748b;
    font-size: 0.9rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.logo-link h2,
.logo-link span {
    margin: 0;
}

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

.nav-item {
    list-style: none;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background-color: #f8f9fa;
    color: #667eea;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

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

.nav-menu a:hover {
    color: #667eea;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Modern Design */
.hero,
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

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

.hero::before,
.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .hero-content h1 {
        color: #ffffff !important;
        background: none !important;
    }
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #e5e7eb;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #e5e7eb;
    font-weight: 500;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    border: none;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* AI Dashboard Visual */
.dashboard-preview,
.ai-dashboard {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    overflow: hidden;
    position: relative;
    color: #1f2937;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.ai-dashboard:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.16),
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ai-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 30%, #fbbf24 60%, #10b981 100%);
    border-radius: 24px 24px 0 0;
    z-index: 1;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(90deg, #667eea 0%, #764ba2 30%, #fbbf24 60%, #10b981 100%); }
    25% { background: linear-gradient(90deg, #10b981 0%, #667eea 30%, #764ba2 60%, #fbbf24 100%); }
    50% { background: linear-gradient(90deg, #fbbf24 0%, #10b981 30%, #667eea 60%, #764ba2 100%); }
    75% { background: linear-gradient(90deg, #764ba2 0%, #fbbf24 30%, #10b981 60%, #667eea 100%); }
}

.ai-dashboard::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dashboard-header {
    position: relative;
    z-index: 3;
    padding-top: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dashboard-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6), 0 0 16px rgba(16, 185, 129, 0.3);
    position: relative;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite 0.5s;
}

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

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 0 0 28px 0;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px 12px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all 0.3s ease;
}

.metric-card:first-child::before {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.metric-card:nth-child(2)::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.metric-card:last-child::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.metric-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.metric-card:hover::before {
    height: 4px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.metric-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
}

.metric-card:first-child .metric-icon {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.metric-card:nth-child(2) .metric-icon {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.metric-card:last-child .metric-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.metric-value {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
}

.metric-value::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
    border-radius: 1px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-value::after {
    opacity: 0.8;
    width: 40px;
}

.metric-label {
    font-size: 0.75rem;
    color: #374151;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
}

.dashboard-chart {
    margin-top: 0;
    padding: 24px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.dashboard-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #fbbf24 100%);
    border-radius: 20px 20px 0 0;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 80px;
    gap: 8px;
    padding: 0 12px;
    position: relative;
    z-index: 2;
}

.chart-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #fbbf24 100%);
    border-radius: 8px 8px 3px 3px;
    box-shadow: 
        0 4px 12px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    animation: growUp 1.2s ease-out;
    overflow: hidden;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 8px 8px 3px 3px;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

.chart-bar:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    filter: brightness(1.15) saturate(1.1);
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.chart-bar:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

/* Interactive Chart Features */
.chart-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.tooltip-month {
    font-weight: bold;
    margin-bottom: 6px;
    color: #4ade80;
    font-size: 15px;
}

.tooltip-value, .tooltip-revenue {
    margin: 3px 0;
    font-size: 13px;
    opacity: 0.9;
}

/* Enhanced Chart Bar Interactivity */
.chart-bar {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Detail Modal Styles */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 420px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 24px 28px 18px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: 28px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.detail-item:hover {
    background: rgba(102, 126, 234, 0.02);
    margin: 0 -28px;
    padding: 16px 28px;
    border-radius: 8px;
}

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

.detail-label {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.detail-value {
    font-weight: 700;
    color: #059669;
    font-size: 17px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Removed conflicting dashboard-header definition */

/* Removed conflicting dashboard-title and dashboard-status definitions */

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

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

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Removed conflicting metric-icon definition */

.chart-container {
    height: 100px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 100%;
}

.chart-bar {
    background: linear-gradient(to top, #fbbf24, #f59e0b);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 10px;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0; }
}

.metrics {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.7;
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Platform Preview Section */
.platform-preview {
    padding: 120px 0;
    background: white;
    position: relative;
}

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

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
    line-height: 1.2;
}

.platform-text p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #374151;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.platform-features .feature-item::selection {
    background: transparent;
}

.platform-features .feature-item::-moz-selection {
    background: transparent;
}

.platform-features .feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.platform-mockup {
    display: flex;
    justify-content: center;
}

.mockup-screen {
    background: #1f2937;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mockup-screen:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #374151;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.screen-dots span:hover {
    transform: scale(1.3);
    opacity: 0.8;
}

.screen-dots span:first-child { background: #ef4444; }
.screen-dots span:nth-child(2) { background: #f59e0b; }
.screen-dots span:last-child { background: #10b981; }

.screen-title {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 500;
}

.ai-insight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #10b981;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-insight:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.ai-insight span {
    transition: opacity 0.3s ease;
}

.prediction-chart {
    height: 60px;
    background: #374151;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.prediction-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #fbbf24);
    animation: pulse 2s infinite;
}

.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.data-point:hover {
    transform: scale(1.5);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Services New Section */
.services-new {
    padding: 120px 0;
    background: #f8fafc;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f8fafc;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #667eea;
    color: white;
    transform: translateX(5px);
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Analytics Section */
.analytics {
    padding: 6rem 0;
    background: white;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.analytics-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.analytics-text > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.how-we-work {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* Specific dashboard-header for ads-dashboard-mockup */
.ads-dashboard-mockup .dashboard-header {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    backdrop-filter: blur(8px);
    pointer-events: auto;
    z-index: 1;
    min-height: 60px;
}

.ads-dashboard-mockup .dashboard-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ads-dashboard-mockup .dashboard-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.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;
}

.metric-change.negative {
    color: #ef4444;
}

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

.ads-dashboard-mockup {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 280px;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Desktop optimization for ads dashboard */
@media (min-width: 1024px) {
    .ads-dashboard-mockup {
        max-width: 550px;
        padding: 2rem;
        min-height: 320px;
    }
    
    .ads-dashboard-mockup .dashboard-header {
        padding: 1.25rem 2rem;
        min-height: 70px;
    }
    
    .ads-dashboard-mockup .dashboard-title {
        font-size: 1.2rem;
    }
    
    .ads-dashboard-mockup .control-item {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: 70px;
        height: 40px;
    }
    
    .ads-dashboard-mockup .dashboard-metrics {
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }
    
    .ads-dashboard-mockup .metric-card {
        padding: 2rem 1rem;
        min-width: 160px;
        max-width: 180px;
    }
    
    .ads-dashboard-mockup .metric-value {
        font-size: 1.6rem;
        min-height: 2.8rem;
    }
    
    .ads-dashboard-mockup .metric-icon {
        font-size: 2rem;
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1rem;
    }
}

.ads-dashboard-mockup .dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.ads-dashboard-mockup .metric-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem 0.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-width: 140px;
    max-width: 160px;
    flex: 1;
}

.ads-dashboard-mockup .metric-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ads-dashboard-mockup .metric-icon {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.ads-dashboard-mockup .metric-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
}

.ads-dashboard-mockup .metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    word-break: break-all;
}

.ads-dashboard-mockup .metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ads-dashboard-mockup .metric-change {
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ads-dashboard-mockup .metric-change.positive {
    color: #10d876;
    text-shadow: 0 1px 2px rgba(16, 216, 118, 0.3);
}

.ads-dashboard-mockup .metric-change.negative {
    color: #ff6b6b;
    text-shadow: 0 1px 2px rgba(255, 107, 107, 0.3);
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.ads-dashboard-mockup .control-item {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    white-space: nowrap;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.ads-dashboard-mockup .control-item.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.campaign-list {
    margin-top: 1rem;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.campaign-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.campaign-status.active {
    background: #10b981;
}

.campaign-status.paused {
    background: #f59e0b;
}

.campaign-name {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.campaign-performance {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Additional Services Section */
.additional-services {
    padding: 6rem 0;
    background: white;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.additional-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.additional-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.additional-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.additional-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.additional-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Automation Section */
.automation {
    padding: 6rem 0;
    background: #f8fafc;
}

.automation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.automation-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.automation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.automation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.automation-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.workflow-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.workflow-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.workflow-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.workflow-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.workflow-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Automation Section */
.automation-section {
    padding: 4rem 0;
    background: white;
}

.automation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.automation-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.analytics-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.analytics-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.analytics-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.analytics-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Platforms Section */
.platforms {
    padding: 4rem 0;
    background: white;
}

.platforms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

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

.platform:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.platform i {
    font-size: 2rem;
    color: #667eea;
}

.platform img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.platform span {
    font-weight: 600;
    color: #1f2937;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 32px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin: 0;
}

/* Only apply white color to contact section on index page */
#contact .contact-info h2 {
    color: white !important;
}

#contact .contact-header h2 {
    color: white !important;
}

.contact-subtitle {
    color: #A855F7;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

/* Homepage Contact Forms - Match Contact Page Styling */
.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-form-container h3 {
    color: #1f2937;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.download-form-container {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.download-form-container h3 {
    color: #1f2937;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact,
.btn-download {
    background: #667eea;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-contact:hover,
.btn-download:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Data Science Section */
.data-science {
    padding: 80px 0;
    background: #f8fafc;
}

.data-science h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.model-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.model-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.model-icon i {
    font-size: 24px;
    color: #ffffff;
}

.model-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.model-card p {
    color: #666666;
    line-height: 1.6;
}

/* Automation Workflow Section */
.automation-workflow {
    padding: 80px 0;
    background: #ffffff;
}

.automation-workflow h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
}

.workflow-step {
    text-align: center;
    min-width: 120px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.step-content h4 {
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 14px;
}

.step-content p {
    color: #666666;
    font-size: 12px;
}

.workflow-arrow {
    font-size: 24px;
    color: #6B46C1;
    font-weight: bold;
}

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

.automation-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.automation-feature i {
    font-size: 24px;
    color: #6B46C1;
    margin-top: 5px;
}

.automation-feature h4 {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.automation-feature p {
    color: #666666;
    line-height: 1.6;
}

/* Tech Stack Section */
.tech-stack {
    padding: 80px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.tech-stack h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.tech-stack .section-subtitle {
    color: #cccccc;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.tech-category h3 {
    color: #6B46C1;
    margin-bottom: 25px;
    text-align: center;
}

.tech-items {
    display: grid;
    gap: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tech-item i {
    font-size: 20px;
    color: #6B46C1;
    width: 24px;
}

.tech-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tech-item span {
    color: #ffffff;
    font-weight: 500;
}

.tech-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
}

.benefit i {
    font-size: 32px;
    color: #6B46C1;
    margin-bottom: 20px;
}

.benefit h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit p {
    color: #cccccc;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: #f8fafc;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cases-table {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #667eea;
    color: #ffffff;
    font-weight: 600;
    padding: 20px;
}

.header-col {
    text-align: center;
    font-size: 16px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 20px;
    transition: background 0.3s ease;
}

.table-row:hover {
    background: #f8fafc;
}

.table-row:last-child {
    border-bottom: none;
}

.case-problem,
.case-solution,
.case-result {
    text-align: center;
    padding: 0 15px;
}

.case-problem h4,
.case-solution h4,
.case-result h4 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 16px;
}

.case-problem p,
.case-solution p,
.case-result p {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

.case-result h4 {
    color: #10b981;
    font-size: 20px;
    font-weight: 700;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.resource-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.magnet-text h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.resource-subtitle {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.magnet-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.guide-features-grid {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.feature-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.magnet-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-form-container {
    text-align: center;
}

.form-header {
    margin-bottom: 30px;
}

.download-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.download-form h3 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 24px;
}

.download-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.download-form input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    font-size: 16px;
    transition: all 0.3s ease;
}

.download-form input:focus {
    background: rgba(255, 255, 255, 1);
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

.download-form input::placeholder {
    color: #666666;
}

.btn-download {
    width: 100%;
    padding: 15px 30px;
    background: #A855F7;
    color: #1f2937;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-download:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.privacy-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

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

/* Service Overview */
.service-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-overview .overview-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.overview-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* Analytics Preview */
.analytics-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.preview-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* Audit Section */
.audit-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.audit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 700;
}

.audit-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.audit-benefits {
    display: grid;
    gap: 1rem;
}

.audit-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151 !important;
    list-style: none;
    padding: 0;
}

.audit-benefits li i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151 !important;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.audit-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 600;
}

.audit-deliverables {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.audit-deliverables li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.audit-deliverables li:before {
    content: "•";
    color: #fbbf24;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.audit-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Enhanced CTA Styles */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-button.cta-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    border: none;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.cta-button.cta-secondary {
    background: transparent;
    color: #1f2937;
    border: 2px solid #1f2937;
    box-shadow: none;
}

.cta-button.cta-secondary:hover {
    background: #1f2937;
    color: white;
}

.cta-guarantee {
    font-size: 0.9rem;
    color: #10b981;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

.results-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 2rem;
    font-style: italic;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Audit Section */
@media (max-width: 768px) {
    .audit-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
}

.benefit-item i {
    color: #fbbf24;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* Platform Cards */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.platform-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Platform features styling moved to lines 657-661 for div-based structure */

/* Use Cases Section */
.use-cases-section {
    padding: 4rem 0;
    background: white;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.use-case-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.use-case-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #6B46C1;
    margin-bottom: 0.5rem;
}

/* Page Hero Sections */
.services-hero, .analytics-hero, .service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero h1, .analytics-hero h1, .service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero p, .analytics-hero p, .service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Hero Components */
.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
}

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

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

.service-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 1rem 0;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    /* Force mobile-first approach */
    html {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .service-hero {
        margin-top: 80px;
        padding: 2rem 0 3rem;
        min-height: auto;
    }
    
    .services-hero,
    .analytics-hero {
        margin-top: 80px;
        padding: 2rem 0 3rem;
    }
    
    .service-hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        width: 100%;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .service-hero-description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    
    .service-hero-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .stat-item {
        flex: none;
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 1rem;
        text-align: center;
    }
    
    .service-hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .ads-dashboard-mockup {
        margin: 1.5rem auto;
        width: 100%;
        max-width: 100%;
        padding: 0.75rem;
        border-radius: 12px;
        transform: none;
        box-sizing: border-box;
    }
    
    .dashboard-header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0.75rem;
    }
    
    .dashboard-header h3 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .dashboard-controls {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .control-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: 70px;
        text-align: center;
        border-radius: 6px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .ads-dashboard-mockup .dashboard-metrics {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0.5rem;
        width: 100%;
    }
    
    .ads-dashboard-mockup .metric-card {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 1.2rem;
        margin: 0;
        border-radius: 10px;
        box-sizing: border-box;
    }
    
    .ads-dashboard-mockup .metric-value {
        font-size: 1.4rem;
        min-height: auto;
        line-height: 1.2;
    }
    
    .ads-dashboard-mockup .metric-label {
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .ads-dashboard-mockup .metric-change {
        font-size: 0.85rem;
    }
    
    .campaign-list {
        padding: 0.75rem 0.5rem;
        width: 100%;
    }
    
    .campaign-item {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .campaign-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .campaign-performance {
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Features grid mobile optimization */
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .feature-card {
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Service Details Section */
.service-details {
    padding: 4rem 0;
    background: white;
}

.service-overview {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-overview h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-overview p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.feature-list li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.feature-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .process-timeline::before {
        display: block;
    }
}

/* Removed conflicting process-step definition - using the main one at line 2695 */

/* Removed duplicate step-number definition - using the main one at line 2700 */

/* Process timeline specific styles (for Portuguese files) */
.process-timeline .process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.process-timeline .step-content {
    flex: 1;
    width: 100%;
}

.process-timeline .step-content h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-timeline .step-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.process-timeline .step-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.process-timeline .step-deliverables li {
    padding: 0.25rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.process-timeline .step-deliverables li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

@media (max-width: 767px) {
    .process-timeline .process-step {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .process-timeline .step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline .step-content h3 {
        margin-top: 0.5rem;
    }
    
    .process-timeline .step-deliverables {
        text-align: left;
        align-self: stretch;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.platform-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Platform features as list (for dashboard-development.html) */
.platform-card ul.platform-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.platform-card ul.platform-features li {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.2rem;
    text-align: left;
}

.platform-card ul.platform-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1rem;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Platforms Section */
.platforms-section {
    padding: 4rem 0;
    background: white;
}

.platforms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.platform-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.platform-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.platform-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Strategy Section */
.strategy-section {
    padding: 4rem 0;
    background: white;
}

.strategy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.strategy-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.strategy-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.strategy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.strategy-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: #1f2937;
    color: white;
}

.results-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Removed duplicate results-grid definition - keeping the main one below */

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #667eea;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.why-choose-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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



.benefit-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

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

/* Dashboard Showcase */
.dashboard-showcase {
    padding: 4rem 0;
    background: white;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.dashboard-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.dashboard-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-widget.wide {
    grid-column: span 2;
}

.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.widget-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.widget-change {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

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

.widget-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.widget-chart {
    margin-top: 1rem;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 40px;
    padding: 0 0.5rem;
}

.mini-chart .chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    min-height: 4px;
    transition: all 0.3s ease;
}

.mini-chart .chart-bar:hover {
    opacity: 0.8;
    transform: scaleY(1.1);
}

.conversion-funnel {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.funnel-stage {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.funnel-stage:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.roi-channels {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(3px);
}

.channel-name {
    font-weight: 600;
    color: #374151;
}

.channel-roi {
    font-weight: 700;
    color: #10b981;
    font-size: 1.1rem;
}

.product-performance {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: rgba(251, 191, 36, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

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

.product-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.product-category {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.product-metrics {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.25rem;
}

.product-metrics .metric {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.1rem;
}

.product-metrics .metric-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

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

.product-metrics .metric-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.dashboard-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.dashboard-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dashboard-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.dashboard-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.dashboard-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6B46C1;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

/* Legacy footer classes for backward compatibility */
.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-weight: 700;
}

.footer-brand p {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 0.8rem;
}

.footer-nav h4 {
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
}

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

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
/* Tech Stack Section */
.tech-stack-new {
    padding: 120px 0;
    background: #f8fafc;
}

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

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

.tech-header {
    text-align: center;
    margin-bottom: 80px;
}

.tech-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.tech-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.tech-category {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tech-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-category h3 i {
    color: #667eea;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #e5e7eb;
}

.tech-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.tech-item span {
    color: #374151;
    font-weight: 500;
}

/* Results Showcase Section */
.results-showcase {
    padding: 120px 0;
    background: white;
}

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

.results-header {
    text-align: center;
    margin-bottom: 80px;
}

.results-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers that don't support background-clip on results-showcase */
.results-showcase .results-header h2 {
    color: #3b82f6 !important;
}

@supports not (-webkit-background-clip: text) {
    .results-showcase .results-header h2 {
        color: #3b82f6 !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
}

.results-header p {
    font-size: 1.2rem;
    color: #1f2937;
    max-width: 600px;
    margin: 0 auto;
}

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

.result-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    display: block;
}

.result-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    display: block;
}

.result-card p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.result-problem {
    margin-bottom: 24px;
}

.result-problem h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 8px;
}

.result-problem p {
    color: #374151;
    line-height: 1.6;
}

.result-arrow {
    text-align: center;
    margin: 24px 0;
}

.result-arrow i {
    font-size: 1.5rem;
    color: #667eea;
}

.result-solution {
    margin-bottom: 24px;
}

.result-solution h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 8px;
}

.result-solution p {
    color: #374151;
    line-height: 1.6;
}

.result-outcome {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 2px solid #667eea;
}

.outcome-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    display: block;
    margin-bottom: 8px;
}

.outcome-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.outcome-detail {
    font-size: 0.9rem;
    color: #374151;
}

/* Blueprint Section */
.blueprint-section {
    padding: 120px 0;
    background: #7b68ee; /* Solid purple background */
    color: white;
}

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

.blueprint-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.blueprint-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.blueprint-info p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.blueprint-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blueprint-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.blueprint-feature i {
    color: #7b68ee;
    font-size: 1.2rem;
}

.blueprint-form {
    background: #ffffff; /* White background */
    border-radius: 20px;
    padding: 40px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333; /* Dark text for white background */
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.download-icon {
    font-size: 1.8rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #333; /* Dark text for white background */
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7b68ee;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(123, 104, 238, 0.2);
}

.blueprint-btn {
    width: 100%;
    padding: 18px;
    background: #7b68ee; /* Purple button */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blueprint-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
    background: #6a5acd; /* Slightly darker purple on hover */
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 16px;
    color: #6b7280;
}

/* Contact Section - New Design */
.contact-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
    font-size: 1.2rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-form .form-container {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-form .form-container h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.form-subtitle {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    transition: color 0.3s ease;
    position: relative;
}

.checkbox-label:hover {
    color: #667eea;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #f3f4f6;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label:hover .checkmark {
    border-color: #667eea;
    background-color: #f0f4ff;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

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

.contact-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: rgba(240, 240, 240, 0.95);
        margin: 0;
        border-radius: 8px;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin: 0.5rem 1rem;
        border-radius: 8px;
        padding: 0.5rem 0;
    }
    
    .dropdown-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        color: #0f172a;
        display: block;
        text-decoration: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-weight: 500;
        line-height: 1.4;
        transition: all 0.2s ease;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:hover {
        background-color: rgba(102, 126, 234, 0.1);
        color: #667eea;
    }
    
    .dropdown:hover .dropdown-menu:not(.mobile-active) {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
        padding: 24px 0;
    }
    
    .stat-item {
        padding: 16px 12px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .platform-content,
    .blueprint-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .tech-categories,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .analytics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 16px;
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* New sections responsive styles */
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .workflow-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .automation-features {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-benefits {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        padding: 20px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .case-problem::before {
        content: "Problem: ";
        font-weight: 600;
        color: #6B46C1;
    }
    
    .case-solution::before {
        content: "Solution: ";
        font-weight: 600;
        color: #6B46C1;
    }
    
    .case-result::before {
        content: "Result: ";
        font-weight: 600;
        color: #6B46C1;
    }
    
    .magnet-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resource-badge {
        justify-content: center;
    }
    
    .guide-features-grid {
        gap: 12px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .magnet-form {
        padding: 30px 20px;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .tech-benefits {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        padding: 20px;
        border-bottom: 2px solid #e2e8f0;
    }
    
    .case-problem::before {
        content: "Problem: ";
        font-weight: 600;
        color: #6B46C1;
    }
    
    .case-solution::before {
        content: "Solution: ";
        font-weight: 600;
        color: #6B46C1;
    }
    
    .case-result::before {
        content: "Result: ";
        font-weight: 600;
        color: #10b981;
    }
}

/* Animation styles */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    /* Improved touch targets */
    .control-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        user-select: none;
    }
    
    .metric-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Enhanced button interactions */
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Improved navigation for mobile */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Better spacing for mobile content */
    .service-details {
        padding: 3rem 0;
    }
    
    .features-grid {
        margin-top: 2rem;
    }
    
    /* Enhanced dashboard responsiveness */
    .ads-dashboard-mockup {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
    }
    
    .dashboard-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .dashboard-controls {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 0.5rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .ads-dashboard-mockup {
        margin: 1rem auto;
        padding: 0.5rem;
    }
    
    .control-item {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-width: 45px;
    }
    
    .metric-card {
        padding: 0.8rem 0.5rem;
    }
    
    .metric-value {
        font-size: 1.1rem !important;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .campaign-item {
        padding: 0.6rem;
    }
    
    .campaign-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Ultra-mobile optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    html {
        font-size: 14px;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }
    
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 1.5rem;
    }
    
    .services h2,
    .analytics-text h2,
    .automation h2,
    .platforms h2,
    .contact-info h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .service-hero {
        padding: 1.5rem 0 1rem;
        min-height: auto;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
        word-break: break-word;
    }
    
    .service-hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .service-hero-content {
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-hero-stats {
        gap: 0.75rem;
        margin: 1rem 0;
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
        min-width: auto;
        padding: 12px 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.3;
        font-weight: 500;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        max-width: 100%;
        min-height: 48px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .service-hero-cta {
        gap: 0.75rem;
        width: 100%;
    }
    
    .ads-dashboard-mockup {
        margin: 1rem auto;
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
        border-radius: 10px;
        box-sizing: border-box;
    }
    
    .dashboard-header {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .dashboard-header h3 {
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.2;
    }
    
    .dashboard-controls {
        gap: 0.4rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .control-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: 60px;
        min-height: 40px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .control-item:active {
        transform: scale(0.95);
    }
    
    .ads-dashboard-mockup .dashboard-metrics {
        padding: 0.75rem 0.25rem;
        gap: 0.75rem;
        display: flex;
        flex-direction: column;
    }
    
    .ads-dashboard-mockup .metric-card {
        width: 100%;
        padding: 0.9rem 0.6rem;
        max-width: none;
        border-radius: 8px;
        transition: all 0.2s ease;
        box-sizing: border-box;
    }
    
    .ads-dashboard-mockup .metric-card:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.25);
    }
    
    .ads-dashboard-mockup .metric-icon {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .ads-dashboard-mockup .metric-value {
        font-size: 1.2rem;
        min-height: auto;
        font-weight: 700;
        line-height: 1.1;
        margin: 0.25rem 0;
    }
    
    .ads-dashboard-mockup .metric-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        opacity: 0.8;
    }
    
    .ads-dashboard-mockup .metric-change {
        font-size: 0.75rem;
        font-weight: 600;
        margin-top: 0.25rem;
    }
    
    .campaign-list {
        padding: 0.5rem 0.25rem;
        width: 100%;
    }
    
    .campaign-item {
        padding: 0.75rem;
        border-radius: 6px;
        margin-bottom: 0.4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .campaign-name {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }
    
    .campaign-performance {
        font-size: 0.85rem;
        font-weight: 700;
        color: #10b981;
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 0.25rem;
        width: 100%;
    }
    
    .feature-card {
        width: 100%;
        padding: 1rem;
        border-radius: 10px;
        box-sizing: border-box;
        margin: 0;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin: 0.75rem 0 0.6rem;
        line-height: 1.2;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .feature-benefits {
        margin: 0;
        padding: 0;
    }
    
    .feature-benefits li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
        line-height: 1.3;
    }
    
    /* Service details section */
    .service-details {
        padding: 2rem 0;
    }
    
    .service-overview h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .service-overview p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Enhanced touch targets and accessibility */
    .service-hero-cta a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    /* Prevent horizontal scroll */
    .service-hero-visual,
    .ads-dashboard-mockup,
    .dashboard-metrics,
    .metric-card {
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
}

/* New Dashboard Preview Redesign Styles */
.dashboard-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.title-icon i {
    color: white;
    font-size: 1.1rem;
}

.title-text h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.dashboard-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.control-item {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.control-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.control-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card.revenue::before {
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.stat-card.conversions::before {
    background: linear-gradient(90deg, #ed8936, #dd6b20);
}

.stat-card.traffic::before {
    background: linear-gradient(90deg, #4299e1, #3182ce);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border: 1px solid #e2e8f0;
}

.revenue .stat-icon {
    background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
    color: #22543d;
}

.conversions .stat-icon {
    background: linear-gradient(135deg, #fed7cc, #fbb6ce);
    color: #744210;
}

.traffic .stat-icon {
    background: linear-gradient(135deg, #bee3f8, #90cdf4);
    color: #2a4365;
}

.stat-icon i {
    font-size: 1.1rem;
}

.stat-content {
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    display: inline-block;
}

.stat-change.positive {
    background: #c6f6d5;
    color: #22543d;
}

.stat-chart {
    margin-top: 1rem;
}

.mini-bars {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 24px;
}

.mini-bars span {
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 3px;
    flex: 1;
    min-height: 4px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.mini-bars span:hover {
    opacity: 1;
}

.conversion-progress {
    background: #e2e8f0;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ed8936, #dd6b20);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.traffic-indicator {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

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

.chart-header h4 {
    margin: 0;
    color: #2d3748;
    font-size: 1rem;
    font-weight: 700;
}

.chart-period {
    color: #718096;
    font-size: 0.75rem;
    font-weight: 500;
}

.channel-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel-row {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    align-items: center;
    gap: 1rem;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
}

.channel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.channel-dot.google {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.channel-dot.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.channel-dot.email {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
}

.channel-value {
    font-weight: 700;
    color: #667eea;
    font-size: 0.875rem;
    text-align: right;
}

.channel-bar {
    background: #f1f5f9;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Dashboard Types Section */
.dashboard-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dashboard-types-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.dashboard-types-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.dashboard-type-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dashboard-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

.dashboard-type-card:hover .type-icon {
    transform: scale(1.1);
}

.dashboard-type-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.dashboard-type-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.type-metrics {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

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

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

.metric-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

/* Responsive Design for New Dashboard */
@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .channel-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .title-text h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-types-section {
        padding: 60px 0;
    }
    
    .dashboard-types-section h2 {
        font-size: 2rem;
    }
    
    .dashboard-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-type-card {
        padding: 1.5rem;
    }
    
    .type-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkbox-group-inline {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Data Analysis Page - New Mobile-First Design */
.data-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.data-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-cta {
    margin-bottom: 4rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cta-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.data-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0.3;
}

.data-point {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

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

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.card-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Process Flow Section */
.process-flow {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.process-timeline .process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-timeline .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-timeline .step-content {
    flex: 1;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    margin: 0 2rem;
    position: relative;
}

.process-timeline .step-content:before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.process-timeline .process-step:nth-child(odd) .step-content:before {
    right: -20px;
    border-left-color: #f8fafc;
}

.process-timeline .process-step:nth-child(even) .step-content:before {
    left: -20px;
    border-right-color: #f8fafc;
}

.process-timeline .step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
}

.step-title {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

/* Removed duplicate result-card definition - conflicts with results-showcase */

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.result-description {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Paid Ads Page - New Mobile-First Design */
.ads-hero {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.ads-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: left;
}

.hero-visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ads-hero .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.ads-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ads-hero .gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ads-hero .hero-metrics {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ads-hero .metric {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    text-align: center;
    flex: 1;
    max-width: 180px;
    min-width: 160px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ads-hero .metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.ads-hero .metric-number {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.ads-hero .metric-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.ads-hero .cta-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.ads-hero .cta-primary:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Platforms Showcase */
.platforms-showcase {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

.platform-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--platform-color);
}

.platform-card.google:before {
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
}

.platform-card.facebook:before {
    background: linear-gradient(90deg, #1877f2, #42a5f5);
}

.platform-card.instagram:before {
    background: linear-gradient(90deg, #e4405f, #f77737, #fcaf45);
}

.platform-card.linkedin:before {
    background: #0077b5;
}

.platform-card.tiktok:before {
    background: linear-gradient(90deg, #ff0050, #000000);
}

.platform-card.microsoft:before {
    background: #00a4ef;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: var(--platform-color);
}

.platform-card.google .platform-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.platform-card.facebook .platform-icon {
    background: #1877f2;
}

.platform-card.instagram .platform-icon {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

.platform-card.linkedin .platform-icon {
    background: #0077b5;
}

.platform-card.tiktok .platform-icon {
    background: linear-gradient(135deg, #ff0050, #000000);
}

.platform-card.microsoft .platform-icon {
    background: #00a4ef;
}

.platform-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.platform-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.platform-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.platform-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* AI Intelligence Section */
.ai-intelligence {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.ai-intelligence .section-header h2 {
    color: transparent;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.ai-intelligence .section-header p {
    color: #e2e8f0;
}

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

.ai-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ai-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ai-feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Intelligence Grid Styles */
.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intelligence-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.intelligence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card-header h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    color: white;
}

.intelligence-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    justify-content: center;
}

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

.ai-intelligence .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ai-intelligence .stat-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-intelligence .feature-item i {
    color: #60a5fa;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-icon-img {
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Optimization Engine */
.optimization-engine {
    padding: 80px 0;
    background: white;
}

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

/* Engine Content Styles */
.engine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.engine-visual {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.optimization-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: bold;
}

.live-metrics {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.dashboard-card .metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.metric-unit {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.engine-info {
    padding: 2rem 0;
}

.engine-info h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.engine-info p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.engine-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #dc2626;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.optimization-content h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.optimization-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.optimization-features {
    list-style: none;
    padding: 0;
}

.optimization-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #374151;
}

.optimization-features li:before {
    content: "⚡";
    font-size: 1.2rem;
}

.optimization-visual {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.optimization-chart {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 200px;
    margin-bottom: 2rem;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, #dc2626, #f59e0b);
    border-radius: 4px 4px 0 0;
    position: relative;
    animation: growUp 2s ease-out;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 100%; }
.chart-bar:nth-child(4) { height: 90%; }
.chart-bar:nth-child(5) { height: 95%; }

@keyframes growUp {
    from { height: 0; }
    to { height: var(--final-height); }
}

.chart-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Performance Proof */
.performance-proof {
    padding: 80px 0;
    background: #f8fafc;
}

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

.proof-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.client-details h4 {
    font-size: 1.1rem;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.client-details span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.timeframe {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

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

.metric {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    min-width: 0;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

/* Positive metrics (green) */
.metric-value[data-type="positive"],
.metric-value:first-child {
    color: #059669;
}

/* Negative metrics (red) - for CPA, Cost reductions */
.metric-value[data-type="negative"] {
    color: #dc2626;
}

/* Default positive color for metrics starting with + */
.proof-metrics .metric:nth-child(1) .metric-value,
.proof-metrics .metric:nth-child(3) .metric-value {
    color: #059669;
}

/* Red color for cost reduction metrics (typically 2nd metric) */
.proof-metrics .metric:nth-child(2) .metric-value {
    color: #dc2626;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-quote {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    padding: 1rem 1rem 1rem 3.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    position: relative;
}

.proof-quote:before {
    content: '"';
    font-size: 1.75rem;
    color: #dc2626;
    position: absolute;
    top: 0.25rem;
    left: 1.25rem;
    font-weight: bold;
    line-height: 1;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.proof-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* Audit Offer */
.audit-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.offer-visual {
    display: flex;
    justify-content: center;
}

.audit-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.preview-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.preview-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-metric:last-child {
    border-bottom: none;
}

.metric-name {
    font-size: 0.9rem;
    opacity: 0.8;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.score-value {
    font-weight: 600;
    color: #fbbf24;
}

.lift-value {
    font-weight: 600;
    color: #10b981;
}

.waste-value {
    font-weight: 600;
    color: #ef4444;
}

.offer-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.offer-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.audit-includes {
    margin: 2rem 0;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.include-item i {
    color: #10b981;
    font-size: 1.2rem;
    width: 20px;
}

.offer-cta {
    margin-top: 2rem;
}

.offer-cta .cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.offer-cta .cta-primary:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.offer-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

/* Mobile Responsive Styles for Paid Ads */
@media (max-width: 768px) {
    .ads-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .ads-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .ads-hero .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ads-hero .hero-visual {
        margin-top: 2rem;
    }
    
    .ads-hero .performance-dashboard {
        justify-content: center;
        gap: 1rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card {
        padding: 2rem;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intelligence-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .optimization-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .engine-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .engine-visual {
        padding: 2rem;
    }
    
    .optimization-flow {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .metric-counter {
        font-size: 2rem;
    }
    
    .engine-info h2 {
        font-size: 2rem;
    }
    
    .engine-info p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proof-card {
        padding: 1.5rem;
    }
    
    .proof-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .client-info {
        width: 100%;
    }
    
    .timeframe {
        align-self: flex-end;
    }
    
    .proof-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .metric {
        padding: 0.75rem;
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
    
    .proof-quote {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .optimization-content h2 {
        font-size: 2rem;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .audit-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

/* Performance Dashboard Styles */
.performance-dashboard {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.metric-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.metric-trend.up {
    color: #059669;
}

.metric-trend.down {
    color: #dc2626;
}

.trend-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

/* AI Dashboard Mockup Styles */
.ai-dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ai-dashboard-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.ai-indicator {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #10b981, #06d6a0);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.performance-chart {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.chart-period {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.chart-visualization {
    position: relative;
    height: 120px;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.chart-grid {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.chart-line {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: calc(100% - 20px);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 4px;
}

.data-point {
    width: 16px;
    background: linear-gradient(to top, #10b981, #34d399);
    border-radius: 6px 6px 2px 2px;
    min-height: 12px;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    opacity: 1;
}

.data-point::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    border-radius: 8px 8px 4px 4px;
    z-index: -1;
}

.data-point:nth-child(1) { height: 25px; }
.data-point:nth-child(2) { height: 40px; }
.data-point:nth-child(3) { height: 55px; }
.data-point:nth-child(4) { height: 70px; }
.data-point:nth-child(5) { height: 80px; }
.data-point:nth-child(6) { height: 90px; }
.data-point:nth-child(7) { height: 100px; }

/* Animation removed to prevent disappearing bars */

.data-point:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 25px rgba(16, 185, 129, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.4);
}

.optimization-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.optimization-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.optimization-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.optimization-action {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.optimization-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive adjustments for AI Dashboard */
@media (max-width: 768px) {
    .ai-dashboard-mockup {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.trend-value {
    font-size: 1.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .performance-dashboard {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .dashboard-card {
        min-width: 200px;
        padding: 1.25rem;
    }
    
    .metric-trend {
        font-size: 1.1rem;
    }
    
    .trend-value {
        font-size: 1.1rem;
    }
}

.audit-offer h2 {
        font-size: 2rem;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .offer-visual {
        order: 2;
    }
    
    .offer-info {
        order: 1;
    }
    
    .audit-preview {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .preview-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .preview-metric {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .score-bar {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .offer-cta .cta-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

@media (max-width: 480px) {
    .ads-hero .hero-title {
        font-size: 2rem;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .optimization-chart {
        height: 150px;
    }
    
    .chart-bar {
         width: 30px;
     }
 }

.solution-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Process Flow */
.process-flow {
    padding: 80px 0;
    background: white;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    background: #e0f2fe;
    transform: translateX(10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-num {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.flow-connector {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    margin: 0 auto;
    opacity: 0.3;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.results-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .results-header h2 {
        color: #60a5fa !important;
        background: none !important;
    }
}

/* Removed duplicate .results-header p rule that was causing light text color conflict */

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Removed duplicate result-card definition - conflicts with results-showcase */

.result-metric {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #f1f5f9;
}

.result-time {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #cbd5e1;
}

.cta-final h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #f8fafc;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Mobile Responsive for Data Analysis */
@media (max-width: 768px) {
    .data-hero {
        padding: 120px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .data-hero .hero-visual {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .flow-step:hover {
        transform: translateY(-5px);
    }
    
    .flow-connector {
        display: none;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-metric {
        font-size: 2.5rem;
    }
    
    .cta-final h3 {
        font-size: 1.5rem;
    }
    
    .cta-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Dashboard Hero Section */
.dashboard-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dashboard-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

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

.dashboard-hero .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #60a5fa;
}

.dashboard-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.dashboard-hero .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.dashboard-hero .stat-item {
    text-align: center;
}

.dashboard-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dashboard-hero .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-hero .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-hero .cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.dashboard-hero .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.dashboard-hero .cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-hero .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Dashboard Preview */
.dashboard-hero .hero-visual {
    position: relative;
}

.dashboard-hero .dashboard-preview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-hero .dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-hero .preview-header {
    background: #f8fafc;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-hero .preview-controls {
    display: flex;
    gap: 0.5rem;
}

.dashboard-hero .control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-hero .control-dot.red { background: #ef4444; }
.dashboard-hero .control-dot.yellow { background: #f59e0b; }
.dashboard-hero .control-dot.green { background: #10b981; }

.dashboard-hero .preview-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.875rem;
}

.dashboard-hero .preview-content {
    padding: 1.5rem;
    color: #1e293b;
}

.dashboard-hero .metric-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-hero .metric-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.dashboard-hero .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.dashboard-hero .metric-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.dashboard-hero .metric-trend {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.dashboard-hero .metric-trend.up {
    color: #10b981;
}

.dashboard-hero .chart-area {
    height: 80px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: end;
}

.dashboard-hero .chart-bars {
    display: flex;
    gap: 0.5rem;
    align-items: end;
    height: 100%;
    width: 100%;
}

.dashboard-hero .chart-bar {
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 2px;
    flex: 1;
    min-height: 20%;
    animation: chartGrow 1s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height); }
}

/* Floating Elements */
.dashboard-hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.dashboard-hero .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
    min-width: fit-content;
}

.dashboard-hero .element-1 {
    top: 10%;
    right: 20px;
    animation-delay: 0s;
}

.dashboard-hero .element-2 {
    top: 60%;
    right: 40px;
    animation-delay: 1s;
}

.dashboard-hero .element-3 {
    bottom: 20%;
    right: 60px;
    animation-delay: 2s;
}

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

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.platforms-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.platforms-section .section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .dashboard-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .dashboard-hero h1 {
        font-size: 2.5rem;
    }
    
    .dashboard-hero .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .dashboard-hero .stat-item {
        min-width: 80px;
    }
    
    .dashboard-hero .stat-number {
        font-size: 1.75rem;
    }
    
    .dashboard-hero .stat-label {
        font-size: 0.75rem;
    }
    
    .dashboard-hero .hero-cta {
        justify-content: center;
    }
    
    .dashboard-hero .dashboard-preview {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .dashboard-hero .floating-elements {
        display: none;
    }
}

/* Platform Cards Styling */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.platform-card.featured::before {
    opacity: 1;
}

.platform-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.platform-icon.looker {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
}

.platform-icon.powerbi {
    background: linear-gradient(135deg, #f25022 0%, #ffb900 100%);
}

.platform-icon.bigquery {
    background: linear-gradient(135deg, #4285f4 0%, #0f9d58 100%);
}

.platform-icon.ga4 {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
}

.platform-icon.ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.platform-icon.custom {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.platform-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge:not(.enterprise):not(.data):not(.tracking) {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.platform-badge.enterprise {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
}

.platform-badge.data {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
}

.platform-badge.tracking {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.platform-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.platform-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.feature-item:hover {
    background: #e2e8f0;
    transform: translateX(4px);
}

.feature-item i {
    color: #3b82f6;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

/* Responsive Platform Cards */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .platform-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        justify-content: center;
    }
}

/* Dashboard Interactive Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced Dashboard Preview Styles */
.dashboard-preview {
    transition: all 0.3s ease;
    perspective: 1000px;
}

.dashboard-preview:hover .metric-card {
    animation-play-state: paused;
}

.metric-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-trend {
    transition: all 0.3s ease;
}

.metric-trend.up {
    color: #10b981;
}

.metric-trend.down {
    color: #ef4444;
}

/* Floating Elements Enhanced */
.floating-element {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.floating-element::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #3b82f6, #10b981, #f59e0b, #ef4444);
    background-size: 300% 300%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-element:hover::after {
    opacity: 0.3;
}

/* Platform Cards Enhanced Interactivity */
.platform-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    transition: all 0.3s ease;
}

.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Real-time Indicators */
.stat-item {
    position: relative;
}

.stat-item.real-time::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Modal Styles for Platform Details */
/* Duplicate modal styles removed - using primary definition above */

.detail-modal .modal-body {
    padding: 20px;
}

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

.capability-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.capability-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 0.9rem;
}

.capability-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tooltip Styles */
.floating-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-tooltip.show {
    opacity: 1;
}

/* Enhanced Chart Bars */
.chart-bar {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.6));
    border-radius: inherit;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .floating-element {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .detail-modal .modal-content {
        margin: 20px;
        max-width: calc(100vw - 40px);
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr !important;
    }
    
    .floating-tooltip {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}