/**
 * Bay Area Service Hub - Home Page
 * Editorial Trust Design System
 * Premium, authoritative aesthetic with geometric hub motifs
 */

/* ========================================
   FONTS - Consistent with Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ========================================
   HOME PAGE DESIGN SYSTEM
   ======================================== */

.bash-home {
    /* Primary Colors */
    --bash-primary: #194FAD;
    --bash-primary-dark: #0F3A82;
    --bash-primary-light: #5A9BFF;
    --bash-primary-ultra-light: #EBF2FF;

    /* Success/Trust */
    --bash-success: #22C55E;
    --bash-success-dark: #16A34A;
    --bash-success-light: #DCFCE7;

    /* Text */
    --bash-text-primary: #0F172A;
    --bash-text-secondary: #475569;
    --bash-text-muted: #94A3B8;

    /* Surfaces */
    --bash-bg-primary: #FFFFFF;
    --bash-bg-secondary: #F8FAFC;
    --bash-bg-tertiary: #F1F5F9;

    /* Borders */
    --bash-border: #E2E8F0;
    --bash-border-light: #F1F5F9;

    /* Shadows */
    --bash-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --bash-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07);
    --bash-shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
    --bash-shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);

    /* Radii */
    --bash-radius-sm: 6px;
    --bash-radius: 10px;
    --bash-radius-lg: 16px;
    --bash-radius-xl: 24px;
    --bash-radius-2xl: 32px;
    --bash-radius-full: 9999px;

    /* Gradients */
    --bash-gradient-hero: linear-gradient(135deg, #0F3A82 0%, #194FAD 50%, #2B5FB8 100%);
    --bash-gradient-success: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);

    /* Typography */
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--bash-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bash-bg-primary);
}

/* ========================================
   HERO SECTION - Dramatic & Authoritative
   ======================================== */

.bash-home-hero {
    position: relative;
    min-height: 600px;
    background: var(--bash-gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Geometric Hub Pattern - Radiating Lines */
.bash-home-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at center, transparent 0%, transparent 30%, rgba(255,255,255,0.02) 30.5%, transparent 31%),
        radial-gradient(circle at center, transparent 0%, transparent 50%, rgba(255,255,255,0.015) 50.5%, transparent 51%),
        radial-gradient(circle at center, transparent 0%, transparent 70%, rgba(255,255,255,0.01) 70.5%, transparent 71%);
    pointer-events: none;
    animation: heroRotate 120s linear infinite;
}

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

/* Subtle grid overlay */
.bash-home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Gradient overlay for depth */
.bash-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.bash-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

.bash-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Hero Eyebrow - Editorial Style */
.bash-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease both;
}

.bash-hero-eyebrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--bash-success);
    border-radius: 50%;
}

.bash-hero-eyebrow-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.bash-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 5.5vw, 60px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.bash-hero-title-accent {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.bash-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 560px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.bash-hide-mobile {
    display: inline;
}

/* Hero Picks - Wirecutter Style Category Cards */
.bash-hero-picks {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.bash-hero-picks-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.bash-hero-picks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.bash-hero-pick {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--bash-radius-lg);
    text-decoration: none;
    transition: all 0.25s ease;
}

.bash-hero-pick:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.bash-hero-pick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: var(--bash-radius);
    flex-shrink: 0;
}

.bash-hero-pick-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bash-primary);
}

.bash-hero-pick-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.bash-hero-pick-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.bash-hero-pick-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.bash-hero-pick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.bash-hero-pick-arrow svg {
    width: 14px;
    height: 14px;
    color: white;
    transition: transform 0.25s ease;
}

.bash-hero-pick:hover .bash-hero-pick-arrow {
    background: var(--bash-success);
}

.bash-hero-pick:hover .bash-hero-pick-arrow svg {
    transform: translateX(2px);
}

