:root {
    --red: #DC1F28;
    --navy: #1F2B5B;
    --grey-label: #5A6278;
    --inner-width: 75rem;
    /* 1200px */
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.amaranth {
    font-family: 'Amaranth', sans-serif;
}

.red {
    color: var(--red);
}

.navy {
    color: var(--navy);
}

.white {
    color: #fff;
}

.center {
    text-align: center;
}

/* LAYOUT */
section,
footer {
    width: 100%;
    position: relative;
}

.inner-content {
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 10;
}


/* REFINED HERO SECTION */
#hero {
    padding: 6.25rem 0;
    /* 100px */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3.75rem;
    /* 60px */
}

.hero-text {
    z-index: 10;
    max-width: 37.5rem;
    /* 600px */
}

.hero-text h1 {
    font-size: 3.25rem;
    /* 52px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5625rem;
    letter-spacing: -0.0625rem;
}

.hero-text p {
    font-size: 1.25rem;
    /* 18px */
    color: var(--grey-label);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-art {
    display: flex;
    justify-content: center;
}

#hero-art {
    width: 100%;
    max-width: 31.25rem;
    /* 500px */
    height: auto;
    display: block;
}

.btn-round {
    background: var(--red);
    color: #fff;
    padding: 1rem 2.25rem;
    border-radius: 3.125rem;
    font-weight: 700;
    display: inline-block;
}

/* FOUNDATION */
#foundation {
    padding: 5rem 0 10rem;
    /* 80px */
    background-color: #fafafa;
}

.title-red-section {
    color: var(--red);
    font-size: 2.25rem;
    /* 36px */
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.sub-text {
    color: var(--grey-label);
    max-width: 37.5rem;
    margin: 0 auto 3.75rem;
    font-size: 1rem;
    /* 14px */
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
    /* CEO: Ensures all card borders are the same length */
}

.pillar-card {
    background: #fff;
    padding: 3rem 2rem;
    /* Designer: Increased padding for a more 'premium' feel */
    border-radius: 5px;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--red);
    text-align: left;

    display: flex;
    flex-direction: column;
}

/* 1. Create a fixed 'slot' for the icon */
.pillar-card i {
    height: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    /* Vertically centers icons of different shapes */
    justify-content: flex-start;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.pillar-card [data-lucide] {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--red);
}

/* 2. Create a fixed 'slot' for the title */
.pillar-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;

    /* 
       This is the key: 4.5rem allows for exactly 2 lines of text. 
       A 1-line title and a 2-line title will now occupy the same space.
    */
    min-height: 4.5rem;
    margin-bottom: 1.5rem;

    display: flex;
    align-items: flex-start;
    /* Aligns the TOP line of all titles across the row */
}

.pillar-card p {
    font-size: 1.25rem;
    color: var(--grey-label);
    line-height: 1.6;
    flex-grow: 1;
    /* Pushes everything to align with the card bottom */
    /* font-weight: lighter; */
}

/* ELEVATING (PRODUCT) */
.striped-bg-v {
    /* Keep gradients in PX for pixel-perfection on screens */
    background-image: repeating-linear-gradient(90deg, #fff, #fff 39px, #f4f4f4 39px, #f4f4f4 40px);
    padding: 6.25rem 0 7.5rem;
    position: relative;
    overflow: hidden;
}

.striped-bg-blend-top {
    position: relative;
    padding: 6.25rem 0 7.5rem;
    background-color: #fff; /* Ensure the base is white */
    overflow: hidden;
}

/* THE SEAMLESS OVERLAY FIX */
.striped-bg-blend-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 1. THE STRIPES (Kept in PX for sharpness) */
    background-image: repeating-linear-gradient(
        90deg, 
        transparent, 
        transparent 39px, 
        #f4f4f4 39px, 
        #f4f4f4 40px
    );
    
    /* 2. THE MASK: Fades everything inside this pseudo-element */
    /* top (transparent) to bottom (solid) */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    
    z-index: 1; /* Sits behind the inner-content text */
    pointer-events: none; /* Allows user to click things through the stripes */
}

/* Ensure your content stays on top of the stripes */
.striped-bg-blend-top .inner-content {
    position: relative;
    z-index: 10;
}

