/* ==========================================================================
   Base Elements & Reset Configuration
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-text-white: #ffffff;
    --color-accent: #ff0000; /* Red color */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-speed: 0.25s;
}

html {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    scroll-behavior: smooth;
    letter-spacing: -1px;
}

/* ==========================================================================
   Header Component Core Layout
   ========================================================================== */
.site-header {
    width: 100%;
    background-color: var(--color-bg);
    position: relative;
    z-index: 100;
    padding: 24px 0; /* Creates spatial alignment layout padding */
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   Typography & Component Styling
   ========================================================================== */

.logo img{
    height: 80px;
    width: 100%;
}
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px; /* Uniform spacing from image reference */
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity var(--transition-speed) ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Dropdown styling element */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chevron-down {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: rotate(45deg);
    margin-bottom: 4px;
    transition: transform var(--transition-speed) ease;
}

.dropdown:hover .chevron-down {
    transform: rotate(-135deg);
    margin-bottom: -2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    list-style: none;
    padding: 12px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 15px;
}

/* Premium Rounded Action Button Setup */
.btn-register {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 100px; /* Forces exact capsule layout */
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-speed) ease;
}

.btn-register:hover {
    transform: scale(1.02);
    background-color: #e40000;
}

/* ==========================================================================
   Mobile Elements Setup (Hidden on Large Screen Configurations)
   ========================================================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-speed) ease;
}

.mobile-menu-overlay {
    display: none;
}

/* --- Global Styles & Layout Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #111111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

/* --- Screen Reader Utilities (SEO & Accessibility) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Footer Core Styling --- */
.site-footer {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #f2f2f2;
    padding-top: 64px;
    padding-bottom: 40px;
    overflow: hidden;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Top Segment: Row layout split between columns and subscribe */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Grid Layout for the Three columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 160px);
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.column-list {
    list-style: none;
}

.column-list li {
    margin-bottom: 14px;
}

.column-link {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.column-link:hover {
    color: #000000;
}

/* Newsletter Input Section Styling */
.footer-newsletter {
    max-width: 480px;
    width: 100%;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.newsletter-form {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    height: 56px;
    background-color: #e5e5e5;
    border: none;
    border-radius: 8px;
    padding: 0 60px 0 20px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    outline: none;
    transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.newsletter-input::placeholder {
    color: #666666;
    opacity: 1;
}

.newsletter-input:focus {
    background-color: #dbdbdb;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.newsletter-submit-btn {
    position: absolute;
    right: 16px;
    background: transparent;
    border: none;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: transform 0.15s ease;
}

.newsletter-submit-btn:hover {
    transform: translateX(2px);
}

.submit-arrow-icon {
    width: 20px;
    height: 20px;
}

.form-feedback-message {
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
    font-weight: 500;
}

/* --- Middle Segment: Oversized Monolithic Branding Typography --- */
.footer-branding {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 32px;
    user-select: none;
    width: 100%;
}

.branding-text {
    font-size: clamp(60px, 15vw, 350px);
    font-weight: 900;
    color: #dbdbdb;
    letter-spacing: -0.05em;
    line-height: 0.8;
}

.branding-reg-symbol {
    font-size: clamp(24px, 5vw, 68px);
    font-weight: 700;
    color: #dbdbdb;
    margin-left: 4px;
    line-height: 0.8;
    margin-top: clamp(2px, 0.5vw, 10px);
}

/* --- Bottom Segment: Final Copyright info line & Icons --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 32px;
}

.footer-copyright {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}

.footer-copyright a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icon-link {
    color: #000000;
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: opacity 0.15s ease-in-out;
}

.social-icon-link svg {
    width: 100%;
    height: 100%;
}

.social-icon-link:hover {
    opacity: 0.7;
}

/* --- Media Queries: Adaptive Responsiveness Configurations --- */

/* Tablet Optimization Layout Screen Breaks */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 32px;
    }
    
    .footer-top {
        flex-direction: column;
        justify-content: flex-start;
        gap: 48px;
    }

    .footer-newsletter {
        max-width: 100%;
    }
}

/* Mobile Adaptive Layout Screen Breaks */
@media (max-width: 640px) {
    .site-footer {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        width: 100%;
    }

    .column-title {
        margin-bottom: 16px;
    }

    .newsletter-title {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-branding {
        margin-top: 36px;
        margin-bottom: 24px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
        padding-top: 24px;
    }

    .footer-socials {
        width: 100%;
        justify-content: flex-start;
    }
}

/* --- Global Styles & Variable Definitions --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cyclix-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --color-dark: #000000;
    --color-text-dim: #666666;
    --color-yellow: #ff0000;
    --color-gray-bg: #e5e5e5;
    --color-badge-bg: #f2f2f2;
}

body {
    font-family: var(--cyclix-font);
    background-color: #ffffff;
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Hero Layout Container Construction --- */
.hero-section {
    width: 100%;
    min-height: calc(100vh - 96px); /* Perfect viewport layout accounting for 94px header element height */
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 60px 0;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

/* --- Left Side: Structural Content Components Styling --- */
.hero-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Tiny Upper Pill Link Badge Style */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-badge-bg);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
    transition: background-color 0.2s ease;
}

.hero-badge:hover {
    background-color: #eaeaea;
}

.badge-arrow {
    width: 14px;
    height: 14px;
    margin-left: 8px;
}

/* Primary Header Typography Element Configuration */
.hero-main-title {
    font-size: clamp(48px, 5.2vw, 82px);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

/* Context Body Copy Block Rules */
.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-dim);
    line-height: 1.55;
    max-width: 480px;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

/* Call to Action Container Layout Group */
.hero-action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

/* Button Component 1: Custom Branding Yellow Tone Accent Button */
.btn-primary-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    color: #ffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.btn-primary-yellow:hover {
    filter: brightness(0.96);
}

.btn-primary-yellow:active {
    transform: scale(0.98);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    margin-left: 12px;
}

/* Button Component 2: Soft Gray Balanced Alternative UI Tag */
.btn-secondary-gray {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-badge-bg);
    color: var(--color-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.btn-secondary-gray:hover {
    background-color: #e2e2e2;
}

.btn-secondary-gray:active {
    transform: scale(0.98);
}

/* --- Right Side: Visual Graphical Composite Elements Framing --- */
.hero-media-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.media-inner-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 1 / 1;
}

/* High Definition Core Image Structure */
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Floating Pills Accent Tags Standard Blueprint Specs */
.floating-tag {
    position: absolute;
    background-color: var(--color-dark);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    pointer-events: none;
    user-select: none;
}

/* Precise Floating Tag Layout Positioning Maps */
.tag-endurance {
    top: 15%;
    left: -12%;
}

.tag-community {
    right: -8%;
    top: 45%;
}

.tag-adventure {
    left: 8%;
    bottom: 12%;
}

/* --- Dynamic Smooth Fade-Up Animation Infrastructure --- */
.reveal-item {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential Staggered Delay Framework Assignments */
.hero-content-block .reveal-item:nth-child(1) { transition-delay: 0.1s; }
.hero-content-block .reveal-item:nth-child(2) { transition-delay: 0.22s; }
.hero-content-block .reveal-item:nth-child(3) { transition-delay: 0.34s; }
.hero-content-block .reveal-item:nth-child(4) { transition-delay: 0.46s; }
.hero-media-wrapper.reveal-item { transition-delay: 0.58s; }


/* --- Adaptive Layout Responsiveness Configuration Breaks --- */

/* Desktop & Medium Screen Scaling Optimization Adjustments */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 40px;
        gap: 32px;
    }
    
    .tag-endurance { left: -4%; }
    .tag-community { right: -4%; }
}

/* Tablet Layout Structural Refactor Controls */
@media (max-width: 992px) {
    .hero-section {
        padding: 40px 0 60px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: left;
    }
    
    .hero-content-block {
        align-items: flex-start;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-media-wrapper {
        justify-content: center;
    }
    
    .media-inner-container {
        max-width: 500px;
    }
    
    .tag-endurance { left: -6%; top: 12%; }
    .tag-community { right: -6%; top: 45%; }
    .tag-adventure { left: 4%; bottom: 10%; }
}

/* High-Performance Mobile Display Adjustments */
@media (max-width: 576px) {
    .hero-container {
        padding: 0 24px;
        gap: 48px;
    }
    
    .hero-badge {
        margin-bottom: 24px;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .hero-main-title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .hero-action-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary-yellow, .btn-secondary-gray {
        width: 100%;
        padding: 15px 24px;
        font-size: 15px;
    }
    
    .media-inner-container {
        border-radius: 16px;
    }
    
    .floating-tag {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .tag-endurance { left: -4%; top: 8%; }
    .tag-community { right: -4%; top: 40%; }
    .tag-adventure { left: 4%; bottom: 8%; }
}

/* --- Info Components Layout Grid Framework --- */
.info-grid-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0 80px 0;
}

.info-grid-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Base Flexible Card Layout Standards */
.grid-card {
    border-radius: 28px;
    padding: 56px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    flex-direction: column;
}

/* Color Variant Maps */
.card-accent-yellow {
    background-color: #ff0000; /* Shared structural custom color metric matched precisely */
    color: #ffffff;
    padding: 4vw;
    border-radius: 2vw;
}

.card-dark {
    background-color: #000000;
    color: #ffffff;
    flex-direction: column;
    padding-bottom: 24px;
}

/* Row 1 Architecture Setup (Split banner grid component) */
.info-grid-container > .card-accent-yellow {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    min-height: 480px;
}

.card-text-wrapper {
    flex: 1;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.max-w-text {
    max-width: 480px;
}

/* Inner Elements Typography Rules */
.card-badge {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.06);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 36px;
    letter-spacing: -0.01em;
}

.card-heading-large {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.card-heading-medium {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.card-para-dim {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Exact Interactive Accent Pill Buttons */
.btn-dark-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
    margin-top: auto; /* Secure placement pushes flawlessly downwards */
}

.btn-dark-pill:hover {
    background-color: #1a1a1a;
}

.btn-dark-pill:active {
    transform: scale(0.97);
}

/* Media Segment Split Panel System (Top Card) */
.card-media-split {
    display: flex;
    gap: 16px;
    height: 100%;
    align-items: stretch;
    width: 420px;
    margin-left: 32px;
}

.split-img-box {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.split-img-box img {
    width: 260%;
    height: 100%;
    object-fit: cover;
}

/* Row 2 Architecture Setup (Twin layout structural panel blocks) */
.cards-twin-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Row 2 Graphics Integration Inner Box Setup */
.card-media-embedded {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: auto;
}

.card-media-embedded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Embedded Floating Internal UI Badge Overlays */
.embedded-tag {
    position: absolute;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    pointer-events: none;
    user-select: none;
}

/* Precision Positions mapped from UI references */
.tag-pos-challenge {
    top: 16px;
    left: 16px;
}

.tag-pos-unite {
    bottom: 16px;
    left: 90px;
}

.tag-pos-inspire {
    bottom: 40px;
    right: 16px;
}

/* Dynamic Action Block Structure (Bottom Right Card) */
.card-action-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 150px;
    flex-wrap: wrap;
    gap: 24px;
}

/* Avatar Group Array Stacking Layout Engine */
.avatar-stack-group {
    display: inline-flex;
    flex-direction: row-reverse; /* Reverses line depth layout seamlessly */
}

.stack-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFF46D; /* Matches the parent container backplane perfectly */
    margin-left: -12px; /* Pull elements together cleanly */
    transition: transform 0.2s ease;
}

.stack-avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Medium Layout Screens Refactor Engine */
@media (max-width: 1200px) {
    .info-grid-container > .card-accent-yellow {
        flex-direction: column;
        gap: 40px;
    }

    .card-media-split {
        width: 100%;
        height: 320px;
        margin-left: 0;
    }
}

/* Tablet Layout Structural Shift Control Maps */
@media (max-width: 992px) {
    .info-grid-container {
        padding: 0 40px;
    }

    .cards-twin-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .grid-card {
        padding: 40px;
    }
}

/* Complete Mobile Display Refactor Controls */
@media (max-width: 576px) {
    .info-grid-section {
        padding: 24px 0 48px 0;
    }

    .info-grid-container {
        padding: 0 24px;
        gap: 24px;
    }

    .grid-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .card-badge {
        margin-bottom: 24px;
    }

    .card-heading-large {
        margin-bottom: 32px;
    }

    .card-media-split {
        height: 24px; /* Flattens grid layout footprint dynamically matching fluid look inside UI */
        min-height: 220px;
    }

    .card-media-embedded {
        height: 220px;
    }
    
    .embedded-tag {
        font-size: 13px;
        padding: 8px 16px;
    }

    .tag-pos-unite {
        left: 16px;
    }

    .card-action-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 36px;
    }

    .btn-dark-pill {
        width: 100%;
    }
}

/* --- SECTION2 --- */

/* --- Advantages Modular Components Layout --- */
.advantages-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden; /* Hard shield baseline safeguard */
}

.advantages-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 96px;
    align-items: flex-start;
}

