:root {
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-teal: #14b8a6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-bg: #f8fafc;
    --text-main: #1e293b;
    --text-light: #f1f5f9;
    --text-muted: #64748b;
    --gradient-main: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-bg: linear-gradient(180deg, #e0f2fe 0%, #ccfbf1 100%);
    --font-main: 'Inter', sans-serif;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn-primary,
.btn-gradient,
.btn-dark {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-main);
    color: white;
}

.btn-gradient {
    background: var(--gradient-main);
    color: white;
}

.btn-dark {
    background: var(--darker-bg);
    color: white;
}

.btn-outline,
.btn-outline-light {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    transition: all 0.2s;
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: var(--text-main);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--darker-bg);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-group.centered {
    justify-content: center;
}

/* Navigation */
nav {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

nav .container {
    max-width: 1440px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .logo {
    margin-right: auto;
}

.nav-container .nav-links {
    margin-left: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    padding-top: 0;
    margin-top: 0;
    padding-top: 0.5rem;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.btn-nav {
    background: var(--text-main);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
}

/* Hero */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

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

.subheadline {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.dashboard-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Authority */
.authority {
    padding: 6rem 0;
    background: white;
}

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

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: #f1f5f9;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.btn-text {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

/* Framework (Dark) */
.framework {
    background: var(--dark-bg);
    padding: 6rem 0;
    color: white;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Trust */
.trust {
    padding: 6rem 0;
    background: white;
}

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

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

.icon-box {
    width: 64px;
    height: 64px;
    background: #fef9c3;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Split Layout Sections */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2rem;
}

.split-layout.reverse .image {
    order: -1;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.rounded {
    border-radius: 1rem;
}

.shadow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark Section */
.dark-section {
    background: var(--darker-bg);
    color: white;
}

.dark-section p {
    color: #94a3b8;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.link-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: var(--gradient-main);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

/* Footer */
footer {
    background: white;
    padding: 4rem 0 0;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary-blue);
}

.copyright {
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-grid,
    .split-layout,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile nav for now */
    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
        padding-top: 6rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .split-layout.reverse .image {
        order: 0;
    }
}

/* =========================================
   PROCESS PAGE STYLES
   ========================================= */

/* Process Hero */
.process-hero {
    padding: 10rem 0 6rem;
    background: white;
}

.subheadline-process-hero {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-placeholder-img {
    background: #f1f5f9;
    height: 400px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
}

/* Overview Snapshot */
.process-overview {
    padding: 4rem 0;
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.overview-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-icon-small {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.overview-step h4 {
    font-size: 0.875rem;
    margin: 0;
}

/* Deep Dive Steps */
.step-section {
    padding: 6rem 0;
}

.white-bg {
    background: white;
}

.grey-bg {
    background: #f8fafc;
}

.step-number-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.2;
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    margin: 1.5rem 0;
}

.step-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-list li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.step-img-placeholder {
    background: #e2e8f0;
    height: 300px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* Visual Flow */
.visual-flow {
    padding: 6rem 0;
    background: white;
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    min-width: 120px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* What's Included */
.whats-included {
    padding: 6rem 0;
    background: #f8fafc;
}

.included-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.icon-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

/* Social Proof */
.social-proof-process {
    padding: 4rem 0;
    background: #0f172a;
    color: white;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    opacity: 0.7;
}

/* Reporting */
.reporting-process {
    padding: 6rem 0;
    background: white;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-teal);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dashboard-mockup {
    background: #f1f5f9;
    height: 300px;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Integrations */
.integrations-process {
    padding: 6rem 0;
    background: white;
}

.integrations-grid-simple {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.int-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Final CTA */
.final-cta-process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   FREIGHT SEO PAGE STYLES
   ========================================= */

/* Hero SEO */
.hero-seo .highlight-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid var(--primary-blue);
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

/* Challenges Section */
.challenges {
    padding: 6rem 0;
}

.challenges-grid {
    gap: 1.5rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s;
}

.challenge-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.challenge-card p {
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.icon-box-small {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* How It Works & Reporting */
.how-it-works,
.reporting {
    padding: 6rem 0;
    background: white;
}

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

.card-simple h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-simple p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Link Building */
.link-building {
    padding: 6rem 0;
}

.content-max-width {
    max-width: 800px;
    margin-bottom: 3rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
}

.bg-light {
    background: #f8fafc;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-blue);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.team-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.mb-4 {
    margin-bottom: 4rem;
}
}

.integrations-grid-simple {
    grid-template-columns: repeat(3, 1fr);
}

.cta-actions {
    flex-direction: column;
}
}

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

    .integrations-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* About Hero */
.about-hero {
    padding: 10rem 0 6rem;
    background: white;
}

.highlight-purple {
    color: #7A3CFF;
}

.subheadline-about {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.image-collage {
    position: relative;
    height: 500px;
    width: 100%;
}

.collage-img {
    position: absolute;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.img-1 {
    width: 60%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-2 {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 10%;
    z-index: 2;
    border: 4px solid white;
}

.img-3 {
    width: 50%;
    height: 50%;
    top: 20%;
    right: 0;
    z-index: 3;
    border: 4px solid white;
}

/* About Process (Steps 1-3) */
.about-process {
    padding: 6rem 0;
    background: #f8fafc;
}

.subheadline-process {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

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

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon-glow {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.step-icon-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(122, 60, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
}

.process-step h3 {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Process Step 4 */
.process-step-4 {
    padding: 6rem 0;
    background: white;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #7A3CFF;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.step-icon-glow.large {
    font-size: 4rem;
    margin: 1.5rem 0;
}

.image-container-gradient {
    position: relative;
    padding: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #7A3CFF 100%);
    border-radius: 1rem;
}

.gradient-border-img {
    display: block;
    width: 100%;
    border-radius: calc(1rem - 4px);
}

/* About CTA */
.about-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #4c1d95 50%, #2563eb 100%);
    color: white;
}

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

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-main);
    transform: translateX(2rem);
}

.stat-card:nth-child(2) {
    transform: translateX(0);
}

.stat-card:nth-child(3) {
    transform: translateX(2rem);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #7A3CFF;
    min-width: 100px;
}

.stat-label {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Responsive Adjustments for About Page */
@media (max-width: 1024px) {
    .image-collage {
        height: 400px;
        margin-top: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-card,
    .stat-card:nth-child(2),
    .stat-card:nth-child(3) {
        transform: none;
    }
}

/* Hero Ads */
.hero-ads {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    padding: 12rem 0 12rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ads h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subheadline-ads {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-ads .btn-group {
    justify-content: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #93c5fd;
    font-weight: 500;
}

/* Authority Ads */
.authority-ads {
    padding: 6rem 0;
    background: white;
}

.subheadline-authority {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.authority-card {
    border: 1px solid #e2e8f0;
    text-align: center;
}

/* Pain Ads */
.pain-ads {
    padding: 6rem 0;
    background: #f1f5f9;
}

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

.pain-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-text-large {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

/* Process Ads */
.process-ads {
    padding: 6rem 0;
    background: white;
}

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

.step-box {
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Testimonials Ads */
.testimonials-ads {
    padding: 6rem 0;
    background: #0f172a;
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.author {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Included Ads */
.included-ads {
    padding: 6rem 0;
    background: #f8fafc;
}

.included-grid {
    gap: 4rem;
}

.included-col {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.col-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.icon-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

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

.check-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 800;
}

/* Reporting Ads */
.reporting-ads {
    padding: 6rem 0;
    background: #f1f5f9;
}

.reporting-card {
    text-align: center;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Team Ads */
.team-ads {
    padding: 6rem 0;
    background: white;
}

.team-card {
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

/* Pricing Ads */
.pricing-ads {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    border: 2px solid var(--primary-blue);
    max-width: 500px;
    margin: 2rem auto 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1rem 0;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.includes {
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer-text {
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Integrations Ads */
.integrations-ads {
    padding: 6rem 0;
    background: white;
}

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

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.integration-item:hover {
    opacity: 1;
}

.int-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Final CTA Ads */
.final-cta-ads {
    padding: 8rem 0;
    background: #0f172a;
    color: white;
}

.final-cta-ads p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.25rem;
}

/* Responsive Adjustments for Ads Page */
@media (max-width: 1024px) {
    .hero-ads h1 {
        font-size: 2.5rem;
    }

    .pain-grid,
    .process-steps,
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .pain-grid,
    .process-steps,
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICES PAGE STYLES
   ========================================= */

/* Services Hero */
.services-hero {
    padding: 12rem 0 8rem;
    background: white;
}

.subheadline-services {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 2rem auto 0;
    max-width: 700px;
}

/* Service Blocks */
.service-block {
    padding: 6rem 0;
}

.service-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.service-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.service-list li::before {
    content: "→";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-img-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    height: 350px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Final CTA Services */
.final-cta-services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
}

.final-cta-services p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}