/* THE TARGET CLASS */
.striped-bg-blend-bottom {
    position: relative;
    /* Spacing calibrated to our 8px grid system */
    padding: 6.25rem 0 7.5rem; 
    background-color: #ffffff; /* Base medical-white */
    overflow: hidden;
}

/* THE BACKGROUND PATTERN LAYER */
.striped-bg-blend-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 1. THE STRIPES (39px White, 1px Light Grey) */
    background-image: repeating-linear-gradient(
        90deg, 
        transparent, 
        transparent 39px, 
        #f4f4f4 39px, 
        #f4f4f4 40px
    );
    
    /* 2. THE BLEND-BOTTOM MASK */
    /* top (100% opacity) to bottom (0% opacity) */
    -webkit-mask-image: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 100%
    );
    
    z-index: 1;
    pointer-events: none;
}

/* Ensure our high-value content stays above the pattern */
.striped-bg-blend-bottom .inner-content {
    position: relative;
    z-index: 10;
}

.section-title-navy {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3.75rem;
}

.product-pair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

/* THE SLIDER VIEWPORT - Hides items 3 and 4 initially */
.product-slider-viewport {
    width: 100%;
    overflow: hidden;
    /* This is the 'window' */
    margin-bottom: 2.5rem;
}

/* THE TRACK - This is what moves left and right */
.product-slider-track {
    display: flex;
    gap: 1.25rem;
    /* 20px gap */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.product-card {
    /* Each card is slightly less than 50% to account for the gap */
    flex: 0 0 calc(50% - 0.625rem);
    background: #fff;
    padding: 2.5rem;
    text-align: center;
    border-radius: 0.375rem;
}

/* Fix for buttons - remove default styling */
.product-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5625rem;
    line-height: 1.3;
}

.product-card p {
    font-size: 1.25rem;
    color: var(--grey-label);
    line-height: 1.75;
}

/* Slider Controls */
/* Force the icons to have dimensions and a high-contrast color */
.arrow i,
.arrow svg {
    width: 1.5rem !important;
    /* 24px */
    height: 1.5rem !important;
    color: var(--navy);
    /* Match our brand navy */
    display: block;
    stroke-width: 2.5px;
    /* Make them look bold and clickable */
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 100;
    /* Ensure this is ABOVE the giant COMMITMENT text */
}

/* Make sure the buttons themselves aren't being hidden by the reveal animation */
.arrow {
    opacity: 1 !important;
    visibility: visible !important;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.arrow:hover {
    transform: scale(1.2);
    /* Feedback for the user */
    color: var(--red);
}

.dots {
    display: flex;
    gap: 0.75rem; /* 12px */
    align-items: center;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #DDD;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--red);
    transform: scale(1.3); /* The 'Elevated' look */
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.3);
}

/* --- SLIDER DOT CALIBRATION --- */

/* On Desktop, hide dots 3 and 4 */
.dot:nth-child(3),
.dot:nth-child(4) {
    display: none;
}

@media (max-width: 48rem) { /* 768px - Mobile */
    /* On Mobile, show all 4 dots for individual items */
    .dot:nth-child(3),
    .dot:nth-child(4) {
        display: block;
    }
}

.watermark-bottom-section {
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    font-size: 11.25rem;
    /* 180px */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: -1;
    pointer-events: none;
    letter-spacing: 0.3125rem;
}

/* WHO WE SERVE */
.serve-grid {
    display: grid;
    grid-template-columns: 12.5rem 15.625rem 1fr;
    gap: 1vw;
}

.serve-title-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.serve-card {
    background: #fff;
    padding: 2.1875rem;
    border-radius: 0.25rem;
    box-shadow: 0 0.625rem .5rem rgba(0, 0, 0, 0.05);
    border-top: 3.5px solid var(--red);
}

.serve-card p {
    font-size: 1.25rem;
    line-height: 1.75;
}

.timeline-item {
    cursor: pointer;
    transition: color 0.3s ease;
}

.timeline-item:hover {
    color: var(--red);
}

.timeline-container {
    position: relative;
    padding-left: 1.25rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0.625rem;
    bottom: 0.625rem;
    width: 2px;
    background: var(--red);
}

.timeline-list li {
    margin-bottom: 1.875rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ccc;
    position: relative;
}

.timeline-list li.active {
    color: var(--red);
    font-weight: 700;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: -1.5625rem;
    top: 0.1875rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #ddd;
    border-radius: 50%;
}

