/* ============================================
   YOUR DELIVERY SERVICES - MODERN CSS
   Advanced animations, bento grids, glassmorphism
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --primary: #0D2C54;
    --primary-light: #1E88E5;
    --primary-dark: #071a33;
    --secondary: #F57C00;
    --secondary-light: #FF9800;
    --accent: #00B894;
    --accent-light: #55efc4;

    /* Neutrals */
    --text-dark: #333D45;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #F2F4F7;
    --bg-dark: #0a1628;
    --white: #ffffff;
    --border: #e2e8f0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0D2C54 0%, #1E88E5 100%);
    --gradient-secondary: linear-gradient(135deg, #F57C00 0%, #FF9800 100%);
    --gradient-accent: linear-gradient(135deg, #00B894 0%, #55efc4 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 44, 84, 0.08);
    --shadow-md: 0 4px 20px rgba(13, 44, 84, 0.12);
    --shadow-lg: 0 8px 40px rgba(13, 44, 84, 0.16);
    --shadow-xl: 0 20px 60px rgba(13, 44, 84, 0.2);
    --shadow-glow: 0 0 40px rgba(30, 136, 229, 0.3);
    --shadow-orange: 0 8px 30px rgba(245, 124, 0, 0.3);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border Radius */
    --radius: 8px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary-light);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--secondary); }

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-down { animation: fadeInDown 0.8s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.8s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.8s ease forwards; }
.animate-scale { animation: scaleIn 0.6s ease forwards; }
.animate-bounce { animation: bounceIn 0.8s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   GLASSMORPHISM & CARD EFFECTS
   ============================================ */

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(13, 44, 84, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ============================================
   LAYOUT - CONTAINER
   ============================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm { max-width: 900px; }
.container-lg { max-width: 1600px; }

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-xs) 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition-base);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav-links a {
    padding: var(--space-xs) var(--space-md);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-orange);
    color: var(--white);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-xl)) 0 var(--space-3xl);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 60%);
    animation: blob 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.1) 0%, transparent 50%);
    animation: blob 15s ease-in-out infinite reverse;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge i {
    color: var(--secondary);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero h1 .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.hero-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* No staggered hero cards - clean grid */

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.hero-card h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.hero-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.hero-stat-card {
    grid-column: span 2;
    background: var(--gradient-accent);
    text-align: center;
}

.hero-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat-card .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Floating elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.floating-element.el-1 {
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    opacity: 0.6;
}

.floating-element.el-2 {
    bottom: 30%;
    right: 5%;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.5;
    animation-delay: 2s;
}

.floating-element.el-3 {
    top: 40%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.4;
    animation-delay: 4s;
}

/* ============================================
   BENTO GRID LAYOUTS
   ============================================ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: var(--space-md);
}

.bento-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.bento-item:hover::before {
    transform: scaleX(1);
}

/* Bento sizes */
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-full { grid-column: span 4; }

/* Bento themes */
.bento-primary { background: var(--gradient-primary); color: var(--white); }
.bento-secondary { background: var(--gradient-secondary); color: var(--white); }
.bento-accent { background: var(--gradient-accent); color: var(--white); }
.bento-dark { background: var(--gradient-dark); color: var(--white); }

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gradient-primary);
    transition: height var(--transition-slow);
    z-index: 0;
}

.stat-card:hover::before {
    height: 100%;
}

.stat-card:hover {
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
    transition: color var(--transition-base);
}

.stat-card:hover .stat-number {
    color: var(--white);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    transition: color var(--transition-base);
}

.stat-card:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Mini sparkline chart */
.stat-chart {
    height: 40px;
    margin-top: var(--space-sm);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::after {
    transform: translate(20%, -20%) scale(1.5);
}

.service-card.featured {
    grid-row: span 2;
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card.featured::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin: 0;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--space-md);
    transition: gap var(--transition-base);
}

.service-link:hover {
    gap: var(--space-sm);
    color: var(--secondary);
}

.service-card.featured .service-link {
    color: var(--white);
}

/* ============================================
   FEATURES / WHY US SECTION
   ============================================ */

.features-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.features-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.features-content > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.features-visual {
    position: relative;
}

.features-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.features-image-grid .feature-image-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-image-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-image-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* No staggered effect - clean grid layout */

.feature-image-card i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: var(--space-md);
}

.feature-image-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

/* Old feature list style support */
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-list i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

/* ============================================
   HOW IT WORKS - TIMELINE
   ============================================ */

.process-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: var(--space-2xl);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 var(--space-md);
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(245, 124, 0, 0.4);
    transition: all var(--transition-bounce);
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(245, 124, 0, 0.5);
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Old steps grid support */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card h4 { color: var(--primary); }
.step-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--bg-light);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--secondary);
    font-size: 1.125rem;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5,
