@import url('fonts.css');

/* =========================================
   2. VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #D6336C;
    /*#C71585;
    /*#ff4500;*/
    /* Signal Orange */
    --bg-color: #FAFBFC;
    --dark-bg-color: #2C3E50;
    --text-color: #2C3E50;
    --dark-text-color: #FAFBFC;
    --dark-border-color: #3F454B;
    --autonomy-color: #D6336C;
    --amotivation-color: #8b0000;
    --external-color: #c0392b;
    --introjection-color: #f39c12;
    --identification-color: #27ae60;
    --integration-color: #6f42c1;
    --intrinsic-color: #D6336C;
    --section-padding-mobile: 4rem 0;
    --section-padding-desktop: 8rem 0;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4 {
    font-family: 'Onest', 'Space Grotesk', 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    text-transform: lowercase;
    /* Brand Style */
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

/* Overrides for specific cards */
.price-card h1,
.concept-card h4,
.real-step h4 {
    text-transform: none;
}

h1 {
    font-size: 2.3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

strong {
    font-weight: 500;
}

/* =========================================
   4. UTILITIES & BUTTONS
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding-mobile);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    /* Mobile default */
    text-align: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #000;
    color: #fff;
}

.btn-outline {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}

/* Marker Highlight Effect */
.marker-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.marker-text::before,
.marker-text::after {
    content: '';
    position: absolute;
    left: 0;
    background: transparent;
    pointer-events: none;
    z-index: -1;
    opacity: 0.9;
    border-bottom: 5px solid var(--primary-color);
}

/* Curve Logic */
.marker-text::before {
    width: 104%;
    height: 19px;
    left: -2%;
    bottom: -7px;
    border-radius: 50% 10% 10% 10%;
    transform: rotate(-1.75deg);
}

/* =========================================
   5. HEADER & NAVIGATION
   ========================================= */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-weight: 200;
    font-size: 1.5rem;
    letter-spacing: -0.09em;
    color: var(--dark-bg-color);
}

.logo img {
    height: 30px;
}

.logo strong {
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
}

.nav-links .btn {
    width: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    font-size: 0.8rem;
}

/* =========================================
   6. HERO SECTIONS
   ========================================= */
/* Home Page Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    padding: 0 1.5rem 2rem 1.5rem;
    z-index: 2;
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
}

/* Internal Pages Hero */
.page-hero {
    padding: 6rem 0 4rem 0;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero p {
    margin: 0 auto;
    color: #666;
}

/* Manifesto Hero */
.manifesto-hero {
    padding: 8rem 0 6rem 0;
    border-bottom: 2px solid #000;
}

.concept-image-wrapper {
    text-align: center;
    margin: 3rem auto 4rem auto;
    max-width: 800px;
}

.concept-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #eee;
    padding: 1rem;
    background-color: #fff;
    filter: grayscale(100%) contrast(110%);
}

.caption {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   7. GENERAL SECTIONS & GRIDS
   ========================================= */
/* Headers & Lists */
.section-header {
    margin-bottom: 3rem;
    text-align: left;
    align-items: center;
}

.pain-section,
.dark-section {
    background-color: var(--dark-bg-color);
    color: var(--dark-text-color);
}

.grid2,
.grid3 {
    display: grid;
    flex-direction: column;
    gap: 2rem;
    grid-template-columns: 1fr;
}


/* Override gap */

.pain-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    list-style: none;
    font-weight: 300;
}

.pain-list strong {
    color: var(--bg-color);
    font-weight: 900;
}

/* Service & Concept Cards */
.service-card,
.concept-card {
    border: 1px solid #eee;
    padding: 2rem;
    background: #fff;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #000;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: #eee;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.dark-section .concept-card {
    background: #1c2e40;
    border: none;
    border-left: 1px solid var(--autonomy-color);
}


/* =========================================
   THE TRANSLATION (Manifesto)
   ========================================= */


.trans-card {
    background: #1c2e40;
    /* Slightly lighter than the black bg */
    border: 1px solid #333;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.trans-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.trans-top h3 {
    color: #999;
    /* The "Raw Material" looks duller */
    font-size: 1.5rem;
    margin-bottom: 0;
}

.trans-bottom h3 {
    color: #fff;
    /* The "Output" pops */
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.trans-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-weight: 800;
}