.timeline-list li.active::before {
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(227, 30, 36, 0.15);
}

/* 1. Target the container holding the two right cards */
.serve-info-col {
    display: flex;
    flex-direction: column;
    /* This ensures the container matches the height of the left-hand cards */
    height: 100%;
    /* This matches the spacing of the rest of your design system */
    gap: 0.9375rem;
}

/* 2. Style the individual cards inside that column */
.serve-info-col .serve-card {
    /* 
       This tells the cards to 'grow' to fill the available space.
       'flex: 1' makes both cards equal in height.
    */
    flex: 1;

    /* 
       Optional: If you want the 'Improved Outcomes' header 
       to be smaller and only the bottom box to stretch:
    */
}

/* CEO'S REFINEMENT: Keep the header small, stretch the body */
.info-header {
    flex: 0 0 auto !important;
    /* Don't stretch this one */
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.info-body {
    flex: 1 1 auto !important;
    /* Force this one to fill all remaining space */
    display: flex;
    flex-direction: column;
    /* justify-content: center; Vertically centers the text in the newly stretched box */
}

/* WHY CHOOSE (STAGGERED) */
/* CONVINCE SECTION REFINEMENT */
#convince {
    padding: 10rem 0;
    /* 160px for breathing room */
    background: #fff;
    overflow: hidden;
    /* Clips the giant watermarks */
}

/* THE WATERMARK SYSTEM */
.watermark-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wm-text {
    font-size: 15rem;
    /* Massive scale */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    /* Fainter for better readability */
    line-height: 0.8;
    white-space: nowrap;
    letter-spacing: -0.625rem;
}

.wm-top {
    align-self: flex-end;
    margin-right: -5rem;
    margin-top: -5rem;
}

.wm-mid {
    align-self: center;
}

.wm-bot {
    align-self: flex-start;
    margin-left: -5rem;
}

.convince-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    /* Centers Logo with Card Stack */
    z-index: 10;
}

/* BRANDING LOGO */
/* WHY CHOOSE LABEL & LINE */
.title-flex-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 0.5rem; */
}

.why-choose-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    /* 24px */
    font-weight: 400;
    margin-bottom: 0.25rem;

    /* THE GRADIENT MAGIC */
    /* Direction: to bottom (100% at top, 0% at bottom) */
    background: linear-gradient(to bottom,
            rgba(18, 26, 51, 1) 0%,
            /* Your Brand Navy at 100% opacity */
            rgba(18, 26, 51, 0) 100%
            /* Your Brand Navy at 0% opacity */
        );

    /* This clips the background to the shape of the text */
    -webkit-background-clip: text;
    background-clip: text;

    /* This makes the actual font color transparent so the background shows through */
    -webkit-text-fill-color: transparent;

    /* Ensure the element is inline-block so the gradient container fits the text exactly */
    display: inline-block;
}

.horizontal-divider-line {
    height: 1px;
    background: #CCCCCC;
    /* Subtle grey from design */
    flex-grow: 1;
    /* Stretches the line to match the design */
    max-width: 12.5rem;
    /* 200px */
}

/* THE BI-COLOR LOGO GLOW */
.brand-logo-glow {
    font-size: 5rem;
    /* 72px */
    line-height: 1;
    letter-spacing: -0.125rem;
    margin-top: 0.25rem;
}

/* Red Glow for 'SOURCE' */
.glow-red {
    color: var(--red);
    text-shadow: 0 0 1.25rem rgba(227, 30, 36, 0.35);
}

/* Navy Glow for 'MED' */
.glow-navy {
    color: var(--navy);
    text-shadow: 0 0 1.25rem rgba(18, 26, 51, 0.35);
}

/* THE STAIRCASE CARDS */
.cards-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns stack to its own container left */
    gap: 0;
    /* Remove gap to use negative margins for overlap */
}

.v-card {
    background: #fff;
    padding: 2rem 2.5rem;
    /* Systematic padding */
    width: 33rem;
    /* 480px - matches the pro feel */
    border-top: 4px solid var(--red);

    /* DEEPER SHADOW for Screenshot 2 look */
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.08);

    border-radius: 0.375rem;
    margin-bottom: -1.5rem;
    /* THE SECRET: Negative margin for overlap */
    transition: transform 0.3s ease, z-index 0.3s;
}