/* Hero Methodology Strip */
.bash-hero-methodology {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.bash-hero-method-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.bash-hero-method-item svg {
    width: 18px;
    height: 18px;
    color: var(--bash-success);
}

/* ========================================
   SERVICE CATEGORIES SECTION
   ======================================== */

.bash-categories-section {
    padding: 100px 24px;
    background: var(--bash-bg-primary);
    position: relative;
}

.bash-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bash-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.bash-section-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--bash-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.bash-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--bash-text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.bash-section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: var(--bash-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Category Cards Grid */
.bash-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bash-category-card {
    background: var(--bash-bg-primary);
    border: 2px solid var(--bash-border);
    border-radius: var(--bash-radius-xl);
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bash-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bash-gradient-hero);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bash-category-card:hover {
    border-color: var(--bash-primary);
    transform: translateY(-8px);
    box-shadow: var(--bash-shadow-xl);
}

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

.bash-category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--bash-primary-ultra-light);
    border-radius: var(--bash-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bash-category-card:hover .bash-category-icon {
    background: var(--bash-primary);
    transform: scale(1.05);
}

.bash-category-icon svg {
    width: 36px;
    height: 36px;
    color: var(--bash-primary);
    transition: color 0.3s ease;
}

.bash-category-card:hover .bash-category-icon svg {
    color: white;
}

.bash-category-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bash-text-primary);
    margin: 0 0 8px;
}

.bash-category-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bash-text-muted);
}

.bash-category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bash-bg-secondary);
    border-radius: 50%;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.bash-category-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--bash-primary);
    transition: transform 0.3s ease;
}

.bash-category-card:hover .bash-category-arrow {
    background: var(--bash-primary);
}

.bash-category-card:hover .bash-category-arrow svg {
    color: white;
    transform: translateX(3px);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.bash-how-section {
    padding: 100px 24px;
    background: var(--bash-bg-secondary);
    position: relative;
}

/* Subtle hub pattern background */
.bash-how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, var(--bash-border) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.bash-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Connecting line between steps */
.bash-how-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(16.66% + 40px);
    right: calc(16.66% + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--bash-border) 0%, var(--bash-primary) 50%, var(--bash-border) 100%);
    z-index: 0;
}

.bash-how-card {
    background: var(--bash-bg-primary);
    border-radius: var(--bash-radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--bash-shadow);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.bash-how-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bash-shadow-lg);
}

.bash-how-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: var(--bash-gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 20px rgba(25, 79, 173, 0.3);
}

.bash-how-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bash-text-primary);
    margin: 0 0 12px;
}

.bash-how-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--bash-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   TRUST INDICATORS SECTION
   ======================================== */

.bash-trust-section {
    padding: 80px 24px;
    background: var(--bash-bg-primary);
    border-top: 1px solid var(--bash-border);
    border-bottom: 1px solid var(--bash-border);
}

.bash-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bash-trust-item {
    text-align: center;
}

.bash-trust-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--bash-success-light);
    border-radius: var(--bash-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bash-trust-icon svg {
    width: 26px;
    height: 26px;
    color: var(--bash-success-dark);
}

.bash-trust-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--bash-text-primary);
    margin: 0 0 6px;
}

.bash-trust-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bash-text-muted);
    margin: 0;
}

/* ========================================
   FEATURED CONTRACTORS SECTION
   ======================================== */

.bash-featured-section {
    padding: 100px 24px;
    background: var(--bash-bg-primary);
}

.bash-featured-header {
    display: block;
    text-align: center;
    margin-bottom: 48px;
}

.bash-featured-header .bash-section-header {
    text-align: center;
    margin: 0 auto 24px;
}

.bash-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--bash-primary);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.bash-featured-link:hover {
    gap: 12px;
}

.bash-featured-link svg {
    width: 18px;
    height: 18px;
}