.trans-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.trans-label.highlight {
    color: var(--primary-color);
}

.trans-bottom p {
    color: #ccc;
    line-height: 1.6;
    margin: 0 auto;
    text-align: left;
}

/* Real Framework */
.real-step {
    display: flex;
    align-items: flex-start;
    border: 2px solid #000;
    padding: 2rem;
}

.real-letter {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.8;
    margin-right: 1.5rem;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
}

.about-image {
    height: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.about-content {
    padding: 4rem 1.5rem;
    background-color: #f9f9f9;
}

/* Legal Section */
.legal-section {
    background-color: #f4f4f4;
    padding: 4rem 0;
    margin-top: 4rem;
}

.legal-block h3 {
    margin-bottom: 1rem;
}

.legal-block p {
    font-size: 0.9rem;
    color: #666;
    max-width: 800px;
}

/* =========================================
   8. SPECIFIC PAGE COMPONENTS
   ========================================= */

/* --- OPERATOR (About) --- */
.operator-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.operator-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.operator-image {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.profile-pic {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(110%);
    border: 1px solid #000;
    padding: 10px;
    background: #fff;
}

.operator-content {
    width: 100%;
    max-width: 600px;
}

.operator-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.operator-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.operator-role {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
    width: 100px;
}

.operator-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.operator-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-top: 0.25rem;
}

/* --- PRICING --- */
.pricing-section {
    padding: 4rem 0;
}

.price-card {
    border: 2px solid #eee;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.price-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
}

/* Featured State */
.price-card.featured {
    border-color: var(--dark-border-color);
    background-color: var(--dark-bg-color);
    color: var(--dark-text-color);
}

.price-card.featured .price-amount {
    color: #fff;
}

.price-card.featured .btn {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.price-card.featured .btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.price-card.featured li {
    border-bottom: 1px solid var(--dark-border-color);
}

/* Unavailable State */
.price-card.unavailable {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
}

.price-card.unavailable:hover {
    transform: none;
    box-shadow: none;
    border-color: #eee;
}

.price-card.unavailable .btn {
    border-color: #999;
    color: #999;
    background: transparent;
    text-decoration: line-through;
}

.price-card.unavailable::after {
    content: "coming soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    border: 4px solid #000;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    white-space: nowrap;
}

/* Pricing Typography */
.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.price-detail {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
    display: block;
}

.price-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.price-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}


/* =========================================
   9. TESTIMONIAL CAROUSEL
   ========================================= */
.testimonials-section {
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: baseline;
}

.quote-mark {
    font-family: 'Times New Roman', serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 100;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 100%;
}

.author-name {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.author-role {
    display: block;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.control-btn {
    background: transparent;
    border: 2px solid #ccc;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.control-btn:hover {
    border-color: #ff4500;
    color: #ff4500;
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    background-color: var(--dark-bg-color);
    color: var(--dark-text-color);
    text-align: center;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid var(--dark-border-color);
}

.footer-cta {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-cta p {
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-legal {
    border-top: 1px solid var(--dark-border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
}

.legal-links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

.separator {
    margin: 0 0.5rem;
    color: #444;
}

.copyright {
    color: var(--dark-text-color);
    font-size: 0.9em;
}

/* =========================================
   AUDIT TOOL STYLES
   ========================================= */

.audit-section {
    padding: 4rem 0;
    background-color: #fff;
}

/* 1. INPUT FIELDS (Technical Look) */
.task-input-wrapper {
    background: #f9f9f9;
    padding: 2rem;
    border: 1px solid #000;
    margin-bottom: 3rem;
}

.audit-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.audit-instruction {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.audit-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0;
    /* Sharp edges for tech feel */
    transition: border 0.3s;
}

.audit-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* 2. QUESTIONS GRID */
.question-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.question-text {
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rating-options {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    /* Keep radios close */
    margin-bottom: 0.5rem;
}

.rating-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rating-label input {
    margin-bottom: 0.5rem;
    transform: scale(1.3);
    /* Bigger click targets */
    accent-color: var(--primary-color);
    /* Orange selection */
}

.rating-legend {
    display: flex;
    justify-content: space-between;
    max-width: 500px;
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 3. RESULTS DISPLAY */
#results-area {
    display: none;
    /* Hidden on load */
    margin-top: 4rem;
    padding: 2rem;
    border: 2px dashed #ccc;
    background: #fff;
    animation: fadeIn 0.5s ease;
}

.results-header {
    margin-bottom: 40px;
}


.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-block {
    border: 2px solid #000;
    /* Brutalist border */
    padding: 3rem;
    background: #fff;
    margin-bottom: 0;
    /* Reset since we only show one */
}

.nav-controls .btn {
    flex: 1;
}

/* Ensure the radio buttons look like "mechanic" tools */
.rating-label input[type="radio"] {
    accent-color: var(--primary-color);
}


.score-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.score-main {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #ccc;
}

.score-display {
    font-size: 5rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin: 1rem 0;
}

.score-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Diagnosis Box Styles */
.diagnosis-box {
    padding: 2rem;
    background: #f4f4f4;
    border-left: 6px solid #ccc;
}

.diagnosis-box h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.diagnosis-box.critical {
    border-left-color: #000;
    background: #eee;
}


.diagnosis-box.amotivation {
    border-left-color: var(--amotivation-color);
    background-color: color-mix(in srgb, var(--amotivation-color), white 95%);
}


.diagnosis-box.external {
    border-left-color: var(--external-color);
    background-color: color-mix(in srgb, var(--external-color), white 95%);
}


.diagnosis-box.introjection {
    border-left-color: var(--introjection-color);
    background-color: color-mix(in srgb, var(--introjection-color), white 95%);
}

.diagnosis-box.identification {
    border-left-color: var(--identification-color);
    background-color: color-mix(in srgb, var(--identification-color), white 95%);
}

.diagnosis-box.autonomy {
    border-left-color: var(--autonomy-color);
    background-color: color-mix(in srgb, var(--autonomy-color), white 95%);
}

/* Container for the visual tool */
.continuum-wrapper {
    position: relative;
    margin: 60px 0 40px 0;
    /* Extra top margin for the Sweet Spot label */
    padding: 0 10px;
}

/* The Gradient Bar */
.continuum-bar {
    height: 30px;
    border-radius: 15px;
    /* The 6-Stage Autonomy Gradient */
    /*
    Red/Orange: "Heat & Friction"(Pressure) 
    Green: "Safety & Value"(Rational Choice) 
    Purple: "Depth & Meaning"(Internal Alignment) 
    Pink: "Passion & Energy"(Pure Joy)
    */
    background: linear-gradient(90deg,
            var(--amotivation-color) 0%,
            /* Amotivation (Dark Red) */
            var(--external-color) 20%,
            /* External (Red) */
            var(--introjection-color) 40%,
            /* Introjection (Orange) */
            var(--identification-color) 65%,
            /* Identification - SWEET SPOT (Green) */
            var(--integration-color) 85%,
            /* Integration (Blue) */
            var(--autonomy-color) 100%
            /* Intrinsic (Purple) */
        );
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* The "Sweet Spot" Marker */
.sweet-spot-zone {
    position: absolute;
    top: -7px;
    left: 65%;
    /* Aligns with the Green section of the gradient */
    transform: translateX(-50%);
    color: var(--identification-color);
    font-weight: bold;
    font-size: 0.85em;
    text-align: center;
    line-height: 1.2;
}

.sweet-spot-zone::after {
    content: "▼";
    display: block;
    font-size: 1.4em;
    margin-top: -2px;
}

.ideal-zone {
    position: absolute;
    top: -7px;
    left: 95%;
    /* Aligns with the Green section of the gradient */
    transform: translateX(-50%);
    color: var(--intrinsic-color);
    font-weight: bold;
    font-size: 0.85em;
    text-align: center;
    line-height: 1.2;
}

.ideal-zone::after {
    content: "▼";
    display: block;
    font-size: 1.4em;
    margin-top: -2px;
}

/* The Moving Indicator (Your Score) */
.indicator {
    position: absolute;
    top: -8px;
    /* Extends slightly above bar */
    width: 2px;
    height: 46px;
    /* Extends below bar */
    background: #333;
    border: 1px solid var(--dark-bg-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: left 1s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth slide animation */
    z-index: 10;
}

.indicator-label {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg-color);
    color: var(--dark-text-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}

.indicator-label::before {
    content: "▲";
    /* Arrow pointing up to bar */
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
}

/* Axis Labels */
.axis-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Ensures lists hang down correctly */
    margin-top: 50px;
}

/* Individual Column */
.label-col {
    flex: 1;
    /* Forces equal width */
    text-align: center;
    padding: 0 2px;
}

/* The Colored Title */
.label-title {
    font-size: 0.75em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

/* The List Details */
.label-list {
    list-style: none;
    /* Remove bullet points */
    padding: 0;
    margin: 0;
    font-size: 0.7em;
    /* Keep it small */
    color: #666;
    line-height: 1.4;
}

.label-list li {
    margin-bottom: 2px;
}

/* Success */

/* 4. FUEL BARS */
.fuel-breakdown {
    border-top: 2px dashed #ccc;
    padding-top: 2rem;
}

.fuel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.fuel-item strong {
    display: block;
}

.fuel-sub {
    font-size: 0.85rem;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.bar-container {
    background: #e0e0e0;
    height: 20px;
    width: 100%;
}

.fuel-bar {
    height: 100%;
    width: 0%;
    transition: width 1s ease-out;
}

.fuel-bar.pressure {
    background-color: var(--amotivation-color);
}

/* Dirty Fuel = Dark */
.fuel-bar.ownership {
    background-color: var(--identification-color);
}

/* --- NEW ACTION SECTION STYLES --- */
.action-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px dashed #ccc;
    animation: fadeIn 1s ease;
}

.container-advice {
    background-color: #f9f9f9;
    /* Light grey background to separate it */
    padding: 2.5rem;
    border: 1px solid #ddd;
    text-align: center;
}

.container-advice h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#adviceContent p {
    font-size: 1.25rem;
    /* Make the advice text larger */
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.cta-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================================
   11. MEDIA QUERIES (AGGREGATED)
   ========================================================================= */

@media (max-width: 767px) {

    /* Add space to the bottom of every card */
    .trans-card,
    .service-card,
    .concept-card,
    .price-card,
    .real-step,
    .anti-card,
    .testimonial-card {
        margin-bottom: 0.5rem;
        /* Forces vertical spacing */
    }

    /* Remove the margin from the very last card so you don't have extra space at the bottom */
    .grid2> :last-child,
    .grid3> :last-child {
        margin-bottom: 0;
    }
}

/* --- TABLETS & SMALL LAPTOPS (Min-width 768px) --- */
@media (min-width: 768px) {

    /* Type & Layout */
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .container {
        padding: 0 2rem;
    }

    /* Nav & Buttons */
    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .btn {
        width: auto;
    }

    /* Footer */
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* 2-Column Grids */
    .grid2,
    .grid3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .score-grid {
        flex-direction: row;
        align-items: center;
    }

    .score-main {
        width: 30%;
        border-bottom: none;
        border-right: 1px dashed #ccc;
        padding-bottom: 0;
        padding-right: 2rem;
    }

    .diagnosis-box {
        width: 70%;
    }

    .fuel-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* --- DESKTOPS (Min-width 1024px) --- */
@media (min-width: 1024px) {

    /* Type & Padding */
    p {
        font-size: 1.15rem;
    }

    .section-padding {
        padding: var(--section-padding-desktop);
    }

    .section-header {
        text-align: center;
        display: grid;
        justify-content: center;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    /* Home Hero (Split Layout) */
    .hero {
        flex-direction: row;
        align-items: center;
        padding-top: 0;
        height: 100vh;
        min-height: 700px;
    }

    .hero-content {
        width: 50%;
        padding-left: 5%;
        padding-right: 2rem;
    }

    .hero-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
    }

    /* About Section (Split Layout) */
    .about-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        height: auto;
    }

    .about-content {
        padding: 6rem;
    }

    /* Operator Section (Side by Side) */
    .operator-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 6rem;
    }

    .operator-image {
        width: 40%;
        position: sticky;
        top: 2rem;
    }

    .operator-content {
        width: 60%;
        padding-top: 2rem;
    }

    /* 3-Column Grids */
    .grid3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    /* Featured Pricing Pop */
    .price-card.featured {
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
    }

    .price-card.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }

    .trans-card {
        padding: 3rem 2rem;
    }
}

/* --- LARGE SCREENS (Min-width 1441px) --- */
@media (min-width: 1441px) {

    .hero-content {
        padding-left: 10%;
        padding-right: 4rem;
    }

    .about-content {
        padding: 6rem;
    }
}