/* STAGGERING LOGIC: Moves cards progressively to the right */
.stagger-1 {
    margin-left: 6rem;
    z-index: 11;
}

.stagger-2 {
    margin-left: 3rem;
    z-index: 12;
    box-shadow: 0 -.5rem 25px rgba(0, 0, 0, 0.25);
}

.stagger-3 {
    margin-left: 6rem;
    z-index: 13;
    box-shadow: 0 -.5rem 25px rgba(0, 0, 0, 0.25);
}

.v-card:hover {
    transform: translateX(0.5rem);
    z-index: 20;
}

/* TYPOGRAPHY REFINEMENT */
.card-header-flex {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.v-card h5 {
    display: inline-block;
    /* Allows for better spacing control */
    margin-left: 0.5rem;
    font-size: 1.10rem;
    /* 18px */
    font-weight: 800;
    color: var(--navy);
}

.v-card p {
    font-size: 1.15rem;
    color: var(--grey-label);
    line-height: 1.7;
    /* Medical text needs space to breathe */
    margin-top: 0.5rem;
}

.red-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--red);
    stroke-width: 2.5px;
    margin-right: 0.5rem;
    /* Technical thickness */
}

/* CONTACT (RED) */
#contact-cta {
    background-color: var(--red);
    color: #fff;
    padding: 7.5rem 0 5rem;
    /* Keeping gradient in PX for visual sharpness */
    background-image: repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255, 255, 255, 0.1) 49px, rgba(255, 255, 255, 0.1) 50px);
}

.connect-vertical-text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 9.375rem;
    /* 150px */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.cta-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 5rem;
}

.cta-headline {
    font-size: 5rem;
    /* 80px */
    font-weight: 800;
    line-height: 0.85;
}

.cta-cards-side {
    position: relative;
    height: 23.75rem;
    /* 380px */
    user-select: none;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(0.75rem);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.75rem;
    padding: 1.5625rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.g-health {
    width: 16.25rem;
    height: 10rem;
    right: 0;
    top: 0;
}

.g-mission {
    width: 21.25rem;
    height: 13.75rem;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.g-mission p {
    font-style: italic;
    font-size: 0.875rem;
    margin-top: 0.625rem;
}

.g-quality {
    width: 16.25rem;
    height: 10rem;
    left: 0;
    bottom: 0;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
}

.outline-box {
    background-color: #DF353D;
    border-top: 2px solid rgba(255, 255, 255, 1);
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    border-radius: 0.25rem;
}

.contact-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: 200;
    gap: 0.5rem;
}

.contact-header [data-lucide] {
    width: 1rem;
    height: 1rem;
    color: #fff;
    stroke-width: 2px;
}

.outline-box p {
    /* THE CEO FIX: Force all numbers to have the exact same width */
    font-variant-numeric: tabular-nums;
    -moz-font-feature-settings: "tnum";
    -webkit-font-feature-settings: "tnum";
    font-feature-settings: "tnum";

    /* THE DESIGNER FIX: Ensure identical weight and size */
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #FFFFFF;
    
    /* Lock the line height to prevent vertical drifting */
    line-height: 1.4;
    margin: 0;
    
    /* Subtle tracking to ensure 'heavy' numbers don't touch */
    letter-spacing: 0.01rem;
}

/* Ensure the box centers them perfectly */

/* RESPONSIVENESS USING EM */
/* 1. ICON VISIBILITY GAUGE */
.hidden {
    display: none !important;
}

#mobile-toggle i {
    width: 1.75rem !important;
    height: 1.75rem !important;
    stroke: var(--navy);
    stroke-width: 2px;
}

/* 2. THE GLASS PANEL (Mobile View) */
@media (max-width: 64rem) {
    .nav-right {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%; /* Full width but transparent */
        height: 100vh;
        
        /* THE GLASS FIX: Translucent Navy/White mix */
        background: rgba(255, 255, 255, 0.85); 
        backdrop-filter: blur(15px); /* This creates the 'Medical Glass' feel */
        -webkit-backdrop-filter: blur(15px);
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 2.5rem;
        
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10000;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* 3. MOBILE DROPDOWN REFINEMENT */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }

    .dropdown-menu li a {
        font-size: 1.1rem; /* Slightly smaller than main links */
        color: var(--grey-label);
        padding: 0.5rem 0;
        opacity: 0.8;
    }

    .has-dropdown.active .nav-icon {
        transform: rotate(180deg);
        color: var(--red);
    }
}

