/* style.css (Black & White Version) */

/* 🚀 === FIX FOR JUMP LINKS (SCROLL-MARGIN) === 🚀 */
section[id], .site-header {
    scroll-margin-top: 150px; 
}

/* === Base Setup & Variables === */
:root {
    /* CHANGED: Monochrome Palette (White Background / Black Text) */
    --color-primary: #000000; /* Black */
    --color-accent: #333333;  /* Dark Gray */
    --color-dark: #000000;
    --color-light: #ffffff;   /* White */
    --color-text: #000000;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-lift: 0 6px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* IMPORTANT: Enables full-height fixed canvas */
html, body {
    height: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* CHANGED: White Background */
    background-color: #ffffff;
    color: var(--color-text);
    line-height: 1.6;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--color-primary); /* Links are now black */
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* === Headings and Typography === */
h1, h2, h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5em;
    color: #000000; /* Force Black */
}

h2 {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -1px;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #000000; /* Black underline */
    margin: 15px auto 0;
}

h3 {
    color: #000000;
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
    color: #333333; /* Dark gray for readability */
}

/* Utility for inline text/icons */
.link-icon {
    margin-right: 8px;
    font-size: 1.3em;
    line-height: 1;
    vertical-align: middle;
}

.section-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5em;
    font-size: 1.1rem;
    padding-top: 20px;
    color: #000000;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: #333; 
    line-height: 1.6;
}

.package-summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
}

/* CHANGED: View All Button to Black */
.view-all-container {
    margin-top: 50px;
    text-align: center;
}
.view-all-btn {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

/* === Buttons (Monochrome) === */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Primary: Black Background, White Text */
.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary: White/Transparent Background, Black Border/Text */
.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px; 
}

.hero-buttons .btn {
    flex: 1 1 auto;
    max-width: 300px;
}

.btn-cta {
    font-size: 1.2rem !important;
    padding: 15px 30px !important;
}
.btn-container {
    text-align: center;
    margin-top: 30px;
}

/* === Canvas Styling (Updated for White Background) === */
#brain-mesh-canvas {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;    
    height: 100vh; 
    z-index: -1; 
    pointer-events: none;
    /* CHANGED: Blend mode normal or multiply for black lines on white */
    mix-blend-mode: normal; 
    opacity: 0.15; /* Kept subtle */
    transition: opacity 1s; 
}

/* === Hero Section === */
.site-header {
    position: relative;
    z-index: 1; 
    overflow: hidden;
    isolation: isolate;
    background: transparent;
    color: #000000; /* Black Text */
    text-align: center;
    padding: 180px 20px 220px;
    /* Removed clip-path as it's cleaner without it on plain white */
}

.header-content {
    position: relative;
    z-index: 2; 
    max-width: 900px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 4.5rem;
    color: #000000;
    text-shadow: none; /* Removed shadow */
    margin-bottom: 20px;
}

.header-content .summary {
    font-size: 1.4rem;
    color: #333333;
    max-width: 750px;
    margin: 0 auto 50px;
    font-weight: 300;
}

/* === FEA Showcase Section === */
.fea-showcase {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
    margin-top: -100px;
    border-radius: 15px;
    /* Added Border for distinction */
    border: 1px solid #eee;
    box-shadow: var(--shadow-lift);
    padding-bottom: 80px;
}

.fea-text-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 20px;
}

/* === Value Proposition === */
.fea-advantage {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-lift);
    border: 1px solid #eee; /* Light border */
    width: 300px;
    text-align: center;
    border-bottom: 5px solid #000000; /* Black accent */
    font-weight: 600;
    color: #000000;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* === Package Reports Section === */
.report-section-bg {
    background-color: transparent;
    padding: 80px 0;
}

.report-comparison {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.report-card-unified {
    background: #ffffff;
    border: 3px solid #000000; /* Black Border */
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    max-width: 700px; 
    text-align: left;
    margin-top: 20px;
}

.report-card-unified h3 {
    font-size: 2.0rem;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.report-card-unified .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #000000; /* Black Background */
    padding: 10px 0;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
}

.report-card-unified .price .currency {
    font-size: 0.6em;
    vertical-align: top;
    margin-right: 5px;
    font-weight: 600;
}
.report-card-unified .price .per-project-note {
    font-size: 0.3em;
    display: block;
    margin-top: -10px;
    font-weight: 400;
}

.report-card-unified ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.report-card-unified ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    color: #000000;
}

.report-card-unified ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    /* Optional: filter to grayscale if you want strictly black/white icons */
    filter: grayscale(100%); 
}

.turnaround {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000; 
    text-align: center;
    margin: 20px 0 10px;
    padding: 10px;
    border: 1px dashed #000000;
    border-radius: 5px;
    background-color: #f4f4f4;
}

/* === Blog Cards Section === */
.blog-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #000000; /* Black border */
    border-radius: 8px;
    box-shadow: none;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    text-align: left;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px #000000; /* Retro Brutalist Black Shadow on Hover */
}

.blog-card h3 {
    color: #000000;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.blog-card .meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.blog-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #000000; 
    margin-bottom: 20px;
}

.blog-card .read-more-btn {
    display: inline-block;
    background-color: transparent;
    color: #000000;
    padding: 8px 15px;
    border: 1px solid #000000;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.blog-card .read-more-btn:hover {
    background-color: #000000;
    color: #fff;
}

#blog-showcase {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

/* === Contact Form === */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: #ffffff;
    border: 2px solid #000000; /* Black Border */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: block;
}

.contact-form input, .contact-form select, .contact-form textarea, .contact-form button {
    margin-bottom: 15px;
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fff;
    color: #000;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: #000000;
    outline: none;
}

.contact-form textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-form button {
    border: 2px solid #000000;
    background-color: #000000;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 25px;
}

.contact-form button:hover {
    background-color: #ffffff;
    color: #000000;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    padding-top: 10px;
}

/* === Footer === */
footer {
    background-color: #000000; /* Black Background */
    text-align: center;
    padding: 30px 20px;
    margin-top: 80px;
    font-size: 0.9rem;
}

/* 🚀 FIX: Explicitly set paragraph text inside footer to white */
footer p {
    color: #ffffff !important; 
    margin: 0;
}

/* Ensure links in footer are also white */
footer a {
    color: #ffffff !important;
    text-decoration: underline;
}

footer a:hover {
    color: #cccccc !important; /* Light gray on hover */
    text-decoration: none;

}