/* 
  Monterey Auto Keys - Premium Modern Stylesheet
  Theme: Cyber-Red Light - Unique Adaptation (Never Used #4 variant)
  Palette: #ffffff (BG), #dc2626 (Accent Red), #ef4444 (Secondary), #0f0a0a (Text)
  Typography: Space Grotesk / Inter
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Cyber-Red Light Palette - Unique #4 Adaptation */
    --primary-bg: #ffffff;
    --secondary-bg: #fef2f2;
    --tertiary-bg: #fff1f2;
    --accent-color: #dc2626;
    --accent-light: #ef4444;
    --accent-dark: #b91c1c;
    --accent-glow: rgba(220, 38, 38, 0.35);
    --text-dark: #0f0a0a;
    --text-muted: #57534e;
    --text-light: #a8a29e;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-bg-strong: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(220, 38, 38, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --blur-amount: blur(20px);
    
    /* Gradient Definitions */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    --gradient-dark: linear-gradient(135deg, #0f0a0a 0%, #1c1917 100%);
    --gradient-mesh: 
        radial-gradient(at 0% 0%, rgba(220, 38, 38, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(239, 68, 68, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(220, 38, 38, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(239, 68, 68, 0.08) 0px, transparent 50%);
    
    /* Animation Variables */
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: 100px 0;
    --border-radius-sm: 12px;
    --border-radius: 20px;
    --border-radius-lg: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.accent-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Decorative Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
    bottom: 30%;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-amount);
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* --- Navigation - Floating Pill Dock v2 (Enhanced) --- */
.navbar {
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
    z-index: 1000;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 100px;
    padding: 0.5rem 0.75rem 0.5rem 1.25rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(220, 38, 38, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(220, 38, 38, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.75rem 0.4rem 1.25rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    padding: 0.25rem 0;
}

.navbar-brand::after {
    display: none !important;
}

.navbar-logo {
    height: 65px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    border-radius: 6px;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.25));
}

.nav-cta {
    margin-left: 0.75rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem !important;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-color) !important;
}

/* --- Modern Button Styles --- */
.btn-cta {
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 100px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--accent-glow);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px var(--accent-glow);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta-large {
    background: var(--gradient-primary);
    color: white !important;
    border-radius: 100px;
    padding: 1.1rem 2.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 12px 35px var(--accent-glow);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px var(--accent-glow);
}

.btn-outline-glow {
    background: transparent;
    color: var(--text-dark) !important;
    border: 2px solid var(--text-dark);
    border-radius: 100px;
    padding: 0.85rem 1.75rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-glow:hover {
    background: var(--text-dark);
    color: white !important;
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

/* --- Hero Section - Glassmorphism Orbit Carousel (#20 Unique) --- */
.hero-orbit {
    min-height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 30%, #fff5f5 70%, #ffffff 100%);
}

/* Orbit Background Effects */
.hero-orbit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(220, 38, 38, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 85% 30%, rgba(239, 68, 68, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(248, 113, 113, 0.04) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

/* Floating Particles */
.orbit-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(220, 38, 38, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(239, 68, 68, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: particleFloat 30s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(360deg); }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(220, 38, 38, 0.15);
    pointer-events: none;
    z-index: 1;
}

.orbit-ring-1 {
    width: 500px;
    height: 500px;
    animation: orbitRotate1 30s linear infinite;
}

.orbit-ring-2 {
    width: 700px;
    height: 700px;
    animation: orbitRotate2 40s linear infinite reverse;
}

@keyframes orbitRotate1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitRotate2 {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Orbit Pods */
.orbit-pod {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.15);
    transition: var(--transition);
}

.orbit-pod i {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbit-ring-1 .pod-1 { top: -27px; left: 50%; transform: translateX(-50%); }
.orbit-ring-1 .pod-2 { bottom: -27px; left: 50%; transform: translateX(-50%); }
.orbit-ring-1 .pod-3 { left: -27px; top: 50%; transform: translateY(-50%); }
.orbit-ring-1 .pod-4 { right: -27px; top: 50%; transform: translateY(-50%); }

.orbit-ring-2 .pod-5 { top: 30px; right: 80px; }
.orbit-ring-2 .pod-6 { bottom: 60px; left: 60px; }

.hero-orbit .container {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1), 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15), 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.hero-slide h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
}

.hero-slide .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-cta-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Carousel Dots */
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.hero-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-carousel-dots .dot.active,
.hero-carousel-dots .dot:hover {
    background: var(--gradient-primary);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

/* Floating Hero Images */
.hero-float-img {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 5;
    transition: var(--transition);
}

.hero-float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-img-1 {
    top: 20%;
    right: 5%;
    animation: floatImg1 8s ease-in-out infinite;
}

.float-img-2 {
    bottom: 15%;
    left: 5%;
    animation: floatImg2 10s ease-in-out infinite;
}

@keyframes floatImg1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatImg2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

/* Hero Stats Inline - Ultra Compact */
.hero-stats-inline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 2rem auto 0;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: auto;
    max-width: fit-content;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-amount);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

.hero-stats-inline .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.75rem;
    border-right: 1px solid rgba(220, 38, 38, 0.1);
    min-width: 60px;
}

.hero-stats-inline .stat-item:last-child {
    border-right: none;
}

.hero-stats-inline .stat-num {
    font-size: 1.3rem;
    line-height: 1.1;
}

.hero-stats-inline .stat-label {
    font-size: 0.6rem;
    margin-top: 0.15rem;
    letter-spacing: 0.3px;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-image-container img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(220, 38, 38, 0.1);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(220, 38, 38, 0.15);
}

.floating-card i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: -3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* --- Section Padding & Backgrounds - Enhanced --- */
.section-padding {
    padding: var(--section-padding);
    position: relative;
}

/* Modern Mesh Background with Animation */
.bg-gradient-mesh {
    background: var(--gradient-mesh);
    position: relative;
}

.bg-gradient-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(239, 68, 68, 0.03) 0%, transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-mesh .container {
    position: relative;
    z-index: 1;
}

.bg-gradient-soft {
    background: linear-gradient(180deg, var(--tertiary-bg) 0%, var(--primary-bg) 50%, var(--tertiary-bg) 100%);
    position: relative;
}

.bg-gradient-soft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* --- About Section --- */
.about-visual {
    position: relative;
    padding-right: 40px;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    width: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.about-image-wrapper:hover .about-img-main {
    transform: scale(1.02);
}

.about-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--blur-amount);
    border: 1px solid var(--glass-border);
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.about-badge h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0;
}

.experience-badge {
    position: absolute;
    top: 25px;
    left: -25px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px var(--accent-glow);
    text-align: center;
}

.exp-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.editorial-meta {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: block;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

/* --- Services Grid - 2 Rows 3 Columns --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1.75rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(220, 38, 38, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrap i {
    font-size: 2.2rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-glow);
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .icon-glow {
    opacity: 1;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 10px;
    color: var(--accent-dark);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* --- Editorial Section - Parallax Overlay Style --- */
.editorial-section {
    background: var(--tertiary-bg);
}

.editorial-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.editorial-image-wrap {
    position: relative;
}

.editorial-parallax-text {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
    z-index: 0;
}

.editorial-content {
    font-size: 1.02rem;
    line-height: 1.8;
}

.editorial-content p {
    margin-bottom: 1.25rem;
}

/* --- CTA Strip - Cyber-Grid Style --- */
.cta-strip {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px var(--accent-glow);
    animation: pulse 2s infinite;
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-strip h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-light);
    font-size: 1.1rem;
}

/* --- CTA Strip Alt --- */
.cta-strip-alt {
    padding: 50px 0;
    background: var(--gradient-primary);
}

.cta-strip-alt h2 {
    color: white;
    font-size: 1.8rem;
}

/* --- Slat Section - Brutalist Split-Slat Style --- */
.slat-section {
    background: var(--primary-bg);
}

.slat-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.slat-item:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.slat-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color);
    background: var(--tertiary-bg);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.slat-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

/* --- Process Section - Aura Grid Detail Style --- */
.process-container {
    position: relative;
    margin-top: 3rem;
}

.process-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-ribbon::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #f87171);
    opacity: 0.3;
    z-index: 0;
}

.process-node {
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.process-node:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 38, 38, 0.25);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.node-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
    transition: var(--transition);
}