/* --- THE SURGICAL MOBILE CALIBRATION --- */

@media (max-width: 64rem) { /* 1024px - Tablets */
    :root {
        --inner-width: 90%; /* Give more breathing room on the sides */
    }

    .hero-grid, 
    .pillar-grid, 
    .serve-grid, 
    .convince-grid, 
    .cta-main-grid {
        grid-template-columns: 1fr; /* Force 1-column stack */
        gap: 3rem;
        text-align: center;
    }

    /* HERO REFINEMENT */
    .hero-text h1 { font-size: 2.75rem; }
    #hero-art { max-width: 20rem; margin: 0 auto; }
    .hero-text { margin: 0 auto; }

    /* PILLAR GRID */
    .pillar-grid { grid-template-columns: 1fr 1fr; } /* 2-column on tablet */
}

@media (max-width: 48rem) { /* 768px - Mobile Phones */
    section { padding: 5rem 0; } /* Reduce vertical gaps for mobile speed */

    /* TYPOGRAPHY SCALING */
    h1, .display-large, .cta-headline { font-size: 2.25rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.75rem !important; }
    
    /* 1. FOUNDATION: Single Column */
    .pillar-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem; /* Space between the rows */
    }

    /* 2. SHARED SPACING: The "Parity" Rule */
    /* We lock the footprint of the Pillar Card to match the Product Card */
    .pillar-card, 
    .product-card {
        padding: 2.5rem 2rem !important; /* Exact parity with Product Card */
        width: 100%;
        border-radius: 0.5rem;
        box-shadow: 0 1rem 3rem rgba(18, 26, 51, 0.05);
        border-top: 4px solid var(--red);
        margin-bottom: 0; /* Handled by grid gap */
    }

    /* 3. PILLAR ALIGNMENT: The "Technical Spine" */
    .pillar-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
    }

    .pillar-card i, 
    .pillar-card i svg {
        margin-left: 0;
        margin-bottom: 1.5rem;
        width: 2rem !important;
        height: 2rem !important;
    }

    .pillar-card h3 {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: 0;
        text-align: left;
    }

    .pillar-card p {
        font-size: 1.25rem;
        line-height: 1.7;
        text-align: left;
        color: var(--grey-label);
        text-align: center !important;
        margin-bottom: 1rem;
    }

    /* 4. PRODUCT ALIGNMENT: Maintaining the Showroom look */
    .product-card {
        display: flex;
        flex-direction: column;
        align-items: center; /* Product cards stay centered */
        text-align: center;
    }

    /* 2. PRODUCT SLIDER: Show 1 Card at a time */
    .product-card {
        flex: 0 0 100%; /* Take full width */
    }

    /* 3. WHO WE SERVE: Timeline Logic */
    .serve-grid { gap: 1.5rem; }
    .serve-timeline-card { padding: 2rem 1rem; }
    .timeline-list li { font-size: 1rem; margin-bottom: 1.5rem; }
    .info-header h3 { font-size: 1.5rem; }

    /* 4. WHY CHOOSE: Remove the Staircase */
    .cards-side { align-items: center; }
    .v-card { 
        width: 100%; 
        max-width: 100%; 
        margin-left: 0 !important; /* THE FIX: Reset the stagger */
        margin-bottom: 1.5rem; 
        text-align: left;
    }
    .watermark-bg, .watermark-decade { font-size: 4rem; opacity: 0.05; }
    .title-line { display: none; } /* Hide decorative line to save space */

    /* 5. CONTACT CTA: Simplify for focus */
    #contact-cta { padding: 6rem 0; }
    .connect-vertical-text { display: none; } /* Hide ghost text to prevent overlap */
    .cta-cards-side { 
        display: none; /* Hide complex glass cards on mobile to prioritize contact info */
    }
    .contact-boxes { grid-template-columns: 1fr; gap: 1rem; }
    .outline-box { padding: 1.5rem; }
    
    /* 6. FOOTER */
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .f-nav-links, .f-contact-details { align-items: center; }
}