/* --- Left Column Structure --- */
.advantages-media-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.advantages-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
    margin-bottom: 56px;
}

.media-stack-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.stack-img-box {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
}

.stack-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Right Column Content Structure --- */
.advantages-content-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 12px;
}

.advantages-main-title {
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 700;
    color: #000000;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 820px;
    margin-bottom: 56px;
}

.advantages-list-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Row List Item Blueprint Rules */
.advantage-row-item {
    display: flex;
    align-items: flex-start;
    padding: 32px 0 36px 0;
    border-top: 1px solid #e5e5e5;
    gap: 32px;
}

.advantages-list-block .advantage-row-item:last-child {
    padding-bottom: 0;
}

.row-num-meta {
    font-size: 24px;
    font-weight: 500;
    color: #999999;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
    width: 40px;
}

.row-body-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
}

.row-item-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.row-item-desc {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* --- Responsive Layout & Complete Mobile Overflow Fix --- */

/* Medium Layout Screens */
@media (max-width: 1200px) {
    .advantages-container {
        gap: 48px;
        grid-template-columns: 260px 1fr;
    }
    
    .stack-img-box {
        height: 140px;
    }
}

/* Tablets & Small Screens */
@media (max-width: 992px) {
    .advantages-container {
        padding: 0 40px;
        grid-template-columns: 1fr; /* Drop grid layout column splits */
        gap: 40px;
    }

    .advantages-badge {
        margin-bottom: 24px;
    }

    /* Convert visual framework into a seamless horizontal side-by-side array */
    .media-stack-wrapper {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .stack-img-box {
        flex: 1; /* Distribute proportions evenly inside layout view */
        height: 180px;
        min-width: 0; /* Drops hidden browser default layout minimums */
    }

    .advantages-content-col {
        padding-top: 0;
    }

    .advantages-main-title {
        margin-bottom: 40px;
    }
}

/* Mobile Devices (Ensures perfect pixel accuracy, eliminates overflow bugs) */
@media (max-width: 640px) {
    .advantages-section {
        padding: 48px 0;
    }

    .advantages-container {
        padding: 0 24px;
        gap: 32px;
    }

    /* Keep all three images completely visible across all viewports without breaking screens */
    .media-stack-wrapper {
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }

    .stack-img-box {
        height: clamp(80px, 18vw, 130px); /* Dynamically downscales height to fit mobile displays nicely */
        border-radius: 12px;
    }

    .advantages-main-title {
        font-size: 28px;
        margin-bottom: 32px;
        line-height: 1.25;
    }

    .advantage-row-item {
        flex-direction: column; /* Stack numbers directly above titles */
        gap: 8px;
        padding: 24px 0;
    }

    .row-num-meta {
        font-size: 16px;
        width: auto;
    }

    .row-body-content {
        gap: 6px;
    }

    .row-item-title {
        font-size: 20px;
    }

    .row-item-desc {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* --- SECTION2 --- */


/* --- SECTION4 --- */
/* --- SECTION4 --- */

/* --- What We Offer Accordion Structural Layout System --- */
.offer-accordion-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
}

.offer-accordion-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
}

.offer-header {
    margin-bottom: 48px;
    display: flex;
    justify-content: flex-start;
}

.offer-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
}

.accordion-list-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Accordion Node Row Components Styling */
.accordion-item {
    border-top: 1px solid #e5e5e5;
    width: 100%;
    box-sizing: border-box;
}

.accordion-item:last-child {
    border-bottom: 1px solid #e5e5e5; /* Encloses the layout group beautifully matching image references */
}

/* Clickable Main Action Area Trigger Box */
.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    cursor: pointer;
    text-align: left;
    gap: 32px;
}

.accordion-title {
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* Accurate Circular Controller Plus Graphic Badge */
.accordion-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #e5e5e5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-line {
    position: absolute;
    background-color: #000000;
    border-radius: 2px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.line-horizontal {
    width: 18px;
    height: 2.2px;
}

.line-vertical {
    width: 2.2px;
    height: 18px;
}

/* Interactive States Logic Layer Transforms */
.accordion-trigger:hover .accordion-icon-circle {
    background-color: #dbdbdb;
}

/* Underneath Drawer System Hidden Content Frame Wrapper */
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
}

.panel-content-inner {
    padding-bottom: 44px;
    max-width: 820px;
    padding-left: 1vw;
}

.panel-content-inner p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.panel-content-inner a {
    color: red;
}

/* Dynamic Trigger Active Rule Toggles */
.accordion-item.is-expanded .line-vertical {
    transform: rotate(90deg);
    opacity: 0; /* Creates an ultra-premium slide/fade collapse into a true minus symbol layout shape */
}

.accordion-item.is-expanded .line-horizontal {
    transform: rotate(180deg);
}


/* --- Responsive Screen Adaptive Layout Breakpoints --- */

@media (max-width: 992px) {
    .offer-accordion-container {
        padding: 0 40px;
    }
    
    .accordion-trigger {
        padding: 32px 0;
    }

    .panel-content-inner {
        padding-bottom: 32px;
    }
}

@media (max-width: 576px) {
    .offer-accordion-section {
        padding: 48px 0;
    }

    .offer-accordion-container {
        padding: 0 24px;
    }

    .offer-header {
        margin-bottom: 32px;
    }

    .accordion-trigger {
        padding: 24px 0;
        gap: 16px;
    }

    .accordion-title {
        font-size: 22px;
    }

    .accordion-icon-circle {
        width: 40px;
        height: 40px;
    }

    .line-horizontal { width: 14px; height: 2px; }
    .line-vertical { width: 2px; height: 14px; }

    .panel-content-inner {
        padding-bottom: 24px;
    }

    .panel-content-inner p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* --- SECTION4 --- */
/* --- SECTION4 --- */



/* --- SECTION5 --- */
/* --- SECTION5 --- */

/* --- Audience Section Structural Layout Framework --- */
.audience-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.audience-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-header {
    margin-bottom: 24px;
}

.audience-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
}

/* Master 3-Column Layout */
.audience-grid-layout {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    gap: 48px;
    align-items: center;
    width: 100%;
}

/* Side Media Stacking Columns */
.side-media-col {
    display: flex;
    flex-direction: column;
    gap: 160px; /* Expansive layout gap creates the offset floating position effect */
    width: 100%;
}

.col-left {
    padding-top: 40px;
}

.col-right {
    padding-top: 0px;
}

.audience-img-box {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    border-radius: 24px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.audience-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Column Content Layout */
.audience-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* List Content Segments Separated by Rules */
.audience-text-row {
    width: 100%;
    max-width: 680px;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.audience-center-content .audience-text-row:first-child {
    border-top: none; /* First item drops line to match design rules precisely */
    padding-top: 16px;
}

.audience-row-title {
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.audience-row-desc {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* Call to Action Positioning */
.audience-action-row {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 24px;
}

.btn-yellow-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000; /* Exact custom hex configuration match */
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.btn-yellow-pill:hover {
    filter: brightness(0.96);
}

.btn-yellow-pill:active {
    transform: scale(0.98);
}

.btn-arrow-svg {
    width: 16px;
    height: 16px;
    margin-left: 12px;
}


/* --- Responsive Screen Adaptive Layout Breakpoints --- */

/* Medium Layout Desktop & Laptop Adjustments */
@media (max-width: 1200px) {
    .audience-grid-layout {
        grid-template-columns: 180px 1fr 180px;
        gap: 24px;
    }
    
    .side-media-col {
        gap: 120px;
    }
}

/* Tablet Resolution Adaptation Layout Pivot Controls */
@media (max-width: 992px) {
    .audience-container {
        padding: 0 40px;
    }

    /* Pull images out of side grids and position them above content to maintain viewport harmony */
    .audience-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .side-media-col {
        flex-direction: row;
        gap: 16px;
        padding-top: 0;
    }

    /* Convert side arrays into smooth horizontal touch swipe-strip sliders for tablet screens */
    .col-left, .col-right {
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    
    .col-left::-webkit-scrollbar, .col-right::-webkit-scrollbar {
        display: none; /* Hide visual track layouts */
    }

    .audience-img-box {
        flex: 0 0 calc(50% - 8px);
        min-width: 220px;
        aspect-ratio: 1.3 / 1;
        scroll-snap-align: start;
    }

    /* Reorder HTML tree flow visually via CSS Flex layout priorities */
    .col-left {
        order: 1;
    }
    
    .audience-center-content {
        order: 2;
    }
    
    .col-right {
        order: 3;
        margin-top: 16px;
    }

    .audience-text-row {
        padding: 36px 0;
    }
}

/* Clean, High-Contrast Mobile Screen Configurations (Zero Overflow Protection) */
@media (max-width: 576px) {
    .audience-section {
        padding: 48px 0;
    }

    .audience-container {
        padding: 0 24px;
    }

    .audience-img-box {
        flex: 0 0 200px;
        border-radius: 16px;
    }

    .audience-text-row {
        padding: 28px 0;
    }

    .audience-row-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .audience-row-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn-yellow-pill {
        width: 100%;
        padding: 15px 24px;
    }
}

/* --- SECTION5 --- */
/* --- SECTION5 --- */

/* --- SECTION6 --- */
/* --- SECTION6 --- */

/* --- Final CTA Banner Component Design System --- */
.final-cta-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 0 80px 0;
    box-sizing: border-box;
}

.final-cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
    width: 100%;
    min-height: 560px; /* Exact height frame mapping matching desktop UI proportions */
    border-radius: 32px;
    overflow: hidden; /* Encapsulates the media layer backdrop completely */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* --- Background Composite Architecture Layer --- */
.cta-backdrop-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-backdrop-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Keeps the cyclist beautifully aligned on large screen layouts */
}

/* Linear color gradient mask to guarantee high-contrast readability text states */
.cta-overlay-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.2) 100%);
    width: 100%;
    height: 100%;
}