.author-info h5 {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-author span,
.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.3) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 184, 148, 0.2) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-section h2,
.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-section p,
.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links li i {
    color: var(--secondary);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ============================================
   PAGE HEADER (Internal Pages)
   ============================================ */

.page-header {
    background: var(--gradient-dark);
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    position: relative;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: var(--space-lg);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.form-control {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
}

.contact-info-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: var(--white);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-info-item p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   CHARTS CONTAINER
   ============================================ */

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.chart-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.mini-chart {
    height: 60px;
    margin-top: var(--space-sm);
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */

.section {
    padding: var(--space-3xl) 0;
}

.section-light {
    background: var(--bg-light);
}

/* ============================================
   BADGES & ALERTS
   ============================================ */

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-success { background: #c6f6d5; color: #22543d; }
.badge-warning { background: #feebc8; color: #744210; }
.badge-danger { background: #fed7d7; color: #742a2a; }
.badge-info { background: #bee3f8; color: #2a4365; }

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.alert-success { background: #c6f6d5; color: #22543d; border: 1px solid #9ae6b4; }
.alert-error { background: #fed7d7; color: #742a2a; border: 1px solid #fc8181; }
.alert-warning { background: #feebc8; color: #744210; border: 1px solid #f6ad55; }

/* ============================================
   TABLES
   ============================================ */

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.table th {
    background: var(--bg-light);
    font-weight: 600;
}

.table tr:hover {
    background: var(--bg-light);
}

/* ============================================
   PORTAL STYLES (Admin/Driver)
   ============================================ */

.portal-sidebar {
    width: 260px;
    background: var(--primary-dark);
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
}

.portal-sidebar .brand {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.portal-sidebar .brand a {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.portal-nav {
    padding: 1rem 0;
}

.portal-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.portal-nav a:hover,
.portal-nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.portal-nav a i {
    width: 20px;
}

.portal-main {
    margin-left: 260px;
    min-height: 100vh;
    background: var(--bg-light);
}

.portal-header {
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-content {
    padding: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.dashboard-card h4 {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.dashboard-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.dashboard-card .change {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.dashboard-card .change.positive { color: var(--accent); }
.dashboard-card .change.negative { color: #e53e3e; }

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
}

.login-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-full { grid-column: span 2; }

    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50px;
        right: auto;
        width: 4px;
        height: auto;
    }

    .process-step {
        text-align: left;
        padding-left: 130px;
    }

    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-3xl) var(--space-lg);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: var(--space-md);
        font-size: 1.125rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide,
    .bento-large,
    .bento-full {
        grid-column: span 1;
    }

    .bento-tall,
    .bento-large {
        grid-row: span 1;
    }

    .services-bento,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        transform: none;
    }

    .hero-card:nth-child(2):hover,
    .hero-card:nth-child(3):hover {
        transform: translateY(-5px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .features-image-grid {
        grid-template-columns: 1fr;
    }

    .feature-image-card:nth-child(2) {
        transform: none;
    }

    .feature-image-card:nth-child(2):hover {
        transform: scale(1.05);
    }

    .portal-sidebar {
        transform: translateX(-100%);
        z-index: 1000;
    }

    .portal-sidebar.active {
        transform: translateX(0);
    }

    .portal-main {
        margin-left: 0;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); }
.bg-white { background: var(--white); }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Mini Hero */
.hero-mini {
    min-height: 50vh;
    padding: calc(100px + var(--space-xl)) 0 var(--space-2xl);
}

.hero-mini .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.hero-mini .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero background shapes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -100px;
    right: -100px;
}

.floating-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

/* Stats Ticker */
.stats-ticker {
    background: var(--white);
    padding: var(--space-md) 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.ticker-track {
    display: flex;
    gap: var(--space-2xl);
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.ticker-item i {
    color: var(--secondary);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Variants */
.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section-dark h2 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Icon Large */
.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

/* Feature Checklist */
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--text-dark);
}

.feature-checklist li i {
    color: var(--accent);
    font-size: 0.875rem;
}

.feature-checklist.light li {
    color: rgba(255, 255, 255, 0.9);
}

.feature-checklist.light li i {
    color: var(--secondary);
}

/* Price Tag */
.price-tag {
    margin: var(--space-lg) 0;
}

.price-tag .price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-tag .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-tag.light .price-label {
    color: rgba(255, 255, 255, 0.7);
}

.price-tag.light .price-amount {
    color: var(--white);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Discount Badge */
.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(0, 184, 148, 0.1);
    color: var(--accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--space-sm);
}

/* Schedule Grid - responsive */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Support Grid - responsive */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Row 3 columns - responsive */
.form-row-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
    .schedule-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Schedule Preview */
.schedule-preview {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-sm);
}

.schedule-day {
    text-align: center;
    padding: var(--space-sm);
    background: rgba(0, 184, 148, 0.1);
    border-radius: var(--radius-md);
}

.schedule-day span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.schedule-day i {
    color: var(--accent);
}

.schedule-day.inactive {
    background: rgba(0, 0, 0, 0.05);
}

.schedule-day.inactive i {
    color: var(--text-muted);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    padding: var(--space-xl);
    text-align: center;
    background: var(--bg-light);
}

.pricing-card.featured .pricing-header {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.pricing-card.featured .pricing-header h3 {
    color: var(--white);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-amount .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.pricing-card.featured .pricing-amount .amount {
    color: var(--white);
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card.featured .pricing-amount .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-header p {
    margin: var(--space-sm) 0 0;
    font-size: 0.875rem;
}

.pricing-body {
    padding: var(--space-xl);
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.pricing-body li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body li i {
    color: var(--accent);
}

.pricing-body li.disabled {
    color: var(--text-muted);
}

.pricing-body li.disabled i {
    color: var(--text-muted);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-note i {
    color: var(--secondary);
    margin-right: var(--space-xs);
}

/* Services Showcase - KEEP AS GRID */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.showcase-content {
    flex: 1;
}

.showcase-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.showcase-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.showcase-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

/* Stat Highlight */
.stat-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    height: 100%;
}

.stat-highlight .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.stat-highlight .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-highlight .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.coverage-zone {
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.zone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.zone-name {
    font-weight: 600;
    color: var(--primary);
}

.zone-badge {
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-light);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

.zone-bar {
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.zone-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--percentage, 50%);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.zone-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* CTA Background */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Footer Wave */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--bg-light);
}

.footer {
    position: relative;
    padding-top: calc(60px + var(--space-3xl));
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .features-image-grid {
        gap: var(--space-md);
    }

    .feature-image-card {
        padding: var(--space-lg);
    }

    /* Services showcase - 2 columns on tablet */
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing cards - still 3 on tablet, just smaller */
    .pricing-cards {
        gap: var(--space-md);
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    /* Bento grid - 2 columns */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-row: span 1; }
}

/* Mobile landscape and portrait */
@media (max-width: 768px) {
    /* Remove all transforms on mobile for clean layout */
    .feature-image-card,
    .feature-image-card:nth-child(2),
    .feature-image-card:hover,
    .feature-image-card:nth-child(2):hover {
        transform: none !important;
    }

    .feature-image-card:active {
        transform: scale(0.98) !important;
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
        padding: var(--space-md) var(--space-lg);
    }

    /* Stack hero buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero cards - KEEP 2 COLUMNS */
    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .hero-card {
        padding: var(--space-md);
    }

    .hero-stat-card {
        grid-column: span 2;
    }

    /* Features image grid - KEEP 2 COLUMNS */
    .features-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .feature-image-card {
        padding: var(--space-md);
    }

    .feature-image-card i {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }

    .feature-image-card h4 {
        font-size: 0.9rem;
    }

    /* Stats grid - KEEP 2 COLUMNS */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Bento grid - KEEP 2 COLUMNS */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-wide, .bento-full { grid-column: span 2; }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-row: span 1; }

    /* Services bento - KEEP 2 COLUMNS */
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Services showcase - KEEP 2 COLUMNS */
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .showcase-item {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }

    .showcase-icon {
        margin-bottom: var(--space-sm);
    }

    .showcase-price {
        margin-top: var(--space-sm);
    }

    /* Pricing cards - KEEP 3 COLUMNS but smaller */
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-header {
        padding: var(--space-md);
    }

    .pricing-amount .amount {
        font-size: 2.5rem;
    }

    .pricing-body {
        padding: var(--space-md);
    }

    /* Coverage grid - KEEP 2 COLUMNS */
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    /* Schedule preview - smaller */
    .schedule-preview {
        gap: 0.25rem;
    }

    .schedule-day {
        padding: var(--space-xs);
    }

    .schedule-day span {
        font-size: 0.65rem;
    }

    /* Testimonials - 2 COLUMNS */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    /* Process steps mobile */
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-content {
        font-size: 1rem;
    }

    /* Charts mobile */
    .chart-container {
        height: 200px;
    }

    /* Service cards mobile */
    .service-card {
        padding: var(--space-lg);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Stats cards mobile */
    .stat-card {
        padding: var(--space-lg);
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Feature list mobile */
    .feature-item {
        padding: var(--space-sm);
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    /* CTA mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer grid - 2 COLUMNS */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
    }

    /* KEEP 2 COLUMNS on small mobile */
    .features-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .feature-image-card {
        padding: 0.75rem;
    }

    .feature-image-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-image-card h4 {
        font-size: 0.75rem;
    }

    /* Hero cards - KEEP 2 COLUMNS */
    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* Stats grid - KEEP 2 COLUMNS */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat-card {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    /* Services showcase - KEEP 2 COLUMNS */
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .showcase-item {
        padding: 0.75rem;
    }

    .showcase-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }

    .showcase-content h4 {
        font-size: 0.875rem;
    }

    .showcase-content p {
        font-size: 0.75rem;
        display: none; /* Hide description on very small screens */
    }

    .showcase-price {
        font-size: 1rem;
    }

    /* Pricing cards - stack to 1 column on small mobile */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .pricing-card.featured {
        order: -1; /* Put featured card first */
    }

    /* Coverage grid - KEEP 2 COLUMNS */
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .coverage-zone {
        padding: 0.75rem;
    }

    .zone-name {
        font-size: 0.8rem;
    }

    .zone-badge {
        font-size: 0.65rem;
        padding: 0.1rem 0.3rem;
    }

    /* Bento grid - KEEP 2 COLUMNS */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .bento-item {
        padding: var(--space-sm);
    }

    /* Services bento - KEEP 2 COLUMNS */
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* Testimonials - KEEP 2 COLUMNS */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .testimonial-card {
        padding: var(--space-md);
    }

    .testimonial-content {
        font-size: 0.875rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Hero adjustments */
    .hero {
        padding: calc(70px + var(--space-lg)) 0 var(--space-xl);
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero h1, .hero-title {
        font-size: 1.75rem;
    }

    .hero-text, .hero-subtitle {
        font-size: 1rem;
    }

    /* Process timeline mobile */
    .process-step {
        padding-left: 90px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Navbar logo */
    .navbar-brand img {
        height: 40px;
    }

    /* Footer - KEEP 2 COLUMNS */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-brand img {
        height: 50px !important;
    }

    /* Section headers */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Service cards */
    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .service-icon, .service-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: var(--space-sm);
    }

    /* Schedule preview - compact */
    .schedule-preview {
        gap: 0.15rem;
    }

    .schedule-day {
        padding: 0.25rem;
    }

    .schedule-day span {
        font-size: 0.6rem;
    }

    .schedule-day i {
        font-size: 0.75rem;
    }

    /* Price tags */
    .price-tag .price-amount {
        font-size: 2rem;
    }

    /* Feature checklist */
    .feature-checklist li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    /* STILL KEEP 2 COLUMNS on extra small */
    .features-image-grid,
    .hero-cards,
    .stats-grid,
    .services-showcase,
    .bento-grid,
    .services-bento,
    .testimonials-grid,
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .feature-image-card,
    .hero-card,
    .stat-card,
    .showcase-item,
    .bento-item,
    .service-card,
    .testimonial-card {
        padding: 0.5rem;
    }

    .feature-image-card i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .feature-image-card h4 {
        font-size: 0.65rem;
    }

    .hero h1, .hero-title {
        font-size: 1.4rem;
    }

    .hero-text, .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        min-height: 44px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .showcase-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1rem;
    }

    .showcase-content h4 {
        font-size: 0.75rem;
    }

    .showcase-price {
        font-size: 0.875rem;
    }

    .service-icon, .service-icon-large {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 0.9rem;
    }

    .testimonial-content {
        font-size: 0.8rem;
    }

    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .author-info h5 {
        font-size: 0.8rem;
    }

    .author-info span {
        font-size: 0.7rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work well on touch */
    .bento-item:hover,
    .service-card:hover,
    .stat-card:hover,
    .testimonial-card:hover,
    .feature-item:hover,
    .feature-image-card:hover {
        transform: none;
    }

    /* Add active states for touch feedback */
    .bento-item:active,
    .service-card:active,
    .feature-image-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .btn:active {
        transform: scale(0.95);
    }

    /* Ensure good tap targets */
    .nav-links a,
    .footer-links a {
        padding: var(--space-sm) var(--space-md);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: calc(70px + var(--space-md)) 0 var(--space-lg);
    }

    .hero-grid {
        gap: var(--space-lg);
    }
}

/* Print styles */
@media print {
    .navbar, .cta-section, .footer { display: none; }
    .hero { min-height: auto; padding: var(--space-lg) 0; }
}