.process-node:hover .node-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.35);
}

.process-node h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-node p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* --- Bento Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.bento-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-amount);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bento-large {
    grid-row: span 2;
    padding: 0;
}

.bento-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-stat {
    padding: 1.5rem;
    text-align: center;
}

.bento-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.bento-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Area Grid - Flowing Sinuous Ribbon Style --- */
.area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.area-chip {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.area-chip:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25);
}

/* --- FAQ Section - Split-Screen Kinetic Style --- */
.faq-sticky {
    position: sticky;
    top: 120px;
}

.glass-accordion {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08) !important;
    border-radius: var(--border-radius-lg) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-accordion:hover {
    border-color: rgba(220, 38, 38, 0.25) !important;
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.glass-accordion .accordion-button {
    background: transparent !important;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.glass-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color) !important;
    background: rgba(220, 38, 38, 0.03) !important;
}

.glass-accordion .accordion-button i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.glass-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-support-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.faq-support-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-support-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.faq-support-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-support-card a {
    color: var(--accent-color);
    text-decoration: none;
}

/* --- Contact Bento Grid --- */
.contact-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.bento-cell {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 38, 38, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bento-cell:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cell-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cell-icon i {
    font-size: 1.5rem;
    color: white;
}

.bento-cell h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    display: block;
}