/* --- Foreground Interactive Text Frame Structure --- */
.cta-foreground-content {
    position: relative;
    z-index: 2; /* Sits cleanly on top of graphic backplanes */
    max-width: 640px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-main-title {
    font-size: clamp(36px, 4.2vw, 64px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-description {
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 460px;
    margin-bottom: 48px;
}

/* Action Component Styling rules */
.cta-action-row {
    width: 100%;
}

.btn-yellow-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000; /* Pixel accurate brand highlight yellow token map */
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.btn-yellow-arrow:hover {
    filter: brightness(0.96);
}

.btn-yellow-arrow:active {
    transform: scale(0.98);
}

.cta-arrow-svg {
    width: 16px;
    height: 16px;
    margin-left: 12px;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Tablet Resolution Pivot System Adjustments */
@media (max-width: 992px) {
    .final-cta-container {
        padding: 0;
        margin: 0 40px;
        width: calc(100% - 80px);
        min-height: 500px;
    }
    
    .cta-foreground-content {
        padding: 48px;
        max-width: 520px;
    }

    /* Shift mask values slightly on compact medium window layouts */
    .cta-overlay-tint {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%);
    }
}

/* Mobile Screen Layout Optimization Engine (Zero Overflow Protection) */
@media (max-width: 640px) {
    .final-cta-section {
        padding: 24px 0 48px 0;
    }

    .final-cta-container {
        margin: 0 24px;
        width: calc(100% - 48px);
        min-height: auto; /* Drops rigid layouts to adapt natively to flow parameters */
        border-radius: 24px;
    }

    /* Recenter context distribution for vertical orientation priority grids */
    .cta-overlay-tint {
        background: rgba(0, 0, 0, 0.65); /* Unified solid contrast grid shielding layer */
    }

    .cta-foreground-content {
        padding: 48px 24px;
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }

    .cta-main-title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.15;
    }

    .cta-description {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 36px;
    }

    .btn-yellow-arrow {
        width: 100%; /* Expands tap boundary fields comfortably on high density displays */
        padding: 15px 24px;
    }
}

/* --- SECTION6 --- */
/* --- SECTION6 --- */


/* --- Testimonials Component Structural Layout --- */
.testimonials-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    margin-bottom: 32px;
}

.testimonials-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
}

/* Central Content Architecture */
.testimonial-slider-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1120px;
    gap: 40px;
    margin-bottom: 56px;
}

.testimonial-content-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 820px;
}

.star-rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000000;
    margin-bottom: 24px;
}

.star-rating-row svg {
    width: 20px;
    height: 20px;
}

.testimonial-blockquote {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 600;
    line-height: 1.35;
    color: #000000;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Navigation Circular Controller Arrows Layout */
.slider-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e5e5e5;
    border: none;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.slider-nav-btn svg {
    width: 18px;
    height: 18px;
}

.slider-nav-btn:hover {
    background-color: #dbdbdb;
}

.slider-nav-btn:active {
    transform: scale(0.94);
}

/* --- Lower Interactive Profile Tray Structure --- */
.author-cards-carousel-wrapper {
    width: 100%;
    max-width: 1120px;
    display: flex;
    justify-content: center;
}

.author-cards-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 4px;
    width: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Safely kills standard Firefox inline scroll rail tracks */
}

.author-cards-track::-webkit-scrollbar {
    display: none; /* Safely kills standard Safari and Chrome inline scroll rail tracks */
}

/* Individual Selection Deck Card Layout Styles */
.author-card-node {
    flex: 0 0 calc((100% - (5 * 16px)) / 6); /* Perfect pixel ratio calculation grid math splits into 6 items cleanly */
    min-width: 160px;
    background-color: #FFFEE0; /* Matches pale secondary canvas default tone precisely */
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Highlight Status State overrides */
.author-card-node.is-active {
    background-color: #ff0000; /* Transitions into vibrant target master palette tone */
    transform: translateY(-4px);
}

.author-avatar-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.author-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-lbl {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* --- Global Slider Dynamic Animation States --- */
.slider-fade-out {
    opacity: 0;
    transform: translateY(-8px);
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Tablet & Portrait Refactor Pipeline Adjustments */
@media (max-width: 992px) {
    .testimonials-container {
        padding: 0 40px;
    }

    .testimonial-slider-stage {
        gap: 20px;
        position: relative;
        padding-bottom: 64px;
        margin-bottom: 32px;
    }

    .testimonial-content-card {
        max-width: 100%;
    }

    /* Shift Arrow positions underneath the main testimonial text for cleaner tablet ergonomics */
    .slider-nav-btn {
        position: absolute;
        bottom: 0;
    }

    .btn-prev {
        left: calc(50% - 60px);
    }

    .btn-next {
        right: calc(50% - 60px);
    }

    .author-cards-track {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .author-card-node {
        flex: 0 0 160px;
    }
}

/* High Performance Mobile Screen Adaptive Layout Shifts */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 48px 0;
    }

    .testimonials-container {
        padding: 0 24px;
    }

    .testimonial-slider-stage {
        gap: 12px;
    }

    .star-rating-row {
        margin-bottom: 16px;
    }

    .testimonial-blockquote {
        font-size: 16px;
        line-height: 1.45;
    }
}
/* --- Advantages Section Structural Design System --- */
.advantages-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
}

.advantages-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 96px;
    align-items: flex-start;
}

/* --- Left Column Elements --- */
.advantages-media-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.advantages-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
    margin-bottom: 56px;
    margin-top: 2vw;
}

.media-stack-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 8vw;
}

.stack-img-box {
    width: 100%;
    height: 160px;
    border-radius: 20px;
    overflow: hidden;
}

.stack-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Right Column Content --- */
.advantages-content-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 12px;
}

.advantages-main-title {
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 700;
    color: #000000;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 820px;
    margin-bottom: 56px;
}

.advantages-list-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.advantage-row-item {
    display: flex;
    align-items: flex-start;
    padding: 32px 0 36px 0;
    border-top: 1px solid #e5e5e5;
    gap: 32px;
}

.advantages-list-block .advantage-row-item:last-child {
    padding-bottom: 0;
}

.row-num-meta {
    font-size: 24px;
    font-weight: 500;
    color: #999999;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
    width: 40px;
}

.row-body-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
}

.row-item-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.row-item-desc {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
}


/* --- Responsive Screen Adaptations --- */

/* Laptops & Intermediate Viewports */
@media (max-width: 1200px) {
    .advantages-container {
        gap: 48px;
        grid-template-columns: 260px 1fr;
    }
    
    .stack-img-box {
        height: 140px;
    }
}

