/* Homepage-specific styles */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 140px 0 100px;
        }
        
        .hero-content {
            max-width: 900px;
        }
        
        .hero h1 {
            font-size: 62px;
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 30px;
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .practice-ticker {
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .ticker-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .ticker-items {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .ticker-item {
            padding: 12px 24px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            transition: all 0.3s;
        }
        
        .ticker-item:hover {
            background: rgba(201, 162, 39, 0.15);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .quote-section {
            padding: 150px 0;
        }
        
        .quote-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 400;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .quote-author {
            font-size: 14px;
            color: var(--accent-gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .result-card {
            padding: 50px 40px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            text-align: center;
            transition: all 0.3s;
        }
        
        .result-card:hover {
            background: rgba(201, 162, 39, 0.08);
            border-color: rgba(201, 162, 39, 0.3);
            transform: translateY(-5px);
        }
        
        .result-amount {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 500;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        
        .result-type {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .comparison-column {
            padding: 50px 40px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
        }
        
        .comparison-column.highlight {
            border-color: var(--accent-gold);
            background: rgba(201, 162, 39, 0.08);
        }
        
        .comparison-column h3 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .comparison-column.highlight h3 {
            color: var(--accent-gold);
        }
        
        .comparison-step {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .comparison-column.highlight .step-number {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .step-text {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        .comparison-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 120px;
        }
        
        .vs-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-style: italic;
            color: var(--accent-gold);
        }
        
        @media (max-width: 992px) {
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            .comparison-vs {
                padding: 20px 0;
            }
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 38px;
            }
            .results-grid {
                grid-template-columns: 1fr;
            }
            .quote-text {
                font-size: 24px;
            }
        }

        /* Lighter hero overlay so the video reads through clearly */
        .hero .video-overlay {
            background: linear-gradient(90deg, rgba(10,15,26,0.72) 0%, rgba(10,15,26,0.38) 55%, rgba(10,15,26,0.12) 100%);
        }

        /* Logo emblem image (shown when the logo file is present; text logo shows if not) */
        .logo-img {
            height: 46px;
            width: auto;
            max-width: none;
            flex: 0 0 auto;
            align-self: flex-start;
            object-fit: contain;
            display: block;
        }
        .logo-img + .logo-text { display: none; }
        footer .logo-img { height: 42px; }

        /* Brand band directly under hero */
        .brand-band {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
            border-top: 1px solid rgba(201,162,39,0.25);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: 70px 0;
            text-align: center;
        }
        .brand-band .brand-eyebrow {
            font-size: 13px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 22px;
        }
        .brand-band .brand-tagline {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 500;
            line-height: 1.25;
            margin-bottom: 45px;
        }
        .brand-band .brand-tagline em {
            font-style: italic;
            color: var(--accent-gold);
        }
        .specialty-chips {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .specialty-chips a {
            padding: 14px 30px;
            border: 1px solid rgba(201,162,39,0.4);
            background: rgba(201,162,39,0.06);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            transition: all 0.3s;
        }
        .specialty-chips a:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Centarus Companies section */
        .companies-section { padding: 110px 0; }
        .companies-head {
            text-align: center;
            max-width: 860px;
            margin: 0 auto 60px;
        }
        .companies-head .section-label { text-align: center; }
        .companies-head h2 {
            font-size: 46px;
            font-weight: 500;
            line-height: 1.15;
            margin-bottom: 28px;
        }
        .companies-head .whoweare {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
        }
        .units-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        .unit-card {
            padding: 40px 28px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            text-align: center;
            transition: all 0.3s;
        }
        .unit-card:hover {
            background: rgba(201,162,39,0.08);
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        .unit-num {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: var(--accent-gold);
            margin-bottom: 14px;
        }
        .unit-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .unit-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .units-grid { grid-template-columns: repeat(2, 1fr); }
            .brand-band .brand-tagline { font-size: 32px; }
            .companies-head h2 { font-size: 36px; }
        }
        @media (max-width: 768px) {
            .units-grid { grid-template-columns: 1fr; }
            .brand-band .brand-tagline { font-size: 26px; }
        }