:root {
    --navy-dark: #0a0e17;
    --brand-orange: #f26522;
    --text-white: #ffffff;
    --text-muted: #8a94a6;
}

.orchestration-section {
    background-color: var(--navy-dark);
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
}

.orchestration-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /* Text side is slightly wider */
    gap: 80px;
    align-items: center;
}

/* Subtitle/Eyebrow styling */
.eyebrow-tag {
    background-color: var(--brand-orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
}

/* Bold Headline */
.orchestration-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.orchestration-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Button Styling */
.btn-group {
    display: flex;
    gap: 20px;
}

.btn-fill {
    background-color: var(--brand-orange);
    color: white;
    padding: 18px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.btn-outline {
    border: 1px solid #1e293b;
    color: white;
    padding: 18px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
}

/* Image with specific rounded corners */
.orchestration-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    /* Matches the soft rounded look in image */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .orchestration-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .orchestration-text h1 {
        font-size: 3rem;
    }

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

    .orchestration-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* 2nd section */

:root {
    --bg-color: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --accent-orange: #f97316;
}

.email-strategy {
    padding: 80px 20px;
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    /* Recommended clean font */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
   flex-wrap: wrap !important;
    gap: 60px;
    align-items: flex-start;
}

.strategy-header {
    flex: 1;
}

.title {
    font-size: 42px;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    font-weight: 800;
}

.quote {
    font-size: 18px;
    color: var(--text-muted);
    font-style: italic;
}

.features-grid {
    flex: 2;
    display: flex;
    gap: 30px;
}

.feature-item {
    flex: 1;
}

.icon {
    font-size: 24px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .features-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* 3rd section */

:root {
    --dark-bg: #0b1120;
    --card-dark: #1e293b;
    --accent-orange: #f97316;
    --white-card: #f8fafc;
    --text-main: #ffffff;
    --text-dark: #0f172a;
}

.capabilities {
    background-color: var(--dark-bg);
    padding: 100px 20px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

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

.section-tag {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-orange);
    margin-top: 8px;
}

/* Grid Logic */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.card {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* Lead Nurturing Span */
.lead-nurturing {
    grid-column: span 1;
    border-bottom: 4px solid var(--accent-orange);
}

.lead-nurturing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.overlay-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding-right: 20px;
}

/* Hyper Segmentation Span */
.hyper-segmentation {
    grid-column: span 3;
    background-color: var(--card-dark);
    display: flex;
    align-items: center;
    padding: 40px;
}

.hyper-segmentation .text-content {
    flex: 1;
}

.hyper-segmentation .image-wrapper {
    flex: 1;
    text-align: right;
}

.hyper-segmentation img {
    width: 80%;
    border-radius: 4px;
}

/* White Cards */
.white-card {
    background-color: var(--white-card);
    padding: 30px;
    color: var(--text-dark);
}

/* Typography & Icons */
h3 {
    font-size: 18px;
    margin: 15px 0;
    font-weight: 700;
}

p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.white-card p {
    color: #475569;
}

.card-icon {
    font-size: 24px;
}

.cta-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .hyper-segmentation {
        grid-column: span 2;
        flex-direction: column;
    }
}

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

    .lead-nurturing,
    .hyper-segmentation {
        grid-column: span 1;
    }
}

/* 4th section */

:root {
    --stat-orange: #d66a32;
    /* Matching the deep orange in the image */
    --stat-label-color: #64748b;
    --bg-white: #ffffff;
}

.stats-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.stat-item {
    flex: 1;
}

.stat-number {
    color: var(--stat-orange);
    font-size: 64px;
    /* Large, impactful size */
    font-weight: 900;
    /* Extra bold */
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-label {
    color: var(--stat-label-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        /* Stacks items vertically */
        gap: 60px;
        /* More space between stacked items */
    }

    .stat-number {
        font-size: 52px;
        /* Slightly smaller for mobile screens */
    }
}

/* 5th section */

:root {
    --navy-dark: #0b1120;
    --white: #ffffff;
    --text-muted: #94a3b8;
    --accent-orange: #f97316;
}

.journey-section {
    background-color: var(--navy-dark);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: var(--white);
}

.container-journey {
    max-width: 1200px;
    margin: 0 auto;

}

/* Header Styles */
.journey-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.header-text {
    max-width: 600px;
}

.title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 16px;
}

.brand-icon {
    font-size: 40px;
    color: var(--accent-orange);
}

/* Grid Layout */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card Styling */
.journey-card {
    background: var(--white);
    padding: 8px;
    /* Inner spacing for white border effect */
    position: relative;
    display: flex;
    flex-direction: column;
}

.phase-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #000;
    color: var(--white);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    z-index: 2;
}

/* Specific highlight for Phase 04 */
.highlighted .phase-badge {
    background: var(--accent-orange);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 24px 16px;
    color: #0f172a;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: #e2e8f0;
    width: 100%;
}

.progress {
    height: 100%;
    background: var(--accent-orange);
}

/* Responsive Stack */
@media (max-width: 768px) {
    .journey-header {
        flex-direction: column;
        gap: 30px;
    }
}

/* 5th section */

:root {
    --navy-dark: #0f172a;
    --text-gray: #64748b;
    --btn-orange: #d66a32;
    --num-gray: #cbd5e1;
}

.roadmap-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

/* Left side */
.roadmap-info {
    flex: 1;
    position: sticky;
    /* Keeps the CTA visible as you scroll the list */
    top: 100px;
    height: fit-content;
}

.roadmap-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 30px;
}

.roadmap-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--btn-orange);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Right side */
.roadmap-list {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.step-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--num-gray);
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 60px;
    }

    .roadmap-info {
        position: static;
        text-align: center;
    }

    .roadmap-title {
        font-size: 36px;
    }
}

/* 6th section */

:root {
    --navy: #0b1120;
    --orange: #f97316;
    --text-gray: #64748b;
    --border: #e2e8f0;
}

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

/* Industry Section Styles */
.industries {
    background: var(--navy);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.center-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0 60px;
}

.tag {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.industry-grid {
    display: flex;
    gap: 47px;
    height: 400px;
    justify-content: space-between;
    margin-left: auto;
    margin-right:auto;
}

.industry-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    text-align: left;
    transition: flex 0.5s ease;
}

.industry-card:hover {
    flex: 1.5;
}

.card-overlay {
    z-index: 2;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 17, 32, 0.9), transparent);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.industry-card p {
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Bottom Split Section */
.bottom-split {
    padding: 100px 0;
    background: #fff;
}

.split-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-side {
    flex: 1.2;
}

.faq-side h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.faq-item h4 {
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Form Card */
.form-side {
    flex: 1;
}

.form-card {
    background: var(--navy);
    padding: 60px 40px;
    color: white;
    border-radius: 4px;
}

.form-card h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.form-card p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 40px;
}

.lead-form label {
    display: block;
    font-size: 10px;
    color: var(--orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.lead-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #334155;
    padding: 10px 0;
    color: white;
    margin-bottom: 30px;
    outline: none;
}

.lead-form button {
    width: 100%;
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lead-form button:hover {
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .industry-grid {
        flex-direction: column;
        height: auto;
    }

    .industry-card {
        height: 250px;
    }

    .split-container {
        flex-direction: column;
        gap: 60px;
    }
}