:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-gold: #FFC107;
    --card-bg: #0a0a0a;
    --card-border: #222;
}

/* Internal Links Styling */
.internal-link {
    color: #FFC107;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.internal-link:hover {
    color: #FFD54F;
    border-bottom-color: #FFC107;
    text-decoration: none;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    /* Safari: prevent horizontal scroll / empty black space */
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
    /* Safari: prevent horizontal scroll */
    position: relative;
}

/* Top hero video strip */
.top-video-section {
    width: 100%;
    max-width: 1400px;
    margin: 6px auto 4px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #050505;
}

.top-video-player {
    display: block;
    width: 100%;
    margin-left: 0;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 769px) {
    .top-video-section {
        max-width: 760px !important;
        height: 220px !important;
    }

    .top-video-player {
        width: 100% !important;
        margin-left: 0 !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .top-video-section {
        border-radius: 14px;
        margin: 6px auto 4px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-video-player {
        width: auto;
        margin-left: 0;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
}

/* --- Hero Text Section --- */
.hero-content {
    text-align: center;
    margin-top: 4px;
    margin-bottom: 32px;
    padding: 32px 24px 40px;
    max-width: 1000px;
    width: 100%;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    background: var(--bg-color);
    border-radius: 24px;
    position: relative;
    overflow-x: hidden;
}

.trust-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #e0e0e0;
}

.stars {
    color: var(--accent-gold);
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 {
    white-space: normal;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
    transform: translateY(0);
}

/* Video interaction: gently pop headline and tint to gold */
.top-video-section:hover + .hero-content h1,
.top-video-section:active + .hero-content h1 {
    color: var(--accent-gold);
    transform: translateY(-4px) scale(1.015);
    text-shadow: 0 6px 18px rgba(255, 193, 7, 0.25);
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    padding: 0 20px;
}

.hero-cta-buttons .cta-button,
.hero-cta-buttons .schedule-consult-button {
    margin-top: 0;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    min-height: 44px;
    min-width: 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-cta-primary {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff;
}

.hero-cta-primary:hover {
    background: #f3f4f6 !important;
    color: #000000 !important;
    border-color: #f3f4f6;
}

.schedule-consult-button.hero-cta-secondary,
.hero-cta-buttons .schedule-consult-button:not(.hero-cta-primary) {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.hero-cta-buttons .schedule-consult-button:hover {
    background: rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}

p.sub-headline {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 1000px;   /* CHANGED: Increased width so sub-headline also has room */
    margin: 0 auto 0 auto;
    line-height: 1.5;
    white-space: normal; /* Keeps sub-headline flexible */
    text-align: center;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* --- Book a Free Demo (Schedule) Button --- */
.schedule-consult-button {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    padding: 18px 32px; /* Increased padding to make button bigger */
    border-radius: 50px;
    font-size: 18px; /* Increased font size */
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.schedule-consult-button:hover {
    background-color: #f3f4f6; /* Light gray on hover */
    transform: scale(1.05);
}

/* --- Calendar Container --- */
.calendar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Added dark background so you can focus on calendar */
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Reduced padding to allow box to be bigger */
    box-sizing: border-box;
}

.calendar-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px; /* CHANGED: Was 700px - Made much wider */
    height: 90vh;      /* ADDED: Forces box to take up 90% of screen height */
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;        /* CHANGED: Removed padding so calendar uses full edge-to-edge space */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;  /* Keeps corners rounded */
    display: flex;     /* ADDED: Helps iframe fill the space */
    flex-direction: column;
}

/* ADD THIS NEW BLOCK to force the calendar content to fill the big box */
.calendar-wrapper iframe {
    width: 100%;
    height: 100% !important; /* Forces iframe to fill the wrapper height */
    border: none;
    flex-grow: 1;
}

.close-calendar-button {
    position: absolute;
    top: 15px;
    right: 25px; /* Moved slightly to not cover scrollbar */
    background-color: #f0f0f0;
    color: #333333;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Added shadow to make button pop */
}

.close-calendar-button:hover {
    background-color: #e0e0e0;
}

/* --- Trust Section (Audit) --- */
.trust-section {
    max-width: 1100px;
    margin: 0 auto 20px auto;
    padding: 24px 24px 28px;
    text-align: center;
}

.trust-section h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.trust-metrics {
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-copy {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-logos {
    margin-top: 28px;
}

/* Trust logos - aligned row with subtle scroll animation */
.trust-section .logo-grid.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px 16px;
    overflow-x: visible;
}

.trust-section .logo-card {
    width: 110px;
    height: 110px;
    animation: logo-float 6s ease-in-out infinite;
}

.trust-section .logo-card:nth-child(1) { animation-delay: 0s; }
.trust-section .logo-card:nth-child(2) { animation-delay: 0.5s; }
.trust-section .logo-card:nth-child(3) { animation-delay: 1s; }
.trust-section .logo-card:nth-child(4) { animation-delay: 1.5s; }
.trust-section .logo-card:nth-child(5) { animation-delay: 2s; }

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

/* --- Services Points List --- */
.services-points-section {
    max-width: 1200px;
    margin: 0 auto 20px auto;
    padding: 16px 20px 20px;
}

.services-points-layout {
    margin-top: 24px;
}

.services-slideshow {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 340px;
    border-radius: 32px;
    overflow: hidden;
    background: #0d0d0d;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.services-slideshow .slideshow-inner {
    min-height: 340px;
}

.services-points-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.services-points-intro {
    color: #a8a8a8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

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

.services-points-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #b0b0b0;
    line-height: 1.6;
}

.services-points-list li:last-child {
    border-bottom: none;
}

.services-points-list li strong {
    color: #ffffff;
}

.industries-points-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.industries-points-list li {
    padding: 10px 0;
    color: #a0a0a0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1rem;
}

.industries-points-list .industry-icon {
    flex-shrink: 0;
    width: 5em;
    height: 5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 5em size for visibility */
}

.industries-points-list .industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.industries-points-list li a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.industries-points-list li a:hover {
    text-decoration: underline;
}

.industries-section.industries-points {
    padding: 16px 24px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.industries-section.industries-points h2 {
    margin-bottom: 6px;
}

.industries-section.industries-points .section-subtitle {
    margin-bottom: 8px;
}

.industries-section.industries-points .section-intro {
    margin-bottom: 16px;
}

/* --- Legacy Services Tabs (kept for fallback) --- */
.services-tabs-section {
    max-width: 1100px;
    margin: 0 auto 32px auto;
    padding: 32px 24px 40px;
    background: linear-gradient(180deg, rgba(255,193,7,0.05) 0%, transparent 55%);
    border-radius: 24px;
}

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

.services-tabs-header h2 {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.services-tabs-intro {
    color: #a8a8a8;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 32px auto;
}

.services-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.service-tab-btn {
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.service-tab-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    border-color: rgba(255,255,255,0.18);
}

.service-tab-btn.active {
    background: rgba(255,193,7,0.12);
    border-color: rgba(255,193,7,0.35);
    color: var(--accent-gold);
}

.services-tab-panels {
    position: relative;
}

.service-tab-panel {
    display: none;
    animation: fadeIn 0.35s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-panel-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 36px 44px;
}

.service-panel-card h3 {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-subtitle {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-desc {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 32px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 700px) {
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

.service-feature-item {
    padding: 20px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.service-feature-item:hover {
    background: rgba(255,193,7,0.06);
    border-color: rgba(255,193,7,0.15);
}

.service-feature-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,193,7,0.15);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 12px;
}

.service-feature-item h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-feature-item p {
    color: #909090;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.service-cta-link {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,193,7,0.4);
    transition: all 0.2s ease;
}

.service-cta-link:hover {
    color: #FFD54F;
    border-bottom-color: var(--accent-gold);
}

/* --- Audit Content Sections --- */
/* --- Industries We Serve & How It Works --- */
.section-header-block {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px auto;
    padding: 0 20px;
}

.section-header-block h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-intro {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.65;
}

.industries-section,
.how-it-works-section {
    max-width: 1400px;
    margin: 0 auto 20px auto;
    padding: 20px 20px 24px;
}

.industries-section {
    background: linear-gradient(180deg, rgba(255,193,7,0.06) 0%, transparent 60%);
    border-radius: 20px;
}

.how-it-works-section {
    background: linear-gradient(180deg, rgba(255,193,7,0.04) 0%, transparent 70%);
    border-radius: 20px;
}

/* How It Works: 2 columns – steps | phone */
.how-it-works-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    margin-top: 32px;
    align-items: center;
    padding: 28px 32px;
    overflow-x: hidden;
    min-width: 0;
}

/* Left column: 4 step cards stacked vertically */
.how-it-works-layout .process-steps-grid {
    min-width: 0;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, auto);
    gap: 16px;
    align-items: stretch;
}

/* Phone column */
.how-it-works-phone {
    width: 300px;
    height: 600px;
    z-index: 5;
    position: relative;
    margin: 0 auto;
    border-radius: 20px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.how-it-works-phone iframe {
    width: 100%;
    flex: 1;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

.industry-card {
    display: block;
    padding: 24px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.industry-card:hover {
    background: rgba(255,193,7,0.08);
    border-color: rgba(255,193,7,0.25);
    transform: translateY(-2px);
}

.industry-card h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.industry-card:hover p {
    color: #c0c0c0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

    .how-it-works-layout {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .how-it-works-layout .process-steps-grid {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
    }

    /* Reset stagger offsets on tablet */
    .hiw-reviews-col:first-of-type > .hiw-review-card:first-child {
        margin-top: 0;
        position: static;
        left: 0;
    }
    .hiw-reviews-col:first-of-type > .hiw-review-card:nth-child(2) {
        margin-top: 0;
    }
    .hiw-reviews-col:last-of-type > .hiw-review-card:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    /* Hide review columns on mobile to keep layout clean */
    .hiw-reviews-col {
        display: none !important;
    }

    .how-it-works-layout {
        grid-template-columns: 1fr;
    }

    .how-it-works-layout .process-steps-grid {
        grid-column: 1;
        grid-template-columns: 1fr !important;
    }

    /* Phone demo iframe — hidden on small screens to save space and avoid layout issues */
    .how-it-works-phone {
        display: none !important;
    }
}

.process-step-card {
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    position: relative;
}

.process-step-badge {
    display: inline-block;
    background: rgba(255,193,7,0.15);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 7px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.process-step-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step-card p {
    color: #a0a0a0;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

.audit-content-section {
    max-width: 900px;
    margin: 0 auto 32px auto;
    padding: 0 20px;
}

.audit-content-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 16px 0;
}

.audit-content-section h2:first-child {
    margin-top: 0;
}

.audit-content-section h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.audit-content-section p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 16px;
}

.audit-feature-list,
.audit-industry-list,
.audit-process-list {
    color: #a0a0a0;
    line-height: 1.7;
    margin: 16px 0 24px 0;
    padding-left: 24px;
}

.audit-feature-list li,
.audit-industry-list li,
.audit-process-list li {
    margin-bottom: 12px;
}

.audit-cta-section {
    text-align: center;
    max-width: 800px;
    margin: 32px auto 48px auto;
    padding: 0 20px;
}

.audit-cta-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.audit-cta-section p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-trust-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 16px !important;
}

/* --- Visual Container (5-column: 2 col image, 3 col text) --- */

.visual-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 40px 0;
    padding: 40px 48px 50px 48px;
    overflow: visible;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border-radius: 24px;
}

.visual-container-five-col {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.visual-container-image {
    position: relative;
    min-width: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 20px;
}

/* 1. Features List Styling */
.hero-features-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    text-align: left;
    padding: 0;
    max-width: 900px;
}

.hero-feature-item {
    padding: 20px 24px;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.hero-feature-item:hover {
    background: rgba(255,255,255,0.03);
}

.hero-feature-item h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-feature-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hero-feature-item:hover h3::after {
    width: 100%;
    background: linear-gradient(90deg, #00b4d8, rgba(0,180,216,0.3));
}

.hero-feature-item p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* 2. Reviews – all 4 on one side */
.hero-reviews-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.hero-reviews-col .hero-review-card {
    margin-top: 0 !important;
    left: 0 !important;
}

.hero-review-card {
    background: linear-gradient(145deg, rgba(15,18,25,0.95) 0%, rgba(10,10,10,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}

.hero-review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,180,216,0.3);
    box-shadow: 0 8px 32px rgba(0,180,216,0.08);
}

.review-text {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    color: #d0d0d0 !important;
    margin: 0 !important;
}

/* Hero static image (Agent Settings) – 1/3 column */
.hero-static-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    margin: 0 0 0 16px;
    border-radius: 32px;
    overflow: hidden;
    background: #0d0d0d;
    box-shadow: 8px 0 60px rgba(0,0,0,0.5), 0 8px 40px rgba(0,0,0,0.4);
}
.hero-static-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center center;
    border-radius: 32px;
}


.slideshow-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 1;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 32px;
}

/* Co-Founders Box */
.co-founders-box {
    background-color: #0a0a0a;
    border: 1px solid #FFC107; /* Gold border matching review boxes */
    border-radius: 12px;
    padding: 12px 15px;
    margin-top: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.5);
    width: 100%;
    box-sizing: border-box;
}

.co-founders-text {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #e0e0e0;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

/* --- Floating Widget (Bottom Right) --- */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 130px;
    height: 65px;
    background: white;
    border-radius: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 100;
}

.widget-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.widget-icon-left {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Simplified blue gradient icon representation */
    background: radial-gradient(circle at 30% 30%, #4facfe, #00f2fe); 
    margin-right: 8px;
}

/* --- Responsive: Stack vertically on smaller screens --- */
@media (max-width: 1200px) {
    .visual-container {
        max-width: 100%;
        padding: 40px 24px 50px 24px;
    }
}

@media (max-width: 768px) {
    .visual-container {
        text-align: center;
        border-radius: 20px;
        padding: 20px;
        max-width: 100%;
        margin: 0 0 40px 0;
    }
}

/* --- Redesigned Split Features Section --- */
.split-features-section {
    background-color: #000000;
    padding: 40px 20px 80px 20px; /* Reduced top padding from 80px to 40px to move section higher */
    display: flex;
    flex-direction: column;
    gap: 120px; /* Gap between Part A and Part B */
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: prevent horizontal scroll */
    max-width: 1400px;
    margin: 0 auto;
}

/* Common Section Title */
.section-title-block {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.section-title-block h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.section-title-block h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 10px 0 0 0;
    opacity: 0.9;
}

/* Row Layout */
.split-row {
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center;
    gap: 60px; /* Space between Image and Points */
    width: 100%;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

/* --- Visual Side (Image) --- */
.split-visual-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom styling for the tall phone image container */
.feature-img-placeholder.tall {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    justify-content: center;
}

.feature-img-placeholder.tall img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

/* --- PART B SPECIFIC FIXES --- */
/* 1. Move the points list a bit to the right in Part B */
.split-row.reverse .split-list-side {
    margin-left: 50px; /* Adjust this value to move it more or less */
}

/* 2. Image Carousel Styling */
.feature-img-placeholder.wide {
    width: 100%;
    max-width: 600px; 
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
    position: relative; /* Needed so images can stack inside */
    background-color: #0a0a0a; /* Background color for empty space when using contain */
}

/* Style for all images in the carousel */
.carousel-img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Show full image without cropping */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.8s ease-in-out; /* Smooth fade transition */
    display: block;
}

/* The first image sets the container height (relative positioning) */
.carousel-img:first-child {
    position: relative;
    opacity: 0; /* Hidden but maintains height for container */
}

/* All other images are absolutely positioned on top */
.carousel-img:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; /* Match container height set by first image */
    object-fit: contain;
}

/* The image that is currently visible */
.carousel-img.active {
    opacity: 1;
}

/* If first child is active, keep it relative */
.carousel-img:first-child.active {
    position: relative;
}

/* --- Carousel + Text Section (after phone) --- */
.carousel-text-section {
    padding: 32px 24px 48px;
    gap: 0;
}

.carousel-text-section .split-row {
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered text layout (no carousel) */
.carousel-text-centered .split-row {
    display: block;
}

.split-list-centered {
    text-align: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.split-list-centered h2,
.split-list-centered p,
.split-list-centered .split-cta-link {
    text-align: center;
}

.split-list-centered .split-feature-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    list-style: disc;
    list-style-position: inside;
}

.split-list-centered .split-feature-list li {
    text-align: center;
    padding-left: 0;
}

.split-list-centered .split-feature-list li::before {
    display: none;
}

.split-list-centered .split-feature-list li::marker {
    color: var(--accent-gold);
}

.carousel-text-section .split-visual-side {
    flex: 1;
    min-width: 0;
}

.carousel-text-section .feature-img-placeholder.wide {
    max-width: 480px;
    margin: 0 auto;
}

.carousel-text-section .split-list-side h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.carousel-text-section .split-list-side p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

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

.split-feature-list li {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.split-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.split-cta-link {
    display: inline-block;
    margin-top: 24px;
    font-weight: 600;
}

/* --- Points List Side (Styled like Hero Section) --- */
.split-list-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between points */
    padding: 20px;
}

/* Reusing/Adapting the Hero Item Style for this section */
.feature-item-styled {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.feature-item-styled h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    width: fit-content;
}

/* The Underline Effect */
.feature-item-styled h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #333; /* Default gray */
    transition: background-color 0.3s ease;
}

.feature-item-styled:hover h3::after {
    background-color: #00b4d8; /* Hover Blue */
}

.feature-item-styled p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Responsive */
@media (max-width: 900px) {
    .split-row, .split-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .carousel-text-section .split-list-side {
        text-align: center;
    }
    
    .feature-item-styled {
        align-items: center; /* Center points on mobile */
    }
    
    .feature-item-styled p {
        max-width: 100%;
    }
    .section-title-block h2 {
        font-size: 2.2rem;
    }
}

/* Horizontal Feature Card Style (Updated with Paragraph) */
.horizontal-card {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start; /* Important for icon alignment */
    gap: 20px;
    transition: all 0.3s ease;
}

.horizontal-card:hover {
    border-color: #00b4d8;
    background-color: #0f1012;
}

.card-icon-small {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #00b4d8;
    margin-top: 3px; /* Align with line-height of heading */
}

.card-text-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-text-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.card-text-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .split-row, .split-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .split-visual-side {
        width: 100%;
        padding: 25px;
    }
    .split-visual-side h2 {
        font-size: 1.8rem;
    }
}
/* --- Integrations Section (Large Icons, Minimal Gap) --- */
.integrations-section {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: prevent horizontal scroll */
    overflow-y: visible;
}

.integrations-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 500;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.3;
}

.logo-grid {
    display: flex;
    flex-direction: row; /* Horizontal row */
    flex-wrap: nowrap; /* Don't wrap to next line */
    justify-content: center; /* Center the content */
    align-items: center;
    
    /* Minimal gap between items */
    gap: 5px; 
    
    width: 100%;
    max-width: 1400px; /* Limit max width for centering */
    margin: 0 auto; /* Center the grid container */
    overflow-x: auto; /* Enable horizontal scroll if needed */
    padding: 10px 40px 10px 60px; /* Uneven padding: more on left, less on right */
    
    /* Hide Scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on mobile */
}

.logo-grid::-webkit-scrollbar { 
    width: 0;
    height: 0;
    display: none; 
}

.logo-card {
    /* Significantly Increased Size */
    width: 130px; 
    height: 130px; 
    
    background-color: #050505;
    border: 1px solid #222;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, border-color 0.2s;
    
    /* Prevent shrinking */
    flex-shrink: 0; 
}

.logo-card:hover {
    border-color: #00b4d8; /* Bright Cyan/Blue Border - same as DNA cards */
    transform: translateY(-7px); /* Lift up slightly - same as DNA cards */
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.15); /* Blue Glow Shadow - same as DNA cards */
    z-index: 2; /* Bring to front on hover */
}

.logo-card img {
    /* Increased Image Size */
    width: 85px; 
    height: 85px; 
    object-fit: contain;
}

/* Smaller images for specific logos */
.logo-card img[alt="Google Calendar"],
.logo-card img[alt="Gmail"],
.logo-card img[alt="Outlook"],
.logo-card img[alt="Facebook"] {
    width: 60px;
    height: 60px;
}

/* Larger images for specific logos */
.logo-card img[alt="Calendly"],
.logo-card img[alt="HubSpot"],
.logo-card img[alt="WhatsApp"],
.logo-card img[alt="Salesforce"] {
    width: 100px;
    height: 100px;
}

/* Responsive: Slightly smaller on mobile but still large */
@media (max-width: 768px) {
    .logo-card {
        width: 90px;
        height: 90px;
    }
    .logo-card img {
        width: 60px;
        height: 60px;
    }
    /* Smaller images for specific logos on mobile */
    .logo-card img[alt="Google Calendar"],
    .logo-card img[alt="Gmail"],
    .logo-card img[alt="Outlook"],
    .logo-card img[alt="Facebook"] {
        width: 45px;
        height: 45px;
    }
    
    /* Larger images for specific logos on mobile */
    .logo-card img[alt="Calendly"],
    .logo-card img[alt="HubSpot"],
    .logo-card img[alt="WhatsApp"],
    .logo-card img[alt="Salesforce"] {
        width: 70px;
        height: 70px;
    }
    .integrations-section h2 {
        font-size: 2rem;
    }
}

/* See More Link for Integrations */
.integrations-see-more {
    margin-top: 40px;
    text-align: center;
}

.see-more-link {
    display: inline-block;
    color: #00b4d8;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #00b4d8;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.see-more-link:hover {
    background-color: rgba(0, 180, 216, 0.1);
    border-color: #00a1e0;
    color: #00a1e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .see-more-link {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

/* --- Get Started Section --- */
.get-started-section {
    background-color: #000000;
    padding: 15px 20px; /* 15px gap between sections */
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: prevent horizontal scroll */
}

.get-started-section h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px; /* Fixed width for consistency */
    text-align: center; /* Center all text */
}

.step-image-container {
    width: 200px; /* Fixed width for all images */
    height: 200px; /* Fixed height for all images */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden; /* Hide overflow to crop white corners */
    padding: 0;
    position: relative;
}

.step-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keep aspect ratio, fit within container */
    transform: scale(1);
    clip-path: inset(3px); /* Crop 3px from all sides */
}

/* Remove white corner lines from Step 2 */
.step-card:nth-child(2) .step-image-container {
    border-radius: 12px; /* Round corners to hide white lines */
    background-color: transparent; /* Transparent background */
}

.step-card:nth-child(2) .step-image-container img {
    border-radius: 12px; /* Round image corners */
}

.step-label {
    color: #339af0; /* Cyan/Blue shade */
    font-size: 1.1rem; /* Uniform size */
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.step-card h3 {
    color: #ffffff;
    font-size: 1.3rem; /* Uniform size */
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.step-card p {
    color: #a0a0a0;
    font-size: 0.95rem; /* Uniform size */
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .step-image-container {
        width: 180px; /* Slightly smaller on mobile */
        height: 180px;
    }
    
    .step-label {
        font-size: 1rem;
    }
    
    .step-card h3 {
        font-size: 1.2rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: #000000;
    padding: 15px 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: prevent horizontal scroll */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.pricing-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    max-width: 1300px;
    width: 100%;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.pricing-card {
    background-color: #0f1219;
    border-radius: 20px;
    overflow: hidden;
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
    /* Optional: Add a subtle shadow for depth instead of a border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    /* Removed border-color change */
    transform: translateY(-5px);
    /* Optional: Increase shadow on hover */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.price-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.price-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-tag {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.price-note {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start; /* Aligns checkmark with top of text */
    gap: 12px;
    color: #e5e7eb;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Custom Green Checkbox */
.checkmark {
    min-width: 20px;
    height: 20px;
    background-color: #10b981; /* Green color */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px; /* slight adjustment */
}

.checkmark svg {
    width: 14px;
    height: 14px;
    color: white;
}

.select-btn {
    background-color: #3b82f6; /* Bright Blue */
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    min-width: 220px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: stretch;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

/* Responsive: stack pricing cards on smaller screens */
@media (max-width: 1024px) {
    .pricing-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .pricing-card {
        flex: 1 1 320px;
        max-width: 450px;
    }
}

/* --- Video Demo Section --- */
.video-section {
    background-color: #000000;
    padding: 15px 20px; /* 15px gap between sections */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    max-width: 1600px; /* Increased from 1000px to make video much larger */
    width: 100%;
    border-radius: 20px; /* Matches the rounded look of your other cards */
    overflow: hidden; /* Ensures the video corners are actually rounded */
    border: 1px solid #222; /* Subtle border to define it against the black background */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); /* Adds a nice shadow for depth */
}

/* Demo section only — do not use global `video` min-height (breaks hero mascot clip) */
.video-container video {
    width: 100%;
    height: auto;
    display: block; /* Removes extra space below the video */
    min-height: 500px; /* Ensures video has a substantial height */
}

/* --- Core DNA Section --- */
.dna-section {
    background-color: #000000;
    padding: 15px 20px; /* 15px gap between sections */
    margin-top: 36px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: prevent horizontal scroll */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dna-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dna-header h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.dna-header p {
    color: #e0e0e0;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
}

.dna-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px; /* Wider to fit 5 cards */
    flex-wrap: wrap;
}

.dna-card {
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 200px;
    max-width: 260px;
    min-height: 320px;
    /* Add transition for smooth animation */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* --- HOVER EFFECT --- */
.dna-card:hover {
    border-color: #00b4d8; /* Bright Cyan/Blue Border */
    transform: translateY(-7px); /* Lift up slightly */
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.15); /* Blue Glow Shadow */
    background-color: #050505; /* Slightly darker background */
}

/* Optional: Make the icon pop slightly on hover too */
.dna-card:hover .dna-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.4));
    transition: all 0.3s ease;
}

.dna-icon {
    margin-bottom: 20px;
    color: #00b4d8; /* Cyan color */
    width: 40px;
    height: 40px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.dna-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.dna-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive: Stack on mobile */
@media (max-width: 1024px) {
    .dna-header {
        flex-direction: column;
        gap: 10px;
    }
    .dna-header h2 {
        font-size: 2.5rem;
    }
    .dna-header p {
        font-size: 1rem;
    }
    .dna-grid {
        justify-content: center;
    }
    .dna-card {
        max-width: 300px; /* Slightly wider on tablet/mobile when stacked */
        min-height: auto;
    }
}

/* --- FAQ Section --- */
/* Blog Section */
.blog-section {
    background-color: #000000;
    padding: 40px 20px;
    margin-top: 36px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: contain horizontal scroll to blog strip only */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-container {
    max-width: 1200px;
    width: 100%;
}

.blog-section h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
}

.blog-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #FFC107 #1a1a1a;
}

.blog-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.blog-scroll-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.blog-scroll-container::-webkit-scrollbar-thumb {
    background: #FFC107;
    border-radius: 4px;
}

.blog-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #FFD54F;
}

.blog-tile {
    background-color: #0a0a0a;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 380px;
}

.blog-tile:hover {
    transform: translateY(-5px);
    border-color: #FFC107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-tile:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Responsive Blog Section */
@media (max-width: 968px) {
    .blog-tile {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 36px 20px;
        margin-top: 36px;
    }
    
    .blog-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .blog-tile {
        flex: 0 0 calc(85% - 15px);
        min-width: 280px;
    }
    
    .blog-thumbnail {
        height: 180px;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-description {
        font-size: 0.9rem;
    }
}

.faq-section {
    background-color: #000000;
    padding: 15px 20px; /* 15px gap between sections */
    margin-top: 36px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Safari: prevent horizontal scroll */
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container {
    max-width: 1100px; /* CHANGED: Increased width to make questions longer */
    width: 100%;
}

.faq-section h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: left; /* Aligns with the layout in screenshot */
}

/* The "Autonomous Agents" Tab container */
.faq-tabs {
    /* CHANGED: Removed 'border-bottom' to delete the thin line running across */
    margin-bottom: 30px;
    display: flex;
}

.faq-tab-active {
    color: #ffffff;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: -1px; /* Overlaps the bottom border */
}

/* FAQ Accordion Items */
.faq-item {
    background-color: transparent;
    border: 1px solid #333;
    margin-bottom: 15px; /* Spacing between boxes */
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #0a0a0a;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.faq-icon {
    color: #ffffff;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    padding-bottom: 25px;
    margin: 0;
}

/* Active state for answer */
.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on content */
}

/* --- Footer Section --- */
.footer-section {
    background: linear-gradient(to top, rgba(15, 18, 25, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 20px 40px 20px;
    margin-top: 36px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-content {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #00b4d8; /* Cyan hover effect */
    text-decoration: underline;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 24px;
    height: 24px;
}

.footer-social-icon:hover {
    color: #1877f2; /* Facebook blue */
    transform: scale(1.1);
}

.copyright {
    color: #ffffff; /* Matching the white from screenshot */
    font-size: 0.95rem;
    background-color: #0056b3; /* Dark blue background highlight from screenshot selection */
    padding: 2px 5px; /* Padding to mimic the selection highlight in your image */
    /* Note: If you don't want the blue highlight box, remove background-color and padding */
}

/* Remove the blue highlight for the final production version if you prefer clean text */
.copyright-clean {
    color: #ffffff;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================

   MOBILE OPTIMIZATION ADD-ONS

   Add this to the very bottom of index.css

   ========================================= */

@media (max-width: 900px) {
    /* Visual container 5-col: stack image above features */
    .visual-container-five-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .visual-container-image {
        order: 1;
        max-width: 360px;
        margin: 0 auto;
    }
    .visual-container-five-col .hero-features-list {
        order: 2;
    }

    /* 1. Reset any floating card positions so they stack cleanly */
    .hero-reviews-col .hero-review-card {
        margin-top: 0 !important;
        left: 0 !important;
        position: static !important;
        transform: none !important;
    }

    /* 2. Fix Video height - prevent it from being huge on small screens */
    video {
        min-height: auto !important;
    }
}

/* Small laptop: prevent scrollbar in hero heading */
@media (max-width: 1400px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    }
}

@media (max-width: 768px) {
    /* 3. Typography: Resize huge headlines for phone screens */
    h1 {
        font-size: 2.4rem; /* Reduced from 3.5rem */
        padding: 0 10px;
    }
    
    .hero-content h1 {
        white-space: normal; /* Allow wrapping on mobile */
    }
    
    p.sub-headline {
        white-space: normal; /* Allow wrapping on mobile */
    }

    .section-title-block h2, 
    .get-started-section h2, 
    .pricing-header h2, 
    .dna-header h2, 
    .faq-section h2 {
        font-size: 1.8rem; /* Reduced from 3rem */
    }

    /* 4. Hero & Button Adjustments */
    .hero-content {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    /* Buttons same size as laptop – no width override */
    .hero-cta-buttons .cta-button,
    .hero-cta-buttons .schedule-consult-button {
        width: auto;
        min-width: 240px;
    }

    /* 5. Phone Demo Scaling */
    /* Shrinks the phone slightly so it doesn't touch screen edges */
    .phone-iframe-wrapper {
        transform: scale(0.9); 
        margin: -20px auto 0 auto; /* Pull it up slightly */
    }

    /* 6. Pricing Cards */
    /* Allow cards to fit on narrow screens */
    .pricing-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* 7. Calendar Popup Mobile Fixes */
    .calendar-wrapper {
        height: 85vh;
        width: 95%;
    }
    
    .close-calendar-button {
        top: -15px;
        right: -5px;
        background-color: #fff;
        color: #000;
        width: 35px;
        height: 35px;
        font-size: 24px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    /* 8. Integrations Scroll Fix */
    /* Ensure padding is balanced for horizontal scrolling */
    .logo-grid {
        padding: 10px 20px; 
        justify-content: flex-start; /* Aligns left so scroll works naturally */
    }
}

@media (max-width: 480px) {
    /* 9. Ultra-small Screen (iPhone SE, etc) tweaks */
    h1 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        white-space: normal; /* Allow wrapping on small mobile */
    }
    
    p.sub-headline {
        white-space: normal; /* Allow wrapping on small mobile */
    }
    
    .logo-card {
        width: 70px;
        height: 70px;
    }
    
    .logo-card img {
        width: 40px !important;
        height: 40px !important;
    }

    /* Make the phone demo fit on very small screens */
    .phone-iframe-wrapper {
        transform: scale(0.8);
        margin-top: -40px;
        margin-bottom: -40px;
    }
}

/* =========================================

   MOBILE OPTIMIZATION (REVIEWS HIDDEN)

   Add this to the very bottom of index.css

   ========================================= */

@media (max-width: 900px) {
    /* 1. Switch Layout to Single Column – features, then slideshow */
    .visual-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        max-width: 100%;
        padding: 20px;
    }

    /* 2. Center the Features List */
    .hero-features-list {
        text-align: center;
        padding-right: 0;
        align-items: center;
    }
    
    .hero-features-list .hero-feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 4. Fix Video height */
    video {
        min-height: auto !important;
    }
}

@media (max-width: 768px) {
    /* 5. Typography: Resize huge headlines */
    h1 {
        font-size: 2.2rem; /* Reduced from 3.5rem */
        padding: 0 10px;
    }
    
    .hero-content h1 {
        white-space: normal; /* Allow wrapping on mobile */
    }
    
    p.sub-headline {
        white-space: normal; /* Allow wrapping on mobile */
    }
    
    .section-title-block h2, 
    .get-started-section h2, 
    .pricing-header h2, 
    .dna-header h2, 
    .faq-section h2 {
        font-size: 1.8rem; /* Reduced from 3rem */
    }

    /* 6. Hero & Button Adjustments */
    .hero-content {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    /* Buttons same size as laptop */
    .hero-cta-buttons .cta-button,
    .hero-cta-buttons .schedule-consult-button {
        width: auto;
        min-width: 240px;
    }

    /* 7. Phone Demo Scaling */
    .phone-iframe-wrapper {
        transform: scale(0.9); 
        margin: -10px auto; 
    }

    /* 8. Pricing Cards */
    .pricing-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* 9. Calendar Popup Mobile Fixes */
    .calendar-wrapper {
        height: 85vh;
        width: 95%;
    }
    
    .close-calendar-button {
        top: -15px;
        right: -5px;
        background-color: #fff;
        color: #000;
        width: 35px;
        height: 35px;
        font-size: 24px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    
    /* 10. Split Row (Features with Images) */
    .split-row, .split-row.reverse {
        flex-direction: column !important;
        gap: 40px;
    }
    
    /* Fix specific image sizing on mobile */
    .feature-img-placeholder.tall img {
        max-height: 400px; /* Prevent it from being too tall on phone */
    }
}

@media (max-width: 480px) {
    /* Ultra-small screen tweaks */
    h1 { font-size: 1.9rem; }
    
    .hero-content h1 {
        white-space: normal; /* Allow wrapping on small mobile */
    }
    
    p.sub-headline {
        white-space: normal; /* Allow wrapping on small mobile */
    }
    
    .logo-card { width: 70px; height: 70px; }
    .logo-card img { width: 40px !important; height: 40px !important; }
    .phone-iframe-wrapper {
        transform: scale(0.85);
        margin-top: -30px;
        margin-bottom: -30px;
    }
}

/* Center all feature items on mobile */
@media (max-width: 768px) {
    .split-list-side {
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
    }
    .feature-item-styled p {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .feature-item-styled h3 {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .feature-item-styled h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60% !important;
    }
}

/* Mobile UI: Move schedule button above the sub-headline */
@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 3px !important;
    }
    .hero-cta-buttons {
        margin-top: 3px !important;
    }
    .schedule-consult-button {
        order: 2;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .sub-headline {
        order: 3;
    }
    .hero-content h1 {
        order: 1;
    }
}