.cell-map {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
}

.cell-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

.cell-cta {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-contact-cta {
    width: auto;
    min-width: 200px;
    max-width: 280px;
    padding: 0.875rem 2rem;
}

/* --- Footer - Typography-Heavy Style --- */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--accent-light);
}

.footer-brand {
    font-size: 10vw;
    font-weight: 900;
    opacity: 0.04;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* --- Responsive Styles --- */
@media (max-width: 991px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .navbar .container {
        border-radius: var(--border-radius-lg);
    }
    
    .navbar-logo {
        height: 55px;
        max-width: 180px;
    }
    
    .footer-logo {
        max-height: 60px;
        max-width: 200px;
    }
    
    .hero {
        padding-top: 110px;
        min-height: auto;
    }
    
    .hero-orbit {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    /* Hide orbit rings on mobile */
    .orbit-ring {
        display: none;
    }
    
    .hero-float-img {
        display: none;
    }
    
    .hero-carousel {
        min-height: 240px;
    }
    
    .hero-slide h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats-inline {
        gap: 0;
        padding: 0.4rem 0.6rem;
        margin-top: 1.5rem;
    }
    
    .hero-stats-inline .stat-item {
        padding: 0 0.5rem;
        min-width: 55px;
    }
    
    .hero-stats-inline .stat-num {
        font-size: 1.1rem;
    }
    
    .hero-stats-inline .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.2px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 1.75rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .about-visual {
        padding-right: 20px;
    }
    
    .experience-badge {
        left: -10px;
    }
    
    .process-ribbon {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-ribbon::after {
        display: none;
    }
    
    .contact-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cell-map {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .cell-cta {
        grid-column: span 2;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento-large {
        grid-row: span 1;
    }
    
    .slat-item {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .cta-trust {
        gap: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .navbar-logo {
        height: 50px;
        max-width: 160px;
    }
    
    .footer-logo {
        max-height: 55px;
        max-width: 180px;
    }
    
    .hero-slide h1 {
        font-size: 1.6rem;
    }
    
    .hero-slide .lead {
        font-size: 1rem;
    }
    
    .hero-carousel {
        min-height: 260px;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 0;
        padding: 0.35rem 0.5rem;
        border-radius: var(--border-radius);
        max-width: 280px;
        margin: 1.5rem auto 0;
    }
    
    .hero-stats-inline .stat-item {
        padding: 0.2rem 0.5rem;
        min-width: 50px;
        border-right: 1px solid rgba(220, 38, 38, 0.08);
    }
    
    .hero-stats-inline .stat-item:nth-child(2) {
        border-right: none;
    }
    
    .hero-stats-inline .stat-item:nth-child(3),
    .hero-stats-inline .stat-item:nth-child(4) {
        border-right: 1px solid rgba(220, 38, 38, 0.08);
    }
    
    .hero-stats-inline .stat-item:last-child {
        border-right: none;
    }
    
    .hero-stats-inline .stat-num {
        font-size: 1rem;
    }
    
    .hero-stats-inline .stat-label {
        font-size: 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-carousel-dots {
        margin-top: 1.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    .process-ribbon {
        grid-template-columns: 1fr;
    }
    
    .contact-bento {
        grid-template-columns: 1fr;
    }
    
    .cell-map,
    .cell-cta {
        grid-column: span 1;
    }
    
    .about-badge,
    .experience-badge {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        margin-top: 1rem;
        display: inline-flex;
    }
    
    .about-visual {
        padding-right: 0;
    }
    
    .editorial-parallax-text {
        font-size: 4rem;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .area-grid {
        gap: 0.75rem;
    }
    
    .area-chip {
        padding: 0.7rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .faq-sticky {
        position: relative;
        top: auto;
    }
    
    .footer-brand {
        font-size: 15vw;
    }
}

@media (max-width: 576px) {
    .btn-cta, .btn-cta-large, .btn-outline-glow {
        width: 100%;
        justify-content: center;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
}
