/* --- 1. Global Reset & Base Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #003366; /* Deep Blue */
    --secondary-color: #FF6B35; /* Orange Accent */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

/* Basic row/column for layout (can be replaced by CSS Grid or Flexbox more specifically) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px; /* Adjust for padding in columns */
}

.col-lg-7, .col-lg-5 {
    padding: 0 15px;
    width: 100%; /* Default to full width for small screens */
}

/* --- 2. Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 48px;
    color: var(--primary-color);
}

h2 {
    font-size: 38px;
    text-align: center;
    color: var(--primary-color);
}

h3 {
    font-size: 28px;
    color: var(--text-dark);
}

h4 {
    font-size: 22px;
    color: var(--text-dark);
}

p {
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-light);
}

.subtitle, .intro-text {
    font-size: 19px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 40px;
    color: var(--secondary-color);
}

/* --- 3. Buttons --- */
.btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
    background-color: #e65c2b; /* Slightly darker orange */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-secondary:hover {
    background-color: #002a55; /* Slightly darker blue */
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 20px;
}

.cta-small-text {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* --- 4. Section & Layout --- */
.deepscan-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.deepscan-section:nth-of-type(even) {
    background-color: var(--bg-light);
}

/* Hero Section */
.deepscan-hero-section {
    background: linear-gradient(to right, #e0f2f7, #c6e6ee); /* Light gradient background */
    padding: 100px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    text-align: left;
}

.deepscan-hero-section .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deepscan-hero-section .h1-title {
    margin-bottom: 25px;
    font-size: 58px;
}

.deepscan-hero-section .subtitle {
    font-size: 21px;
    line-height: 1.5;
}

.deepscan-hero-section .hero-image {
    /* Placeholder for image, could use a background image or an actual img tag */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* For visual spacing */
}

/* Problem Block */
.deepscan-problem-block .h2-title {
    margin-bottom: 50px;
}

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

.problem-point {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-point:hover {
    transform: translateY(-10px);
}

.problem-point h4 {
    color: var(--primary-color);
    margin-top: 15px;
    font-size: 20px;
}

.problem-point p {
    font-size: 16px;
}

/* Solution Block */
.deepscan-solution-block .intro-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.step-item {
    background-color: #ffffff;
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.step-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Features Block */
.deepscan-features-block .feature-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-group {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.feature-group .group-title {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-group ul {
    list-style: none;
    padding-left: 0;
}

.feature-group ul li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.feature-group ul li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1;
}

/* Proof Block (Scientific superiority) */
.deepscan-proof-block .h2-title {
    margin-bottom: 50px;
}

.proof-items-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.proof-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.proof-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.proof-item p {
    font-size: 15px;
    color: var(--text-light);
}

/* Certification part within Proof Block */
.proof-certification {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    text-align: center;
}

.proof-certification .intro-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.proof-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
}

.proof-images img {
    max-width: 250px;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

/* How It Works Block */
.deepscan-how-it-works .h2-title {
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.deepscan-how-it-works .btn-cta {
    margin-top: 50px;
}

/* Trust Block (Stats and Testimonial) */
.deepscan-trust-block .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat-item .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    text-align: center;
}

.testimonial p::before, .testimonial p::after {
    content: '“';
    font-size: 60px;
    position: absolute;
    color: var(--border-color);
    line-height: 0;
}

.testimonial p::before {
    top: 10px;
    left: 20px;
}
.testimonial p::after {
    content: '”';
    bottom: 10px;
    right: 20px;
}

.testimonial footer {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* --- 5. Footer / Final CTA --- */
.deepscan-final-cta {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.deepscan-final-cta .h2-title {
    color: #ffffff;
    font-size: 42px;
}

.deepscan-final-cta .intro-text {
    color: #e0e0e0;
    max-width: 800px;
    margin: 20px auto 40px;
}

.deepscan-contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.deepscan-contact-form input[type="text"],
.deepscan-contact-form input[type="tel"],
.deepscan-contact-form input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 17px;
    background-color: #ffffff;
    color: var(--text-dark);
}

.deepscan-contact-form input::placeholder {
    color: #999999;
}

.deepscan-contact-form .btn-cta-final {
    width: 100%;
    max-width: 400px;
    background-color: var(--secondary-color);
    color: #ffffff;
}

.copyright {
    margin-top: 60px;
    font-size: 14px;
    color: #cccccc;
}

/* --- 6. Responsive Design (Media Queries) --- */
@media (min-width: 992px) {
    .col-lg-7 {
        width: 58.33333%; /* 7/12 */
    }
    .col-lg-5 {
        width: 41.66667%; /* 5/12 */
    }
    .deepscan-hero-section .hero-content {
        text-align: left;
    }
    .deepscan-hero-section .h1-title {
        font-size: 58px;
    }
    .deepscan-hero-section {
        text-align: left;
    }
    .deepscan-contact-form {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .deepscan-contact-form input,
    .deepscan-contact-form .btn-cta-final {
        max-width: 280px; /* Adjust width for desktop layout */
    }
}

@media (max-width: 991px) {
    .deepscan-hero-section {
        padding: 80px 0;
        text-align: center;
    }
    .deepscan-hero-section .h1-title {
        font-size: 42px;
    }
    .deepscan-hero-section .subtitle {
        font-size: 18px;
    }
    h2 {
        font-size: 32px;
    }
    .deepscan-final-cta .h2-title {
        font-size: 36px;
    }
    .deepscan-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    .deepscan-hero-section {
        min-height: auto;
        padding-bottom: 50px;
    }
    .problem-points-grid,
    .steps-list,
    .feature-groups,
    .proof-items-row,
    .process-steps,
    .stats-grid {
        grid-template-columns: 1fr; /* Stack elements on small screens */
    }
    .proof-images {
        flex-direction: column;
        align-items: center;
    }
    .proof-images img {
        max-width: 80%; /* Make images fit better on small screens */
    }
    .deepscan-contact-form {
        flex-direction: column;
        gap: 15px;
    }
    .deepscan-contact-form input,
    .deepscan-contact-form .btn-cta-final {
        max-width: 90%; /* Max width for inputs/button on small screens */
    }
    .testimonial {
        font-size: 17px;
        padding: 30px 20px;
    }
    .testimonial p::before, .testimonial p::after {
        font-size: 40px;
    }
    .testimonial p::before {
        top: 0;
        left: 10px;
    }
    .testimonial p::after {
        bottom: 0;
        right: 10px;
    }
}

/* Optional: Add some basic hover effects for all interactive elements */
a, button {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Image styling (if not already defined) */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below images */
}

/* Icons (if using font icons or SVG, otherwise remove) */
/* Example: if using Font Awesome, you'd link it in HTML and use classes like <i class="fas fa-icon-name"></i> */
/* For now, assuming these are placeholders or will be replaced with custom SVG/images */
.icon-blind-hire, .icon-loyalty-lie, .icon-burnout, .icon-cult {
    /* Example basic icon styling - replace with actual icon logic */
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 15px;
    /* For text-based icons */
    line-height: 60px;
    color: #fff;
    font-size: 30px;
    text-align: center;
}
/* You would replace the above with actual SVG backgrounds or Font Awesome classes */

/* Specific icons from feature groups - just example */
.feature-group .group-title .icon-target,
.feature-group .group-title .icon-rocket,
.feature-group .group-title .icon-chart {
    /* For actual icons */
}