/* Featured Cards Grid */
.bash-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bash-featured-card {
    background: var(--bash-bg-primary);
    border: 1px solid var(--bash-border);
    border-radius: var(--bash-radius-xl);
    padding: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.bash-featured-card:hover {
    border-color: var(--bash-primary);
    box-shadow: var(--bash-shadow-lg);
    transform: translateY(-4px);
}

.bash-featured-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.bash-featured-rank {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bash-primary-ultra-light);
    border-radius: var(--bash-radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--bash-primary);
}

.bash-featured-score {
    width: 48px;
    height: 48px;
    background: var(--bash-gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.bash-featured-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bash-text-primary);
    margin: 0 0 8px;
    line-height: 1.3;
}

.bash-featured-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bash-text-muted);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bash-featured-location svg {
    width: 14px;
    height: 14px;
}

.bash-featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.bash-featured-tag {
    padding: 5px 10px;
    background: var(--bash-bg-secondary);
    border-radius: var(--bash-radius-full);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--bash-text-secondary);
}

/* Featured Card Footer */
.bash-featured-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
}

.bash-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bash-success);
    color: white;
    border-radius: var(--bash-radius-full);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}

.bash-featured-cta:hover {
    background: var(--bash-success-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    color: white;
}

.bash-featured-cta svg {
    width: 14px;
    height: 14px;
}

.bash-featured-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bash-border-light);
}

.bash-rating-platform {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}

.bash-rating-platform-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: white;
}

.bash-rating-platform-icon.google {
    background: #EA4335;
}

.bash-rating-platform-icon.yelp {
    background: #D32323;
}

.bash-rating-value {
    font-weight: 700;
    color: var(--bash-text-primary);
}

.bash-rating-count {
    color: var(--bash-text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */

.bash-cta-section {
    padding: 100px 24px;
    background: var(--bash-gradient-hero);
    position: relative;
    overflow: hidden;
}

.bash-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.bash-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.bash-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0 0 16px;
}

.bash-cta-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 36px;
}

.bash-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.bash-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--bash-radius-lg);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bash-cta-btn-primary {
    background: white;
    color: var(--bash-primary);
    box-shadow: var(--bash-shadow-lg);
}

.bash-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--bash-shadow-xl);
}

.bash-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bash-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered card animations */
.bash-category-card,
.bash-how-card,
.bash-featured-card {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.bash-category-card:nth-child(1) { animation-delay: 0.1s; }
.bash-category-card:nth-child(2) { animation-delay: 0.2s; }
.bash-category-card:nth-child(3) { animation-delay: 0.3s; }
.bash-category-card:nth-child(4) { animation-delay: 0.4s; }

.bash-how-card:nth-child(1) { animation-delay: 0.1s; }
.bash-how-card:nth-child(2) { animation-delay: 0.2s; }
.bash-how-card:nth-child(3) { animation-delay: 0.3s; }

.bash-featured-card:nth-child(1) { animation-delay: 0.1s; }
.bash-featured-card:nth-child(2) { animation-delay: 0.2s; }
.bash-featured-card:nth-child(3) { animation-delay: 0.3s; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .bash-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bash-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bash-how-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .bash-home-hero {
        min-height: auto;
    }

    .bash-hero-container {
        padding: 100px 20px 60px;
    }

    .bash-hero-picks-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .bash-hero-pick {
        padding: 14px 16px;
    }

    .bash-hero-methodology {
        gap: 16px;
    }

    .bash-hide-mobile {
        display: none;
    }

    .bash-categories-section,
    .bash-how-section,
    .bash-featured-section,
    .bash-cta-section {
        padding: 60px 20px;
    }

    .bash-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bash-category-card {
        padding: 24px 20px;
    }

    .bash-how-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bash-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .bash-featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bash-featured-grid {
        grid-template-columns: 1fr;
    }

    .bash-cta-buttons {
        flex-direction: column;
    }

    .bash-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bash-hero-methodology {
        flex-direction: column;
        gap: 12px;
    }

    .bash-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .bash-home-hero::before {
        animation: none;
    }
}