/* Tablets (Converts image stacks and layouts gracefully) */
@media (max-width: 992px) {
    .advantages-container {
        padding: 0 40px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages-badge {
        margin-bottom: 24px;
    }

    /* PREVENTS OVERFLOW: Transforms vertical layouts to responsive swipe rows on touch targets */
    .media-stack-wrapper {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 16px;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* Subtle custom scroll track styling */
    .media-stack-wrapper::-webkit-scrollbar {
        height: 4px;
    }
    
    .media-stack-wrapper::-webkit-scrollbar-thumb {
        background-color: #e5e5e5;
        border-radius: 10px;
    }

    .stack-img-box {
        flex: 0 0 280px; 
        height: 180px;
        scroll-snap-align: start;
    }

    .advantages-content-col {
        padding-top: 0;
    }

    .advantages-main-title {
        margin-bottom: 40px;
    }
}

/* Mobile Devices (Zero Horizontal Overflow Protection) */
@media (max-width: 576px) {
    .advantages-section {
        padding: 48px 0;
    }

    .advantages-container {
        padding: 0 24px;
        gap: 32px;
    }

    /* Dynamic size adjustment to prevent content clipping */
    .stack-img-box {
        flex: 0 0 220px; 
        height: 140px;
    }

    .advantages-main-title {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.2;
    }

    .advantage-row-item {
        flex-direction: column;
        gap: 12px;
        padding: 24px 0;
    }

    .row-num-meta {
        font-size: 18px;
        width: auto;
    }

    .row-body-content {
        gap: 8px;
    }

    .row-item-title {
        font-size: 20px;
    }

    .row-item-desc {
        font-size: 12px;
    }
}


/* ==========================================================================
   About Us Page Component Sections
   ========================================================================== */

.about-hero-section {
    width: 100%;
    background-color: #ffffff;
    min-height: calc(100vh - 96px); /* Align perfectly matching global header dimensions */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0px 0;
    box-sizing: border-box;
}

.about-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* --- Left Column Elements Typography --- */
.about-hero-text-pane {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 580px;
}

.about-main-title {
    font-size: clamp(52px, 6.2vw, 92px);
    font-weight: 700;
    color: #000000;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.about-description {
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* --- Right Column Layout Windows & Linear Motion Engines --- */
.about-hero-marquee-pane {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 620px; /* Lock structural framework frame container boundaries cleanly */
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Base Infinite Scroller Tracks Framework Setup */
.marquee-track-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: max-content;
    will-change: transform;
}

.marquee-scroll-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.marquee-img-card {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.marquee-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CSS Hardware Accelerated Motion Signatures --- */

/* Track 1: Downward Translation Animation loop logic */
.col-down .marquee-scroll-group {
    animation: scroll-downway 24s linear infinite;
}

@keyframes scroll-downway {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

/* Track 2: Upward Translation Animation loop logic */
.col-up .marquee-scroll-group {
    animation: scroll-upway 24s linear infinite;
}

@keyframes scroll-upway {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Desktop & Mid-tier Window Adaptations */
@media (max-width: 1200px) {
    .about-hero-container {
        gap: 48px;
        padding: 0 40px;
    }
    
    .about-hero-marquee-pane {
        height: 520px;
    }
}

/* Tablet Resolution Pivot System Configuration */
@media (max-width: 992px) {
    .about-hero-section {
        padding: 40px 0 80px 0;
    }

    .about-hero-container {
        grid-template-columns: 1fr; /* Switch to single grid block layout stack flow */
        gap: 56px;
    }

    .about-hero-text-pane {
        max-width: 100%;
    }

    /* PREVENTS OVERFLOW: Flips marquee orientation layout cleanly to a horizontal row stripe format */
    .about-hero-marquee-pane {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 16px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* Kill standard animation tracking overrides on horizontal tablet tracks */
    .marquee-track-column, .marquee-scroll-group {
        flex-direction: row !important;
        animation: none !important;
        gap: 16px;
        width: auto;
    }
    
    /* Hide repeated mirror copy elements needed only inside desktop loops */
    .marquee-track-column .marquee-scroll-group:nth-child(2) {
        display: none !important;
    }

    .marquee-img-card {
        flex: 0 0 240px;
        aspect-ratio: 1.35 / 1;
        scroll-snap-align: start;
    }
}

/* Mobile Devices Configuration Specs (Zero Horizontal Leakage) */
@media (max-width: 576px) {
    .about-hero-container {
        padding: 0 24px;
        gap: 40px;
    }

    .about-main-title {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .marquee-img-card {
        flex: 0 0 190px;
        border-radius: 14px;
    }
}

/* ==========================================================================
   About Us - Section 1
   ========================================================================== */

   /* --- About Us Detail Promo Section Styling --- */
.about-promo-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 80px 0;
    box-sizing: border-box;
}

.about-promo-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-header {
    margin-bottom: 32px;
}

.promo-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
}

/* Master Typography Headline Framing Block */
.promo-headline-wrapper {
    width: 100%;
    max-width: 960px; /* Limits standard horizontal reading widths accurately */
    margin-bottom: 56px;
}

.promo-main-title {
    font-size: clamp(32px, 2.6vw, 58px);
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

/* --- Interactive Video Play Card Architecture --- */
.promo-media-card {
    position: relative;
    width: 100%;
    max-width: 1120px;
    aspect-ratio: 16 / 9; /* Perfect pixel accurate video frame aspect layout standard ratio */
    border-radius: 28px;
    overflow: hidden; /* Restricts internal scaling artifacts natively */
    cursor: pointer;
    background-color: #f5f5f5;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-darkness-tint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.04); /* Ultra minimal base ambient styling layout layer */
    transition: background 0.3s ease;
}

/* Absolute Floating Circular Play Trigger Controller Button Elements */
.video-play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.25s ease;
}

.play-icon-svg {
    width: 24px;
    height: 24px;
    margin-left: 4px; /* Perfectly realigns structural visual center geometry weight offset */
}

/* Micro-Interactive Hover State Physics Layout Toggles */
.promo-media-card:hover .promo-backdrop-img {
    transform: scale(1.02);
}

.promo-media-card:hover .media-darkness-tint {
    background: rgba(0, 0, 0, 0.08);
}

.promo-media-card:hover .video-play-btn {
    transform: scale(1.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.video-play-btn:active {
    transform: scale(0.96) !important;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Tablet Optimization Refactor Control Sets */
@media (max-width: 992px) {
    .about-promo-container {
        padding: 0 40px;
    }

    .promo-headline-wrapper {
        margin-bottom: 40px;
    }

    .promo-media-card {
        border-radius: 20px;
    }

    .video-play-btn {
        width: 64px;
        height: 64px;
    }

    .play-icon-svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Screen Layout Optimization Engine (Zero Overflow Protection) */
@media (max-width: 576px) {
    .about-promo-section {
        padding: 48px 0;
    }

    .about-promo-container {
        padding: 0 24px;
    }

    .promo-header {
        margin-bottom: 24px;
    }

    .promo-headline-wrapper {
        margin-bottom: 32px;
    }

    .promo-main-title {
        font-size: 26px;
        line-height: 1.25;
    }

    .promo-media-card {
        border-radius: 16px;
        aspect-ratio: 4 / 3; /* Scales box height up slightly on micro viewports for visibility balance */
    }

    .video-play-btn {
        width: 52px;
        height: 52px;
    }

    .play-icon-svg {
        width: 16px;
        height: 16px;
        margin-left: 2px;
    }
}

/* ==========================================================================
   About Us - Section 1
   ========================================================================== */




/* ==========================================================================
   About Us - Section 2
   ========================================================================== */


   /* --- About Us Advantages Cards Grid Section Styling --- */
.about-cards-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.about-cards-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    box-sizing: border-box;
}

/* 4-Column Balanced Grid Layout Engine matching the clean horizontal flow */
.about-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Individual Card Structural Architecture Layout */
.advantage-item-card {
    background-color: #FFFEE0; /* Precise implementation of the pale secondary canvas background tint */
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    min-height: 480px; /* Establishes visual column height uniformity */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}

/* Discrete stagger delays for clean, ordered fluid page appearance animations */
.about-cards-row .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.about-cards-row .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.about-cards-row .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.about-cards-row .reveal-item:nth-child(4) { transition-delay: 0.35s; }

.card-meta-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.card-number-index {
    font-size: 20px;
    font-weight: 500;
    color: #888888;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.card-title-text {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.card-body-description {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    text-align: left;
}

/* Embedded Media Frame Compartments inside cards */
.card-image-box {
    width: 100%;
    aspect-ratio: 1.35 / 1; /* Matches the landscape block formatting profile exactly */
    border-radius: 16px;
    overflow: hidden;
    margin-top: auto; /* Securely forces and anchors graphics clean to the card container base fold */
    background-color: rgba(0, 0, 0, 0.02);
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Micro-Interactive Hover State Responses */
.advantage-item-card:hover {
    transform: translateY(-6px);
    background-color: #FFFAD1; /* Subtle micro illumination background translation shift */
}

.advantage-item-card:hover .card-image-box img {
    transform: scale(1.03);
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Laptops & Mid-tier Screen Modulations */
@media (max-width: 1200px) {
    .about-cards-container {
        padding: 0 40px;
    }

    .about-cards-row {
        grid-template-columns: repeat(2, 1fr); /* Splits layout into an optimized symmetric 2x2 grid pattern */
        gap: 24px;
    }

    .advantage-item-card {
        min-height: auto; /* Releases forced constraints for safe fluid container wrap layout logic */
        padding: 32px 24px;
    }
}

/* Tablet Device Scaling System Overrides */
@media (max-width: 868px) {
    .about-cards-row {
        gap: 20px;
    }
}

/* Complete Mobile Screen Configurations (Zero Horizontal Leakage Layout Shielding) */
@media (max-width: 640px) {
    .about-cards-section {
        padding: 40px 0 60px 0;
    }

    .about-cards-container {
        padding: 0 24px;
    }

    /* FIXES OVERFLOW: Stacks cards cleanly into a singular high-contrast column chain */
    .about-cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-item-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .card-meta-header {
        margin-bottom: 14px;
    }

    .card-number-index {
        font-size: 18px;
    }

    .card-title-text {
        font-size: 20px;
    }

    .card-body-description {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.45;
    }

    .card-image-box {
        aspect-ratio: 1.5 / 1; /* Optimizes graphical viewport dimensions gracefully on small displays */
        border-radius: 12px;
    }
}

/* ==========================================================================
   About Us - Section 2
   ========================================================================== */


/* ==========================================================================
   About Us - Section 2
   ========================================================================== */

   /* --- About Us Testimonials Section Layout --- */
.about-reviews-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.about-reviews-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
}

/* Master 3-Column Layout Grid matching the visual contrast line */
.reviews-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr; /* Center main review column is given premium wider emphasis */
    gap: 40px;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Individual Review Card Node Standards */
.review-display-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* Specific Style Variations: Main Center Focus vs Dimmed Lateral Nodes */
.side-card {
    opacity: 0.25; /* Precise replication of the high-end faded secondary layout line */
}

.center-card {
    opacity: 1;
    padding: 0 16px;
}

/* Yellow circular floating back-arrow overlay alignment mapping */
.floating-left-arrow {
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFF46D; /* Pixel accurate brand yellow token map */
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    pointer-events: auto;
    cursor: pointer;
}

.floating-left-arrow svg {
    width: 16px;
    height: 16px;
}

/* Star Rating Layout Elements */
.star-rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
}

.star-rating-row svg {
    width: 18px;
    height: 18px;
}

.solid-stars {
    color: #000000;
}

.dim-stars {
    color: #b5b5b5; /* Dimmed vector paths for secondary cards */
}

/* Testimonial Quote Typography Blocks */
.review-blockquote-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.55;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

/* Center card typography is assigned premium bold hierarchy scaling */
.center-card .review-blockquote-text {
    font-size: clamp(20px, 2.2vw, 20px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

/* Author Identity Footers */
.review-author-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.author-avatar-frame {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.main-avatar {
    width: 80px;
    height: 80px; /* Center layout profile icon element is prioritized and larger */
}

.author-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-text {
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    letter-spacing: -0.01em;
}

.center-card .author-name-text {
    color: #000000; /* Darker bold state definition for active main text line */
    font-weight: 600;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Medium Window Scaling Modulations */
@media (max-width: 1200px) {
    .reviews-grid-layout {
        gap: 24px;
    }
    
    .floating-left-arrow {
        left: -12px;
    }
}

/* Tablet Device Structural Realignment (Breaks out of lateral fade structure safely) */
@media (max-width: 992px) {
    .about-reviews-container {
        padding: 0 32px;
    }

    /* Convert row layout grids completely into single stack views for visual legibility */
    .reviews-grid-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .side-card {
        opacity: 0.8; /* Restore view state balances so users can read side notes clearly */
    }

    .dim-stars {
        color: #000000; /* Realign star colors for high contrast layout properties */
    }

    .floating-left-arrow {
        display: none !important; /* Strips overlay element indicator when grid breaks flat */
    }
    
    .center-card {
        padding: 0;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        padding: 40px 0;
    }
}

/* High Performance Mobile Screen Display Engine (Zero Overflow Protection) */
@media (max-width: 576px) {
    .about-reviews-section {
        padding: 48px 0;
    }

    .about-reviews-container {
        padding: 0 24px;
    }

    .reviews-header {
        margin-bottom: 24px;
    }

    .reviews-grid-layout {
        gap: 40px;
    }

    .review-blockquote-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .center-card .review-blockquote-text {
        font-size: 18px;
        line-height: 1.4;
    }

    .star-rating-row {
        margin-bottom: 20px;
    }

    .main-avatar {
        width: 72px;
        height: 72px;
    }
}

/* ==========================================================================
   About Us - Section 2
   ========================================================================== */


/* ==========================================================================
   About Us - Section 4
   ========================================================================== */

   /* --- About Us Team Section Layout Framework --- */
.about-team-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.about-team-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Master Top Header Flex Block Layout */
.team-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 56px;
    gap: 32px;
}

.header-left-pane {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.team-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.team-main-title {
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

/* Controller Navigation Arrows Styling rules */
.team-nav-arrows {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 6px; /* Balance baseline structural alignment mechanics */
}

.team-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.team-arrow-btn svg {
    width: 18px;
    height: 18px;
}

.arrow-dim {
    background-color: #f9f9f4; /* Ultra pale background fallback matching image style edge rules */
    color: #d1d1ca;
    cursor: default;
}

.arrow-active {
    background-color: #ff0000; /* Premium brand accent yellow token mapping */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.arrow-active:hover {
    filter: brightness(0.96);
}

.arrow-active:active {
    transform: scale(0.94);
}

/* --- 3-Column Team Grid System Layout Architecture --- */
.team-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* Stagger animation timeline sequence overrides */
.team-grid-layout .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.team-grid-layout .reveal-item:nth-child(2) { transition-delay: 0.18s; }
.team-grid-layout .reveal-item:nth-child(3) { transition-delay: 0.31s; }

/* Individual Profile Card Framework */
.team-profile-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.profile-media-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.12; /* Clean vertical structural portrait crop profile aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 24px;
}

.profile-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Absolute Floating Bottom Right Interactivity Circle Button Base Specs */
.profile-detail-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ff0000; /* Exact matching core brand yellow color allocation */
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    z-index: 5;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.plus-bar-h, .plus-bar-v {
    position: absolute;
    background-color: #ffffff;
    border-radius: 1px;
}

.plus-bar-h { width: 14px; height: 2px; }
.plus-bar-v { width: 2px; height: 14px; }

/* Card Structural Interactive Hover States */
.team-profile-card:hover .profile-media-box img {
    transform: scale(1.02);
}

.team-profile-card:hover .profile-detail-plus {
    transform: scale(1.08) rotate(90deg); /* Modern technical kinetic wheel cross transformation rotate signature */
}

/* Metadata Text Identity Container Rules */
.profile-identity-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.member-name-lbl {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 6px;
}

.member-role-lbl {
    font-size: 15px;
    font-weight: 400;
    color: #888888;
    letter-spacing: -0.01em;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Medium Laptop Screen Configurations */
@media (max-width: 1200px) {
    .about-team-container {
        padding: 0 40px;
    }
}

/* Tablet Device Scaling Realignment (Ensures Safe Fluidity Limits) */
@media (max-width: 992px) {
    .team-section-header {
        margin-bottom: 40px;
    }

    .team-grid-layout {
        gap: 16px;
    }
    
    .profile-media-box {
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .member-name-lbl {
        font-size: 18px;
    }

    .member-role-lbl {
        font-size: 14px;
    }
}

/* High Performance Mobile Screen Display Engine (Zero Horizontal Leakage) */
@media (max-width: 768px) {
    .about-team-section {
        padding: 48px 0;
    }

    .about-team-container {
        padding: 0 24px;
    }

    .team-badge {
        margin-bottom: 16px;
    }

    /* Strips navigation arrow layout blocks when grid breaks into native vertical stack flow */
    .team-nav-arrows {
        display: none !important;
    }

    /* FIXES OVERFLOW: Stacks cards cleanly inside single viewport view lanes */
    .team-grid-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .profile-media-box {
        aspect-ratio: 1 / 1; /* Squares layout blocks natively on phone dimensions for uniform visibility balances */
    }
}

/* ==========================================================================
   About Us - Section 4
   ========================================================================== */


/* ==========================================================================
   Contact Page Component Sections
   ========================================================================== */

.contact-hero-section {
    width: 100%;
    background-color: #ffffff;
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
    box-sizing: border-box;
    position: relative;
}

.contact-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

/* --- Left Side Text Frame Configuration --- */
.contact-context-pane {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 620px;
    padding-top: 10px;
}

.contact-main-title {
    font-size: clamp(48px, 6.2vw, 92px);
    font-weight: 800;
    color: #000000;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.contact-description {
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
    margin-bottom: 60px;
    max-width: 580px;
}

/* Info Channels Display list */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.2s ease;
}

.contact-info-item:hover {
    background-color: #f9f9f9;
}

.info-icon-wrapper {
    width: 24px;
    height: 24px;
    color: #666666;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.info-label {
    font-size: 14px;
    font-weight: 500;
    color: #888888;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.15s ease;
}

.info-value[href]:hover {
    color: #666666;
}

/* --- Right Side Card Shell --- */
.contact-form-pane {
    width: 100%;
    max-width: 560px;
    background-color: #fdfdfd;
    padding: 48px;
    border-radius: 28px;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
}

.interaction-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
}

/* Inputs Architecture */
.form-input, .form-textarea {
    width: 100%;
    height: 56px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 12px;
    padding: 0 20px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    outline: none;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #aaaaaa;
    opacity: 1;
}

.form-input:focus, .form-textarea:focus {
    background-color: #efefef;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form-textarea {
    height: 160px;
    padding: 20px;
    resize: vertical;
}

/* Submit Action Button Core Layout Rules */
.form-submit-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
}

.btn-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF46D; /* Direct Hex palette mapping matches your brand guidelines exactly */
    color: #000000;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 100px;
    cursor: pointer;
    transition: filter 0.15s ease, transform 0.1s ease;
}

.btn-form-submit:hover {
    filter: brightness(0.96);
}

.btn-form-submit:active {
    transform: scale(0.98);
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Laptops & Intermediate Displays Scaling Viewports */
@media (max-width: 1200px) {
    .contact-hero-container {
        gap: 40px;
        padding: 0 40px;
    }
    
    .contact-form-pane {
        padding: 36px;
    }
}

/* Tablet Device Structural Refactors (Eliminates horizontal overflow risks) */
@media (max-width: 992px) {
    .contact-hero-section {
        padding: 40px 0 80px 0;
        min-height: auto;
    }

    .contact-hero-container {
        grid-template-columns: 1fr; /* Force container items flat in grid lines */
        gap: 56px;
    }

    .contact-context-pane {
        max-width: 100%;
        order: 1;
        align-items: center;
        text-align: center;
    }

    .contact-form-pane {
        order: 2;
        max-width: 100%;
        background-color: #ffffff;
        box-shadow: none;
        padding: 0;
    }
    
    .contact-main-title, .contact-description {
        text-align: center;
    }
    
    /* Convert list layout rows to a responsive row block split pattern */
    .contact-info-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .contact-info-item {
        border-bottom: none;
        background-color: #f9f9f9;
        border-radius: 12px;
        padding: 20px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .info-text-wrapper {
        align-items: center;
    }
    
    .form-submit-row {
        justify-content: center;
    }
}

/* Mobile Screen Layout Optimization Engine (Zero Layout Breaks Guarantee) */
@media (max-width: 576px) {
    .contact-hero-section {
        padding: 48px 0;
    }

    .contact-hero-container {
        padding: 0 24px;
        gap: 48px;
    }

    .contact-main-title {
        font-size: 40px;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 36px;
    }
    
    .contact-info-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .interaction-form {
        gap: 20px;
    }
    
    .form-input, .btn-form-submit {
        height: 52px;
        font-size: 14px;
    }
    
    .form-textarea {
        font-size: 14px;
        height: 140px;
    }
    
    .btn-form-submit {
        width: 100%; /* Spreads button click boundaries comfortably on touchscreen targets */
    }
}

/* ==========================================================================
   Join Banner & Integrated High-Contrast Live Sheet Contact Section
   ========================================================================== */

/* --- Upper Presentation Banner Sheet --- */
.join-banner-section {
    width: 100%;
    padding: 40px 0 20px 0;
    box-sizing: border-box;
}

.join-banner-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
    height: 440px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.join-banner-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.join-banner-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.join-banner-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    padding: 0 24px;
    color: #ffffff;
}

.join-banner-title {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.join-banner-desc {
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* --- Lower Main Form Section Area --- */
.live-contact-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    box-sizing: border-box;
}

.live-contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 780px;
    margin-bottom: 56px;
}

.form-pill-badge {
    display: inline-block;
    background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.form-master-title {
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.form-master-desc {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* --- Exact UI Image Matching Black Form Container Architecture --- */
.contact-black-card {
    width: 100%;
    max-width: 1120px;
    background-color: #000000; /* Solid precise matching pitch black container shell */
    border-radius: 28px;
    padding: 56px;
    box-sizing: border-box;
}

.sheet-form-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

.form-fields-triple-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forms exact 3 field layout grid alignment */
    gap: 24px;
    width: 100%;
}

.form-input-node {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
}

.node-label {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; /* Bright high contrast crisp white text titles */
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

/* Field Inputs Architecture */
.node-input, .node-textarea {
    width: 100%;
    height: 56px;
    background-color: #ffffff; /* Pure white interior layout canvas fills */
    border: 2px solid transparent;
    border-radius: 14px; /* Crisp structural padding geometry layout curves */
    padding: 0 20px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.node-input::placeholder, .node-textarea::placeholder {
    color: #999999;
    opacity: 1;
}

.node-input:focus, .node-textarea:focus {
    border-color: #FFF46D; /* Highlight borders illuminate subtle brand yellow metrics upon selection */
}

/* Large message textarea configuration box fields rules */
.form-fields-message-row {
    width: 100%;
}

.node-textarea {
    height: 196px;
    padding: 20px;
    resize: none; /* Maintains structural grid symmetry precisely across viewport alterations */
}

/* Frontend Validation Warning Alerts */
.error-indicator {
    font-size: 13px;
    color: #ff4d4d;
    font-weight: 500;
    margin-top: 6px;
    display: none;
}

.form-input-node.has-error .node-input,
.form-input-node.has-error .node-textarea {
    border-color: #ff4d4d;
}

.form-input-node.has-error .error-indicator {
    display: block;
}

/* --- Control Panel: Bottom Status Message and Yellow Pill Action Button --- */
.form-submission-control-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
    border-top: 1px solid #1a1a1a;
    padding-top: 36px;
    margin-top: 12px;
}

.status-feedback-container {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-height: 24px;
}

.status-feedback-container.success-state { color: #4cd137; }
.status-feedback-container.error-state { color: #11ff00; }
.status-feedback-container.loading-state { color: #ffffff; opacity: 0.7; }

/* The prominent yellow submit pill button matching UI screenshots exactly */
.btn-yellow-pill-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff0000; /* Direct core premium yellow match token allocation */
    color: #ffffff;
    border: none;
    outline: none;
    width: 100%; /* Spreads edge limits natively on mobile, controlled beautifully via flex grids on big display monitors */
    max-width: 380px;
    height: 60px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    transition: filter 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    margin-left: auto; /* Aligns to far right margin boundary cleanly */
}

.btn-yellow-pill-submit:hover:not(:disabled) {
    filter: brightness(0.96);
}

.btn-yellow-pill-submit:active:not(:disabled) {
    transform: scale(0.98);
}

.btn-yellow-pill-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button Loading State Spinner Graphics */
.btn-spinner-loader {
    width: 22px;
    height: 22px;
    border: 3px solid #000000;
    border-top-color: transparent;
    border-radius: 50%;
    position: absolute;
    display: none;
    animation: button-spin-loop 0.7s linear infinite;
}

@keyframes button-spin-loop {
    to { transform: rotate(360deg); }
}

/* Button UI Processing Mode Shifts */
.btn-yellow-pill-submit.processing .btn-text-label {
    opacity: 0;
}

.btn-yellow-pill-submit.processing .btn-spinner-loader {
    display: block;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Laptops & Intermediate Monitors */
@media (max-width: 1200px) {
    .join-banner-container, .live-contact-container {
        padding: 0 40px;
    }
}

/* Tablets Landscape & Portrait Shifts */
@media (max-width: 992px) {
    .form-fields-triple-row {
        grid-template-columns: 1fr; /* Stacks inputs smoothly down single layout rows */
        gap: 28px;
    }

    .contact-black-card {
        padding: 40px;
    }

    .sheet-form-layout {
        gap: 28px;
    }

    .form-submission-control-panel {
        flex-direction: column-reverse; /* Places status notices gracefully above full width mobile buttons */
        align-items: stretch;
        gap: 20px;
        padding-top: 28px;
    }

    .btn-yellow-pill-submit {
        max-width: 100%;
    }
    
    .status-feedback-container {
        text-align: center;
    }
}

/* Phone Screen Mobile Configurations (Zero Horizontal Layout Leakage) */
@media (max-width: 640px) {
    .join-banner-section {
        padding: 24px 0 12px 0;
    }

    .join-banner-container {
        margin: 0 24px;
        width: calc(100% - 48px);
        padding: 24px;
        height: auto;
        min-height: 320px;
        border-radius: 20px;
    }

    .live-contact-section {
        padding: 36px 0 60px 0;
    }

    .live-contact-container {
        padding: 0 24px;
    }

    .contact-form-header {
        margin-bottom: 36px;
    }

    .form-master-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .form-master-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-black-card {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .node-label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .node-input, .node-textarea {
        border-radius: 10px;
        height: 52px;
        font-size: 14px;
    }

    .node-textarea {
        height: 160px;
        padding: 16px;
    }
}

/* ==========================================================================
   Rental Page.
   ========================================================================== */

   /* ==========================================================================
   Cycle Rental Hero Section Layout Architecture
   ========================================================================== */

.rental-hero-section {
    width: 100%;
    background-color: #ffffff;
    min-height: calc(100vh - 96px); /* Align perfectly matching global header dimensions */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0px 0;
    box-sizing: border-box;
}

.rental-hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr; /* Precise column balancing framework split */
    gap: 40px;
    align-items: center;
    width: 100%;
}

/* --- Left Column Elements Design --- */
.rental-text-pane {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.rental-main-title {
    font-size: clamp(54px, 6.8vw, 84px);
    font-weight: 800;
    color: #000000; /* Clean graphite tone match */
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 44px;
}

.rental-main-title .break-line {
    display: block;
}

.rental-main-title .sub-heading-text {
    display: block;
    font-size: clamp(36px, 3.8vw, 56px);
    font-weight: 400;
    color: #ff0000; /* Soft grey text sub-phrase display layer matching image */
    text-transform: none;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 12px;
}

.rental-action-row {
    width: 100%;
}

/* Rounded Cyan Pill Target Selector matching image references precisely */
.btn-cyan-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: red; /* Exact matching deep vibrant process cyan tint */
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 44px;
    border-radius: 100px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}


.btn-cyan-pill:active {
    transform: scale(0.97);
}

/* --- Right Column Diagram Framework Architecture --- */
.rental-diagram-pane {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.diagram-canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 1.4 / 1; /* Maps enough layout margins for indicators without breaking boundaries */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.main-focal-cycle-img {
    width: 72%; /* Allocates proportional side padding boundaries for indicator labels */
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Technical Indicator Point Labels Blueprint Standards */
.feature-pointer-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    z-index: 3;
    pointer-events: none;
}

.feature-pointer-text {
    font-family: Inter; /* Monospace typography structure configuration matching image style rule */
    font-size: 14px;
    font-weight: 600;
    color: #ff0000; /* Unified brand feature cyan */
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.feature-pointer-text.highlighted-cyan {
    color: #ff0000;
    font-weight: 700;
}

/* Vector Arrow Pointer Connections Canvas Lines Box Layout */
.pointer-arrow-svg {
    position: absolute;
    width: 48px;
    height: 48px;
}

/* --- Absolute Layout Node Coordinate Matrices Mapping Layout --- */

/* Pos 1: Free Maintenance */
.pos-free-maintenance {
    top: 15%;
    left: 20%;
    text-align: right;
    align-items: flex-end;
}
.svg-top-left {
    bottom: -32px;
    right: -24px;
}

/* Pos 2: 350+ Cycle Options */
.pos-cycle-options {
    top: 2%;
    left: 54%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
}
.svg-top-center {
    bottom: -46px;
}

/* Pos 3: Exchange Anytime */
.pos-exchange-anytime {
    top: 13%;
    right: 14%;
    text-align: left;
    align-items: flex-start;
}
.svg-top-right {
    bottom: -32px;
    left: -24px;
}

/* Pos 4: Top Notch Condition */
.pos-top-condition {
    bottom: 5%;
    left: 18%;
    text-align: right;
    align-items: flex-end;
}
.svg-bottom-left {
    top: -38px;
    right: -24px;
}

/* Pos 5: Home Delivery & Pickup */
.pos-home-delivery {
    bottom: -2%;
    left: 54%;
    transform: translateX(-50%);
    text-align: center;
    align-items: center;
}
.svg-bottom-center {
    top: -46px;
}

/* Pos 6: Custom Duration */
.pos-custom-duration {
    bottom: 5%;
    right: 12%;
    text-align: left;
    align-items: flex-start;
}
.svg-bottom-right {
    top: -38px;
    left: -24px;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Intermediate Laptops Viewports Display Modulations */
@media (max-width: 1200px) {
    .rental-hero-container {
        gap: 32px;
        padding: 0 40px;
    }
    
    .feature-pointer-text {
        font-size: 12px;
    }
    
    .pointer-arrow-svg {
        display: none !important; /* Strips complex structural vector paths early on desktop downscale intervals */
    }
}

/* Tablet Device Structural Realignment (Pivots framework to single stack flow safely) */
@media (max-width: 992px) {
    .rental-hero-section {
        padding: 60px 0 80px 0;
    }

    .rental-hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .rental-text-pane {
        align-items: center;
        text-align: center;
    }

    .rental-main-title .break-line {
        display: inline-block;
        margin-left: 12px;
    }

    .rental-main-title .sub-heading-text {
        margin-top: 8px;
    }
    
    .diagram-canvas-wrapper {
        max-width: 600px;
    }
}

/* Complete Mobile Screen Configurations (Converts layout framework into zero overflow grid layers) */
@media (max-width: 640px) {
    .rental-hero-section {
        padding: 48px 0;
    }

    .rental-hero-container {
        padding: 0 24px;
        gap: 40px;
    }

    .rental-main-title {
        font-size: 38px;
        margin-bottom: 28px;
    }

    .rental-main-title .break-line {
        margin-left: 8px;
    }

    .rental-main-title .sub-heading-text {
        font-size: 24px;
    }

    .btn-cyan-pill {
        width: 100%; /* Spreads click boundaries comfortably across touchscreen limits */
        padding: 16px 24px;
        font-size: 15px;
    }

    /* PREVENTS OVERFLOW: Flattens absolute diagram tags completely to protect viewport scales */
    .diagram-canvas-wrapper {
        display: flex;
        flex-direction: column;
        height: auto;
        aspect-ratio: auto;
        gap: 32px;
    }

    .main-focal-cycle-img {
        width: 100%;
        max-width: 320px;
        order: -1; /* Pushes bike illustration cleanly to top fold position */
    }

    /* Convert pointers matrix into a beautifully readable 2-column mobile meta item grid loop */
    .feature-pointer-tag {
        position: static !important;
        transform: none !important;
        text-align: center !important;
        align-items: center !important;
        background-color: #f8fafc;
        padding: 14px;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
        border-left: 3px solid #ff0000;
    }

    /* Instantly reconstruct wrapper layout to hold mobile flex grid blocks */
    .diagram-canvas-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
    }
    
    .main-focal-cycle-img {
        grid-column: 1 / -1;
        justify-self: center;
        margin-bottom: 12px;
    }
    
    .feature-pointer-text br {
        display: none; /* Flatten string wrap layout breaks natively for single line presentation */
    }
}

/* ==========================================================================
   Cycle Rental Category Horizontal Infinite Marquee Section
   ========================================================================== */

.rental-marquee-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden; /* Absolutely seals viewport window to prevent page breakage horizontal overflows */
}

/* Master Viewport Layer Mask Configuration */
.rental-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* --- Core Infinite Kinetic Motion Engine --- */
.marquee-linear-track {
    display: flex;
    gap: 60px; /* Expansive layout gap creates breathing room between columns matching image reference */
    width: max-content;
    flex-shrink: 0;
    will-change: transform;
}

/* Smooth linear progression going accurately from left margin to right margin layout rules */
.direction-left-to-right {
    animation: marquee-run-right 30s linear infinite;
}

@keyframes marquee-run-right {
    0% {
        transform: translateX(-50%); /* Starts shifted halfway back so loop is completely filled from onset */
    }
    100% {
        transform: translateX(0%);
    }
}


/* --- Individual Category Slide Node Design Architecture --- */
.category-slide-node {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px; /* Rigid dimension limits guarantee uniform geometry scales along translation lines */
    box-sizing: border-box;
}

/* Balanced Oval/Circle Layout Backdrop Backplane precisely matching source truth image */
.circle-backdrop {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.circle-backdrop img {
    width: 105%; /* Forces cycle graphic vectors to overflow out slightly past container lines for premium 3D layered look */
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: translateY(12px); /* Offsets positioning coordinates slightly lower to align layout bases accurately */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro-Interaction Highlight responses when individual card segments take mouse focuses */
.category-slide-node:hover .circle-backdrop img {
    transform: translateY(4px) scale(1.04);
}

/* --- Exact UI Color Token Mappings Framework --- */
.bg-pale-purple { background-color: #f1efff; }
.bg-pale-green  { background-color: #e6f7f0; }
.bg-pale-blue   { background-color: #e4f4fd; }
.bg-pale-pink   { background-color: #ffeff5; }

/* --- Precise Floating Category Label Badges Styling Rules --- */
.category-label-badge {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%); /* Locks center position weight alignments over background circles */
    z-index: 3;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

/* Floating Badge Color Tokens mapping visual designs */
.badge-purple { background-color: #6c5ce7; }
.badge-green  { background-color: #00b894; }
.badge-blue   { background-color: #0984e3; }
.badge-pink   { background-color: #e84393; }

/* SEO accessibility hide rules helper utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Tablets Landscape & Portrait Shifts */
@media (max-width: 992px) {
    .rental-marquee-section {
        padding: 60px 0;
    }
    
    .marquee-linear-track {
        gap: 40px; /* Scales spacing down slightly on intermediary layout flips */
    }

    .category-slide-node {
        width: 240px;
    }

    .circle-backdrop {
        width: 220px;
        height: 220px;
    }
    
    .category-label-badge {
        font-size: 12px;
        padding: 6px 14px;
        top: 24px;
    }
}

/* Phone Screen Mobile Configurations (Ensures fast rendering and continuous loop fluidity) */
@media (max-width: 576px) {
    .rental-marquee-section {
        padding: 40px 0;
    }

    .marquee-linear-track {
        gap: 24px;
        /* Accelerates cycle loops on small viewports for continuous motion consistency across narrower screen spaces */
        animation-duration: 20s; 
    }

    .category-slide-node {
        width: 190px;
    }

    .circle-backdrop {
        width: 170px;
        height: 170px;
    }

    .category-label-badge {
        font-size: 11px;
        padding: 5px 12px;
        top: 18px;
        border-radius: 4px;
    }
}

/* ==========================================================================
   Cycle Rental Workflow "How it Works" Component Design
   ========================================================================== */

.rental-process-section {
    width: 100%;
    background-color: #f8fafc; /* Crisp, ultra-clean soft off-white baseline background backdrop layout */
    padding: 100px 0 120px 0;
    box-sizing: border-box;
}

.rental-process-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* --- Section Structural Header Display --- */
.process-section-header {
    text-align: center;
    margin-bottom: 72px;
    width: 100%;
}

.process-master-title {
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 700;
    color: #222222; /* Premium charcoal dark color palette */
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

/* --- Balanced 4-Column Execution Linear Matrix Row Grid System --- */
.process-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forms exact 4 step spatial grid alignments */
    gap: 32px;
    width: 100%;
}

/* Custom Ordered Element Transitions Delays Staggers System Maps */
.process-grid-row .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.process-grid-row .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.process-grid-row .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.process-grid-row .reveal-item:nth-child(4) { transition-delay: 0.35s; }

/* Individual Process Block Node Styling Architecture */
.process-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive Graphics Canvas Containers */
.process-icon-canvas {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 28px;
}

/* Precise Visual Brand Color Accent Vector Styling Rules */
.process-vector-svg {
    width: 68px;
    height: 68px;
    color: #ff0000; /* Deep, vivid process sky cyan core mapping token */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light background design aesthetics details elements overlay mapping */
.sparkle-accent {
    color: #38bdf8; /* Soft glowing ice blue auxiliary points decoration */
    opacity: 0.65;
}

/* Micro-Interaction Card Elements Shifts */
.process-step-node:hover {
    transform: translateY(-4px);
}

.process-step-node:hover .process-vector-svg {
    transform: scale(1.06) rotate(1deg);
}

/* --- Meta Content Text Block Typographic Hierarchies --- */
.process-step-title {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 14px;
}

.process-step-desc {
    font-size: clamp(14px, 1.2vw, 15px);
    font-weight: 400;
    color: #666666; /* Subdued clean layout textual descriptions string */
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 260px; /* Limits copy wrap parameters to reflect desktop screenshot exactly */
    margin: 0;
}


/* --- Adaptive Responsive Breakpoint Framework Maps --- */

/* Medium Laptop Screen Configurations */
@media (max-width: 1200px) {
    .rental-process-container {
        padding: 0 40px;
    }

    .process-grid-row {
        gap: 20px;
    }
}

/* Tablet Device Scaling System (Splits workflow matrices grid perfectly into 2x2 pattern layouts) */
@media (max-width: 992px) {
    .rental-process-section {
        padding: 80px 0;
    }

    .process-section-header {
        margin-bottom: 56px;
    }

    .process-grid-row {
        grid-template-columns: repeat(2, 1fr); /* Symmetric 2-column balancing framework shift */
        gap: 48px 24px;
    }

    .process-step-desc {
        max-width: 280px; /* Expands reading wrap areas on wider tablet frames */
    }
}

/* Complete Mobile Screen Configurations (Converts grid rows into unified flat list chain blocks) */
@media (max-width: 640px) {
    .rental-process-section {
        padding: 60px 0;
    }

    .rental-process-container {
        padding: 0 24px;
    }

    .process-section-header {
        margin-bottom: 44px;
    }

    /* SAFE OVERFLOW ENGINE SHIELD: Wraps chain items downward cleanly along single viewport lanes */
    .process-grid-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step-node {
        padding: 0;
    }

    .process-icon-canvas {
        margin-bottom: 16px;
        width: 90px;
        height: 90px;
    }

    .process-vector-svg {
        width: 56px;
        height: 56px;
    }

    .process-step-title {
        margin-bottom: 8px;
    }

    .process-step-desc {
        max-width: 100%; /* Allows maximum fluid screen utilization on modern device screens */
        font-size: 14px;
        line-height: 1.45;
    }
}

/* ==========================================================================
   Cycle Rental Catalog Matrix Grid Style Rules
   ========================================================================== */

.rental-catalog-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 120px 0;
    box-sizing: border-box;
}

.catalog-grid-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    box-sizing: border-box;
}

/* Master 3-Column Uniform Product Layout Framework Grid */
.catalog-cards-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    width: 100%;
}

/* Stagger transition delay mappings across grid rows */
.catalog-cards-matrix .reveal-item:nth-child(1), .catalog-cards-matrix .reveal-item:nth-child(4) { transition-delay: 0.05s; }
.catalog-cards-matrix .reveal-item:nth-child(2), .catalog-cards-matrix .reveal-item:nth-child(5) { transition-delay: 0.15s; }
.catalog-cards-matrix .reveal-item:nth-child(3), .catalog-cards-matrix .reveal-item:nth-child(6) { transition-delay: 0.25s; }

/* Individual Product Profile Cards Shell */
.catalog-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rounded Soft Media Backplane Containers */
.product-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}



.product-media-wrapper img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* --- Absolute Floating Component Badges Architecture --- */

/* Badge 1: Category Type Tag (Top Right Corner) */
.product-tag-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.top-badge-yellow {
    background-color: #fffbbf; /* Exact match pale desaturated yellow badge from screenshot layout */
    color: #444411;
}

/* Badge 2: Operational Booking State Flag (Bottom Right Inner Edge) */
.product-status-badge {
    position: absolute;
    bottom: 48px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.status-red {
    background-color: #ba1111; /* Clean high-end brand dark red color tone match */
}

/* Badge 3: Chronological Availability Flag Line (Stacked Directly Below Red Status) */
.availability-timeline-lbl {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: #fde8e8; /* Soft pale pink information text backplane */
    color: #9b1c1c;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: -0.01em;
}

/* Card Metadata Copy Frame */
.product-details-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 4px;
}

.product-model-name {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-specs-summary {
    font-size: 14px;
    font-weight: 500;
    color: #999999; /* Clean gray text configuration */
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

/* --- Lower Footer Purchase Block Component Row --- */
.product-purchase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pricing-display-group {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency-val {
    font-size: 22px;
    font-weight: 800;
    color: red; /* Deep process cyan brand pricing color configuration */
    letter-spacing: -0.02em;
}

.price-duration-unit {
    font-size: 14px;
    font-weight: 500;
    color: #888888;
}

/* --- Clean Visual Outline Action Control Buttons --- */
.btn-outline-prebook {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid red; /* Crisp process cyan boundary line matches image specs */
    background-color: transparent;
    color: red;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 100px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn-outline-prebook:hover {
    background-color: red;
    color: #ffffff;
}

.btn-outline-prebook:active {
    transform: scale(0.96);
}

/* Card Container Kinetic Focus Responses */
.catalog-product-card:hover {
    transform: translateY(-4px);
}

.catalog-product-card:hover .product-media-wrapper img {
    transform: scale(1.03);
}


/* ==========================================================================
   Adaptive Responsive Breakpoint Framework Maps
   ========================================================================== */

/* Medium Laptops Modification Breaks */
@media (max-width: 1200px) {
    .catalog-grid-container {
        padding: 0 40px;
    }

    .catalog-cards-matrix {
        gap: 32px 24px;
    }
}

/* Tablets Spatial Scaling Pivot (Splits rows into clean dual column arrays safely) */
@media (max-width: 992px) {
    .catalog-cards-matrix {
        grid-template-columns: repeat(2, 1fr); /* 2x3 balanced card tile realignment */
        gap: 40px 24px;
    }
    
    .product-media-wrapper {
        border-radius: 20px;
    }
}

/* Phone Screen Mobile Configurations (Ensures safe single tracking columns with zero horizontal scroll breaks) */
@media (max-width: 640px) {
    .rental-catalog-section {
        padding: 40px 0 80px 0;
    }

    .catalog-grid-container {
        padding: 0 24px;
    }

    /* Shields mobile frames from overflow by flattening items down vertically */
    .catalog-cards-matrix {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .product-media-wrapper {
        border-radius: 16px;
        margin-bottom: 14px;
    }
    
    .product-model-name {
        font-size: 18px;
    }

    .product-specs-summary {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .price-currency-val {
        font-size: 20px;
    }
    
    .btn-outline-prebook {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* ==========================================================================
   Rental Page.
   ========================================================================== */

/* ==========================================================================
   Premium Membership Pricing Cards Grid Module
   ========================================================================== */

.pricing-membership-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0 0px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.pricing-section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* --- Section Master Headers Styling --- */
.pricing-main-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    margin-bottom: 64px;
}

.pricing-master-title {
    font-size: clamp(44px, 3.3vw, 76px);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.pricing-master-desc {
    font-size: 17px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* --- Symmetric 3-Column Plan Grid Framework --- */
.pricing-cards-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    align-items: stretch; /* Forces all subscription columns to link to identical heights cleanly */
}

/* Ordered animation appearance delays cascade configurations */
.pricing-cards-matrix .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.pricing-cards-matrix .reveal-item:nth-child(2) { transition-delay: 0.18s; }
.pricing-cards-matrix .reveal-item:nth-child(3) { transition-delay: 0.31s; }

/* Base Plan Card Architecture Component Node Layout */
.pricing-tier-card {
    border-radius: 28px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

/* Card Variation Block 1 & 3: Standard Highlight Brand Yellow Matrix Styles */
.pricing-tier-card.variant-yellow {
    background-color: #ff0000; /* Exact matching high fidelity brand yellow tone allocation */
    color: #ffffff;
}

/* Card Variation Block 2: Inverted Primary Center Stance Staged Core Pitch Black Styles */
.pricing-tier-card.variant-black {
    background-color: #000000;
    color: #ffffff;
}

/* Upper Metadata Header Text Line Compartments */
.card-upper-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tier-title-lbl {
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.1;
}

.tier-summary-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Numerical Pricing Large Typography Stack Blocks */
.tier-pricing-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.price-currency-symbol {
    font-size: clamp(48px, 4.4vw, 68px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.variant-black .price-currency-symbol {
    color: #ffffffeb; /* Inverted center layout price parameters light up beautifully in yellow color tokens */
}

.price-duration-lbl {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Minimal Structural Dividing Line Framework */
.card-divider-line {
    width: 100%;
    border: none;
    height: 1px;
    margin: 28px 0;
    box-sizing: border-box;
}

.variant-yellow .card-divider-line { background-color: rgba(0, 0, 0, 0.08); }
.variant-black .card-divider-line  { background-color: rgba(255, 255, 255, 0.12); }

/* --- Bulleted Plan Benefits Feature Lists --- */
.tier-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tier-features-list li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    position: relative;
    padding-left: 18px; /* Room for structural list disc circles */
    text-align: left;
}

/* Exact matching solid micro feature circular item bullet discs */
.tier-features-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.variant-yellow .tier-features-list li::before { background-color: #ffffff; }
.variant-black .tier-features-list li::before  { background-color: #ffffff; }

/* --- Action Control Buttons Components Area --- */
.card-action-wrapper {
    width: 100%;
    margin-top: auto; /* Permanently links and aligns buttons flat to the card baseline bounds */
}

.btn-pill-checkout {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Securely forces text left and arrow graphic far right margin boundaries */
    width: 100%;
    height: 56px;
    border-radius: 100px;
    padding: 0 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

/* Action button variation 1: High Contrast Solid Black Button */
.btn-pill-checkout.btn-black {
    background-color: #000000;
    color: #ffffff;
}

/* Action button variation 2: High Contrast Brand Yellow Button */
.btn-pill-checkout.btn-yellow {
    background-color: #ff0000;
    color: #ffffff;
}

.checkout-arrow-svg {
    width: 16px;
    height: 16px;
}

/* Micro-Interactive Kinetic Physics On Focus Hover States */
.pricing-tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

.pricing-tier-card.variant-black:hover {
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.15);
}

.btn-pill-checkout:hover {
    filter: brightness(1.08);
}

.variant-black .btn-pill-checkout:hover {
    filter: brightness(0.96); /* Correct balance context shifting profiles for light button maps */
}

.btn-pill-checkout:active {
    transform: scale(0.98);
}


/* ==========================================================================
   Adaptive Responsive Breakpoint Framework Maps
   ========================================================================== */

/* Medium Laptop Screen Configurations */
@media (max-width: 1200px) {
    .pricing-section-container {
        padding: 0 40px;
    }

    .pricing-cards-matrix {
        gap: 20px;
    }

    .pricing-tier-card {
        padding: 40px 28px;
    }
}

/* Tablet Device Structural Realignment (Breaks out of horizontal 3x into clean vertical flow stacked sheets smoothly) */
@media (max-width: 992px) {
    .pricing-main-header {
        margin-bottom: 48px;
    }

    /* SAFE OVERFLOW INTERCEPTOR SHIELD: Stacks tiers cleanly along a singular grid lane tracking view */
    .pricing-cards-matrix {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 580px; /* Restricts maximum width boundaries on tablet folds for clean tracking balances */
    }

    .pricing-tier-card {
        padding: 44px 36px;
    }
}

/* Complete Mobile Screen Configurations (Zero Horizontal Layout Leakage Shielding) */
@media (max-width: 576px) {
    .pricing-membership-section {
        padding: 60px 0;
    }

    .pricing-section-container {
        padding: 0 24px;
    }

    .pricing-master-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .pricing-master-desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .pricing-tier-card {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .tier-title-lbl {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .tier-summary-desc {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .card-divider-line {
        margin: 20px 0;
    }

    .tier-features-list {
        margin-bottom: 36px;
        gap: 14px;
    }

    .tier-features-list li {
        font-size: 14px;
    }

    .btn-pill-checkout {
        height: 52px;
        padding: 0 20px;
        font-size: 13px;
    }
}

#fullimg img{
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: 100%;
}

.promo-main-title-img{
    font-size: 2vw;
    text-align: center;
    
}

/* ==========================================================================
   Premium Single Featured Pricing Layout Block ("image_98306f.png")
   ========================================================================== */

.featured-pricing-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 120px 0;
    box-sizing: border-box;
    overflow: hidden; /* Restricts absolute pill leakages completely */
}

.featured-pricing-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Strict 50/50 balanced side split alignment */
    gap: 90px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Stagger transition delay mappings across columns */
.featured-pricing-container .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.featured-pricing-container .reveal-item:nth-child(2) { transition-delay: 0.2s; }

/* --- Left Column Interactive Image Presentation --- */
.featured-image-pane {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-interactive-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1.05 / 1; /* Matches the rectangular geometry of image_98306f.png perfectly */
    border-radius: 24px;
    overflow: visible; /* Allows micro tag overflow styling native aesthetics */
}

.backdrop-cyclist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.03);
}

/* Floating Context Black Pill Tags Architecture */
.context-pill-tag {
    position: absolute;
    background-color: #000000;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 3;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Exact placement matrix parameters matching reference image layout */
.pos-endurance {
    top: 15%;
    left: -40px;
}

.pos-community {
    bottom: 40%;
    right: -45px;
}

.pos-adventure {
    bottom: 12%;
    left: -15px;
}

/* Kinetic image area response on parent grid focus */
.featured-image-pane:hover .context-pill-tag {
    transform: scale(1.04);
}

/* --- Right Column Exact UI Vibrant Red Card Architecture --- */
.featured-card-pane {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elite-highlight-card {
    width: 100%;
    max-width: 520px;
    background-color: #ff0000; /* Exact high fidelity signature red color matching target design source truth */
    color: #ffffff;
    border-radius: 28px;
    padding: 56px 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 16px 48px rgba(255, 0, 0, 0.12);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-highlight-card:hover {
    transform: translateY(-4px);
}

.elite-title-text {
    font-size: clamp(32px, 2.6vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.elite-summary-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    opacity: 0.9;
    margin-bottom: 36px;
}

/* Large Numerical Price Styling Group */
.elite-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 44px;
}

.elite-price-amount {
    font-size: clamp(54px, 4.8vw, 76px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.elite-price-duration {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Custom Bulleted Content Architecture lists */
.elite-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 56px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.elite-features-list li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
    text-align: left;
}

/* Clean solid white bullet discs precisely scaling list rows */
.elite-features-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ffffff;
}

/* --- Premium Pill Action Link Elements --- */
.elite-action-row {
    width: 100%;
    margin-top: auto;
}

.btn-pill-checkout-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    background-color: #000000; /* Crisp contrasting dark black anchor shell */
    color: #ffffff;
    border-radius: 100px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.btn-pill-checkout-dark:hover {
    background-color: #111111;
}

.btn-pill-checkout-dark:active {
    transform: scale(0.98);
}

.checkout-arrow-svg {
    width: 16px;
    height: 16px;
}


/* ==========================================================================
   Adaptive Responsive Breakpoint Framework Maps
   ========================================================================== */

/* Medium Laptop Screen Configurations */
@media (max-width: 1200px) {
    .featured-pricing-container {
        padding: 0 40px;
        gap: 40px;
    }
    
    .elite-highlight-card {
        padding: 44px 36px;
    }
}

/* Tablet Device Realignment (Pivots horizontal columns safely into a singular display layout block stack) */
@media (max-width: 992px) {
    .featured-pricing-container {
        grid-template-columns: 1fr; /* Stacks items vertically flat */
        gap: 64px;
        max-width: 580px; /* Aligns maximum fluid width metrics uniformly matching preceding blocks */
    }

    .image-interactive-wrapper {
        max-width: 100%;
    }

    /* Pull in coordinates slightly on narrower screens to prevent side screen edge clip leaks */
    .pos-endurance { left: -10px; }
    .pos-community { right: -10px; }
    .pos-adventure { left: -5px; }
}

/* Complete Mobile Screen Configurations (Zero Horizontal Layout Leakage Shielding) */
@media (max-width: 576px) {
    .featured-pricing-section {
        padding: 48px 0 80px 0;
    }

    .featured-pricing-container {
        padding: 0 24px;
        gap: 48px;
    }

    .elite-highlight-card {
        padding: 36px 24px;
        border-radius: 24px;
    }

    .elite-title-text {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .elite-summary-text {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .elite-pricing-block {
        margin-bottom: 32px;
    }

    .elite-features-list {
        margin-bottom: 40px;
        gap: 14px;
    }

    .elite-features-list li {
        font-size: 14px;
    }

    /* Convert floating image badges into an ordered, clean layout footer indicator sequence on small phone screens */
    .context-pill-tag {
        position: static !important;
        transform: none !important;
        font-size: 12px;
        padding: 6px 14px;
        background-color: #f3f4f6;
        color: #1f2937;
        box-shadow: none;
    }

    .image-interactive-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
        aspect-ratio: auto;
    }

    .backdrop-cyclist-img {
        aspect-ratio: 1.2 / 1;
        order: -1; /* Keeps primary illustration tracking at the top fold */
    }

    /* Instantly forms a flat layout row container block to cleanly present categories tags below bike */
    .image-interactive-wrapper::after {
        display: none;
    }
    
    .btn-pill-checkout-dark {
        height: 52px;
        padding: 0 20px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Operational Hubs & Location Badge Matrix Layout
   ========================================================================== */

.routing-hubs-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0 100px 0;
    box-sizing: border-box;
}

.hubs-grid-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    box-sizing: border-box;
}

/* Master 3-Column Grid Layout Engine matching the image alignment exactly */
.hubs-matrix-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px; /* Generous proportional gaps between individual rows and columns */
    width: 100%;
}

/* Individual Location Badge Card Architecture */
.hub-location-badge {
    background-color: #ff0000; /* Exact UI visual match vibrant red backdrop tone */
    border-radius: 14px; /* Proportional capsule rounded curves */
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px; /* Uniform interior separation between icon and label string */
    box-sizing: border-box;
    width: 100%;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

/* Flexible Graphics Container Layer */
.badge-icon-wrapper {
    width: 40px;
    height: 40px;
    color: #ffffff; /* Crisp white icon vector graphics */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cyclist-vector {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Crisp Text Label Element */
.hub-location-name {
    font-size: 26px; /* High-visibility bold label scale matching source truth image */
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Premium Micro-Interactive Focus Feedback Responses */
.hub-location-badge:hover {
    transform: translateY(-3px);
    background-color: #e60000; /* Subtle depth contrast adjustment on hover */
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15);
}

/* Accessibility utility class to keep page indexing clean */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ==========================================================================
   Adaptive Responsive Breakpoint Framework Maps
   ========================================================================== */

/* Medium Laptop Screen Configurations */
@media (max-width: 1200px) {
    .hubs-grid-container {
        padding: 0 40px;
    }

    .hubs-matrix-row {
        gap: 20px;
    }
    
    .hub-location-badge {
        padding: 14px 22px;
        gap: 16px;
    }

    .hub-location-name {
        font-size: 22px;
    }
}

/* Tablet Device Scaling System (Re-aligns grid matrix symmetrically to protect spatial limits) */
@media (max-width: 992px) {
    .hubs-matrix-row {
        grid-template-columns: repeat(2, 1fr); /* 2x6 symmetric badge tile tracking refactor */
        gap: 20px;
    }
}

/* Phone Screen Mobile Configurations (Converts architecture layout into a zero-overflow column) */
@media (max-width: 640px) {
    .routing-hubs-section {
        padding: 40px 0 60px 0;
    }

    .hubs-grid-container {
        padding: 0 24px;
    }

    /* SAFE OVERFLOW REFACTOR: Flattens location boxes downward in a vertical single-lane list view */
    .hubs-matrix-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hub-location-badge {
        border-radius: 12px;
        padding: 14px 20px;
        gap: 16px;
    }

    .badge-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .hub-location-name {
        font-size: 20px;
    }
}

/* ==========================================================================
   Footer Extension Layout Block (Custom Contact Info and Address Bars)
   ========================================================================== */

.footer-contact-details-bar {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px 0;
    margin: 5px 0;
    box-sizing: border-box;
}

/* 3-Column Clean Metadata Display Grid Alignment */
.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr; /* Gives address column extra layout breath space natively */
    gap: 48px;
    width: 100%;
    box-sizing: border-box;
}

/* Individual Content Node Flex Layout Rows */
.contact-meta-node {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.node-icon-frame {
    width: 20px;
    height: 20px;
    color: #000000; /* High-contrast clean black indicator icons */
    flex-shrink: 0;
    margin-top: 2px;
}

.node-icon-frame svg {
    width: 100%;
    height: 100%;
    display: block;
}

.node-text-frame {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label-lbl {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999999; /* Clean desaturated text labels matching minimalist styles */
    letter-spacing: 0.05em;
    line-height: 1;
}

.meta-value-text {
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    line-height: 1.5;
    font-style: normal;
    text-decoration: none;
}

/* Hyperlinks focus interactive properties setup */
.meta-value-text.value-link {
    transition: color 0.15s ease;
}

.meta-value-text.value-link:hover {
    color: #666666;
}


/* ==========================================================================
   Adaptive Responsive Breakpoint Framework Maps
   ========================================================================== */

/* Laptop Resolution Structural Compression */
@media (max-width: 1200px) {
    .contact-details-grid {
        gap: 32px;
    }
}

/* Tablet Device Scaling System Override (Pivots horizontal block grids cleanly) */
@media (max-width: 992px) {
    .contact-details-grid {
        grid-template-columns: 1fr; /* Stacks information cards inside single lanes safely */
        gap: 28px;
    }

    .footer-contact-details-bar {
        padding: 32px 0;
        margin: 32px 0;
    }
}

/* Mobile Screen Layout Optimization Engine (Zero Horizontal Layout Leakage) */
@media (max-width: 576px) {
    .footer-contact-details-bar {
        padding: 24px 0;
        margin: 24px 0;
    }

    .contact-meta-node {
        gap: 14px;
    }

    .meta-value-text {
        font-size: 14px;
        line-height: 1.45;
    }
}

/* ==========================================================================
   Fixed Floating WhatsApp Button Component Style Rules
   ========================================================================== */

.whatsapp-float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px; /* Places button securely in far right corner viewport focus */
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Official visual brand standard WhatsApp green token */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
    z-index: 9999; /* Higher priority layering ensures it floats on top of all page elements */
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

/* --- Animated Pulsing Notification Accent Ring --- */
.whatsapp-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: 1;
    animation: whatsapp-glow-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes whatsapp-glow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* --- Micro-Interactive Physics --- */
.whatsapp-float-btn:hover {
    background-color: #20ba5a; /* Smooth deep blend variation shift */
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-btn:active {
    transform: translateY(-2px) scale(0.97);
}


/* ==========================================================================
   Adaptive Responsive Breakpoint Maps (Safe UI Shielding)
   ========================================================================== */

/* Tablet & Mobile Devices Interface Adaptations */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 24px;
        right: 24px; /* Pulls slightly tighter to screen margin edges on compact devices */
        width: 52px;
        height: 52px;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
    }

    .whatsapp-icon-svg {
        width: 26px;
        height: 26px;
    }
}