.tailored-hero {
    background-color: #0b0f1a; /* Consistent dark navy */
    padding: 80px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.tailored-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Badge Styling */
.tailored-badge {
    display: inline-block;
    background-color: rgba(233, 78, 27, 0.1);
    color: #e94e1b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

/* Heading & Text */
.tailored-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.tailored-accent {
    color: #e94e1b; /* The orange 'Unique Workflows' text */
    display: block; /* Forces the orange text to its own line as seen in screenshot */
}

.tailored-description {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 44px;
}

/* Button Group */
.tailored-actions {
    display: flex;
    gap: 16px;
}

.btn-orange-full {
    background-color: #e94e1b;
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-orange-full:hover {
    background-color: #ff5f2e;
    transform: translateY(-2px);
}

.btn-light-full {
    background-color: #e2e8f0;
    color: #0f172a;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-light-full:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Graphic Container */
.tailored-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.6);
}

.tailored-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .tailored-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tailored-description { margin: 0 auto 40px auto; }
    
    .tailored-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .tailored-image-wrapper {
        margin-top: 50px;
    }
}



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

.philosophy-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.philosophy-label {
    color: #e94e1b;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

/* Flex Grid */
.philosophy-grid {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

/* Card Styling */
.phil-card {
    background-color: #0b1120;
    border-radius: 16px;
    padding: 40px;
    flex: 1;
    min-width: 300px; /* Ensures cards don't get too skinny */
    text-align: left;
}

.phil-icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(233, 78, 27, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #e94e1b;
}

.phil-card-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.phil-card-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet View */
@media (max-width: 1024px) {
    .philosophy-title {
        font-size: 2rem;
    }
    
    .phil-card {
        flex: 1 1 calc(50% - 24px); /* Two cards per row */
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .philosophy-section {
        padding: 60px 20px;
    }

    .philosophy-header {
        text-align: left; /* Optional: matches the look of other mobile sections */
    }

    .philosophy-title {
        font-size: 1.8rem;
    }

    .philosophy-grid {
        flex-direction: column; /* Stack vertically */
    }

    .phil-card {
        width: 100%;
        min-width: unset;
        padding: 30px;
    }
}

.eng-capabilities {
    background-color: #0b0f1a;
    padding: 100px 40px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.eng-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Layout split */
    gap: 60px;
    align-items: flex-start;
}

/* Left Column Styling */
.eng-intro {
    position: sticky;
    top: 100px;
}

.eng-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.eng-lead {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.eng-checklist {
    list-style: none;
    padding: 0;
}

.eng-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-weight: 500;
}

.eng-checklist i {
    color: #e94e1b;
    font-size: 1.2rem;
}

/* Right Column Grid */
.eng-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.eng-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    /* The orange left border from the screenshot */
    border-left: 6px solid #e94e1b;
}

.eng-card h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.eng-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.eng-card-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet View */
@media (max-width: 1024px) {
    .eng-container {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 60px;
    }

    .eng-intro {
        position: static;
        text-align: center;
    }

    .eng-checklist {
        display: inline-block;
        text-align: left;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .eng-capabilities {
        padding: 60px 20px;
    }

    .eng-title {
        font-size: 2.2rem;
    }

    .eng-grid {
        grid-template-columns: 1fr; /* 1 card per row */
    }

    .eng-card {
        padding: 24px;
    }
}

/* Shared Styles */
body { margin: 0; font-family: 'Inter', sans-serif; }

/* Roadmap Styles */
.roadmap-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.roadmap-titles h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.roadmap-sub {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 1px;
    font-weight: 600;
}

.roadmap-intro {
    max-width: 380px;
    border-left: 2px solid #e2e8f0;
    padding-left: 30px;
}

.roadmap-intro p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.5;
}

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

.roadmap-card {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #f3a683; /* Muted peach number */
    opacity: 0.6;
    margin-bottom: 20px;
}

.roadmap-card h3 {
    color: #0f172a;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

/* Tech Stack Styles */
.tech-section {
    padding: 120px 40px;
    background-color: #0b0f1a; /* Deep navy/black background */
    text-align: center;
    color: #ffffff;
}

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

.tech-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tech-section p {
    color: #94a3b8;
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.tech-card {
    background: #ffffff;
    padding: 30px 10px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.tech-card img {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.tech-card span {
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .roadmap-header { flex-direction: column; align-items: flex-start; gap: 30px; }
}

@media (max-width: 640px) {
    .roadmap-grid, .tech-grid { grid-template-columns: 1fr; }
    .roadmap-titles h2 { font-size: 2rem; }
}

.breakthrough-cta {
    background-color: #0b0f1a; /* Matches the dark section above */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.cta-gradient-card {
    width: 100%;
    max-width: 1100px;
    /* High-impact orange to peach gradient */
    background: linear-gradient(135deg, #ef5a24 0%, #ffac81 100%);
    border-radius: 40px; /* Large rounded corners as seen in screenshot */
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 48px auto;
    line-height: 1.6;
}

/* Button Group Layout */
.cta-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* White Button */
.btn-quote {
    background-color: #ffffff;
    color: #0b0f1a;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #f8fafc;
}

/* Dark Navy Button */
.btn-architect {
    background-color: #0b1e33; /* Specific dark navy from screenshot */
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-architect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #162a44;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-gradient-card {
        padding: 60px 20px;
        border-radius: 24px;
    }

    .cta-button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-quote, .btn-architect {
        width: 100%;
        max-width: 300px;
    }
}