/**
 * commercial.css - Commercial Holiday Lighting Service
 * Holiday Lights Decor - Multi-Franchise Template
 *
 * Premium B2B design. Uses GLOBAL palette with dark accents.
 *
 * Loaded via: $page_css = ['commercial.css']
 * Dependencies: main.css (global), pages-common.css (breadcrumb, FAQ, section-header)
 *
 * @version 12.0.0 (UNIFIED PALETTE)
 */

/* ==========================================================================
   COMMERCIAL VARIABLES — mapped to global palette
   ========================================================================== */
:root {
    --comm-dark: var(--color-text);
    --comm-dark-mid: #242424;
    --comm-dark-soft: #2e2e2e;
    --comm-copper: var(--color-gold);
    --comm-copper-light: var(--color-gold-light);
    --comm-copper-pale: rgba(212, 175, 55, 0.08);
    --comm-warm: var(--color-bg-alt);
    --comm-light: var(--color-bg-alt);
    --comm-border: #e2e0dc;
    --comm-text: var(--color-text);
    --comm-text-muted: var(--color-text-muted);
    --comm-radius: 12px;
    --comm-radius-lg: 20px;
}


/* ==========================================================================
   HERO — Split layout with ROI card
   ========================================================================== */

.comm-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--comm-dark);
    padding-top: var(--header-height);
}

.comm-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.comm-hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.comm-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 90%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        linear-gradient(150deg, var(--comm-dark) 0%, var(--comm-dark-mid) 100%);
}

.comm-hero-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.comm-hero .snow-container {
    z-index: 1;
}

.comm-hero .container {
    position: relative;
    z-index: 2;
}

.comm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
    padding: 60px 0 50px;
}

/* Hero Badge */
.comm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--comm-copper-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.comm-hero-badge svg {
    width: 14px;
    height: 14px;
}

/* Hero Title */
.comm-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.comm-hero h1 span {
    color: var(--comm-copper-light);
}

.comm-hero-lead {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 560px;
}

/* Hero Metrics */
.comm-hero-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.comm-metric {
    text-align: center;
    padding: 0 20px;
}

.comm-metric:first-child {
    padding-left: 0;
}

.comm-metric strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--comm-copper-light);
    line-height: 1;
    margin-bottom: 4px;
}

.comm-metric span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.comm-metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Hero Actions */
.comm-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.comm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: var(--comm-copper);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--comm-copper);
    transition: all 0.3s;
}

.comm-btn-primary:hover {
    background: var(--comm-copper-light);
    border-color: var(--comm-copper-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: #fff;
}

.comm-btn-primary svg {
    width: 16px;
    height: 16px;
}

.comm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s;
}

.comm-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.35);
}

.comm-btn-outline svg {
    width: 16px;
    height: 16px;
}

/* Hero ROI Card */
.comm-roi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--comm-radius-lg);
    padding: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.comm-roi-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comm-roi-header svg {
    width: 20px;
    height: 20px;
    color: var(--comm-copper-light);
}

.comm-roi-header span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.comm-roi-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comm-roi-stat {
    position: relative;
}

.comm-roi-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.comm-roi-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--bar-width, 50%);
    background: linear-gradient(90deg, var(--comm-copper), var(--comm-copper-light));
    border-radius: 3px;
}

.comm-roi-stat-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.comm-roi-stat-info strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--comm-copper-light);
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}

.comm-roi-stat-info span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.comm-roi-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--comm-copper-light);
}

.comm-roi-footer svg {
    width: 16px;
    height: 16px;
}


/* ==========================================================================
   BUSINESS TYPES — Who We Serve
   ========================================================================== */

.comm-types {
    padding: 90px 0;
    background: #fff;
}

.comm-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comm-type-card {
    background: var(--comm-light);
    border: 1px solid var(--comm-border);
    border-radius: var(--comm-radius-lg);
    padding: 30px 26px 26px;
    transition: all 0.3s ease;
}

.comm-type-card:hover {
    border-color: var(--comm-copper);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.06);
    transform: translateY(-3px);
}

.comm-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.comm-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm-type-icon svg {
    width: 22px;
    height: 22px;
}

.comm-type-retail {
    background: linear-gradient(135deg, #d4af37, #b8941e);
    color: #fff;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.comm-type-shopping {
    background: linear-gradient(135deg, #2d8a4e, #1f6e3c);
    color: #fff;
    box-shadow: 0 4px 12px rgba(45, 138, 78, 0.2);
}

.comm-type-corporate {
    background: linear-gradient(135deg, #3a5ba0, #2d4780);
    color: #fff;
    box-shadow: 0 4px 12px rgba(58, 91, 160, 0.2);
}

.comm-type-hospitality {
    background: linear-gradient(135deg, #9b3d3d, #7c3030);
    color: #fff;
    box-shadow: 0 4px 12px rgba(155, 61, 61, 0.2);
}

.comm-type-realestate {
    background: linear-gradient(135deg, #6b5b8a, #554874);
    color: #fff;
    box-shadow: 0 4px 12px rgba(107, 91, 138, 0.2);
}

.comm-type-healthcare {
    background: linear-gradient(135deg, #2a8a8a, #1f706e);
    color: #fff;
    box-shadow: 0 4px 12px rgba(42, 138, 138, 0.2);
}

.comm-type-tag {
    background: var(--comm-copper);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.comm-type-card h3 {
    font-size: 1.1rem;
    color: var(--comm-text);
    margin-bottom: 8px;
}

.comm-type-card > p {
    font-size: 0.88rem;
    color: var(--comm-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.comm-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comm-type-features li {
    position: relative;
    font-size: 0.82rem;
    color: var(--comm-text-muted);
    padding: 4px 0 4px 18px;
}

.comm-type-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--comm-copper);
    border-radius: 50%;
}


/* ==========================================================================
   BENEFITS — Split layout
   ========================================================================== */

.comm-benefits {
    padding: 90px 0;
    background: var(--comm-warm);
}

.comm-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.comm-benefits-content .section-label {
    margin-bottom: 12px;
    display: block;
}

.comm-benefits-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: var(--comm-text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.comm-benefits-lead {
    font-size: 0.95rem;
    color: var(--comm-text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.comm-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comm-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comm-benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--comm-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--comm-copper-light);
}

.comm-benefit-icon svg {
    width: 20px;
    height: 20px;
}

.comm-benefit-item h3 {
    font-size: 1rem;
    color: var(--comm-text);
    margin-bottom: 4px;
}

.comm-benefit-item p {
    font-size: 0.88rem;
    color: var(--comm-text-muted);
    line-height: 1.6;
}

/* Benefits Visual */
.comm-benefits-visual {
    position: relative;
}

.comm-benefits-image {
    border-radius: var(--comm-radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(26, 26, 26, 0.12);
}

.comm-benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comm-benefits-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--comm-dark);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--comm-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.comm-benefits-badge svg {
    width: 24px;
    height: 24px;
    color: var(--comm-copper-light);
    flex-shrink: 0;
}

.comm-benefits-badge strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.comm-benefits-badge span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1px;
}


/* ==========================================================================
   PROCESS — Horizontal steps
   ========================================================================== */

.comm-process {
    padding: 90px 0;
    background: #fff;
}

.comm-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.comm-process-step {
    flex: 1;
    text-align: center;
    max-width: 220px;
}

.comm-step-number {
    width: 56px;
    height: 56px;
    background: var(--comm-dark);
    color: var(--comm-copper-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.15);
}

.comm-step-content h3 {
    font-size: 1.05rem;
    color: var(--comm-text);
    margin-bottom: 8px;
}

.comm-step-content p {
    font-size: 0.85rem;
    color: var(--comm-text-muted);
    line-height: 1.6;
}

.comm-process-connector {
    width: 40px;
    height: 2px;
    background: var(--comm-border);
    flex-shrink: 0;
    margin-top: 28px;
}


/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.comm-trust-bar {
    padding: 28px 0;
    background: var(--comm-dark);
    border-top: 3px solid var(--comm-copper);
}

.comm-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.comm-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comm-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--comm-copper-light);
    flex-shrink: 0;
}

.comm-trust-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}


/* ==========================================================================
   CONSULTATION FORM SECTION
   ========================================================================== */

.comm-form-section {
    padding: 90px 0 100px;
    background: var(--comm-warm);
}

.comm-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Info */
.comm-form-badge {
    display: inline-block;
    background: var(--comm-copper-pale);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--comm-copper);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.comm-form-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--comm-text);
    margin-bottom: 14px;
    line-height: 1.2;
}

.comm-form-info > p {
    font-size: 0.95rem;
    color: var(--comm-text-muted);
    line-height: 1.75;
    margin-bottom: 30px;
}

.comm-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.comm-form-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.comm-form-benefit svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.comm-form-benefit span {
    font-size: 0.9rem;
    color: var(--comm-text);
    line-height: 1.5;
}

.comm-form-contact {
    padding-top: 24px;
    border-top: 1px solid var(--comm-border);
}

.comm-form-contact p {
    font-size: 0.82rem;
    color: var(--comm-text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.comm-form-phone,
.comm-form-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--comm-text);
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 24px;
    margin-bottom: 8px;
}

.comm-form-phone:hover,
.comm-form-email:hover {
    color: var(--comm-copper);
}

.comm-form-phone svg,
.comm-form-email svg {
    width: 18px;
    height: 18px;
    color: var(--comm-copper);
}

/* Form Card */
.comm-form-card {
    background: #fff;
    border: 1px solid var(--comm-border);
    border-radius: var(--comm-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.06);
}

.comm-form-card-header {
    background: var(--comm-dark);
    padding: 24px 32px;
}

.comm-form-card-header h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.comm-form-card-header p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.comm-form {
    padding: 28px 32px 32px;
}

.comm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comm-form-group {
    margin-bottom: 18px;
}

.comm-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--comm-text);
    margin-bottom: 6px;
}

.comm-form-group label span {
    color: var(--color-secondary);
}

.comm-form-group input,
.comm-form-group select,
.comm-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--comm-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--comm-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.comm-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.comm-form-group input:focus,
.comm-form-group select:focus,
.comm-form-group textarea:focus {
    outline: none;
    border-color: var(--comm-copper);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.comm-form-group input::placeholder,
.comm-form-group textarea::placeholder {
    color: #b5b0a8;
}

.comm-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.comm-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 30px;
    background: var(--comm-copper);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.comm-form-submit:hover {
    background: var(--comm-copper-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.comm-form-submit svg {
    width: 18px;
    height: 18px;
}

.comm-form-disclaimer {
    font-size: 0.75rem;
    color: var(--comm-text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}


/* ==========================================================================
   SERVICES NAV
   ========================================================================== */

.comm-services-nav {
    padding: 50px 0 150px;
    background: #fff;
    text-align: center;
}

.comm-services-nav h3 {
    font-size: 0.95rem;
    color: var(--comm-text-muted);
    font-weight: 500;
    margin-bottom: 20px;
}

.comm-nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.comm-nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid var(--comm-border);
    border-radius: 8px;
    color: var(--comm-text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.comm-nav-links a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(34, 139, 34, 0.03);
}

.comm-nav-links a svg {
    width: 16px;
    height: 16px;
}


/* ==========================================================================
   FAQ OVERRIDES
   ========================================================================== */

.page-commercial .faq-section {
    padding: 80px 0;
    background: #fff;
}


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

@media (max-width: 1100px) {
    .comm-hero-grid {
        grid-template-columns: 1fr 360px;
        gap: 40px;
    }

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

@media (max-width: 991px) {
    .comm-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .comm-hero-visual {
        display: none;
    }

    .comm-hero {
        min-height: auto;
    }

    .comm-hero-grid {
        padding: 50px 0 40px;
    }

    .comm-types-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .comm-benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comm-benefits-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .comm-benefits-badge {
        bottom: -12px;
        left: -8px;
    }

    .comm-process-steps {
        flex-wrap: wrap;
        gap: 24px;
    }

    .comm-process-connector {
        display: none;
    }

    .comm-process-step {
        flex: 1 1 200px;
        max-width: none;
    }

    .comm-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .comm-types,
    .comm-benefits,
    .comm-process,
    .comm-form-section {
        padding: 60px 0;
    }

    .comm-hero-metrics {
        gap: 0;
        justify-content: flex-start;
    }

    .comm-metric {
        padding: 0 14px;
    }

    .comm-metric strong {
        font-size: 1.25rem;
    }

    .comm-trust-items {
        gap: 20px;
    }

    .comm-trust-item span {
        display: none;
    }

    .comm-form {
        padding: 24px 20px;
    }

    .comm-form-row {
        grid-template-columns: 1fr;
    }

    .comm-form-card-header {
        padding: 20px;
    }

    .comm-process-steps {
        flex-direction: column;
        align-items: center;
    }

    .comm-process-step {
        max-width: 360px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .comm-hero h1 {
        font-size: 1.7rem;
    }

    .comm-hero-actions {
        flex-direction: column;
    }

    .comm-btn-primary,
    .comm-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .comm-hero-metrics {
        flex-wrap: wrap;
        gap: 12px;
    }

    .comm-metric {
        flex: 0 0 calc(50% - 6px);
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        text-align: center;
    }

    .comm-metric-divider {
        display: none;
    }

    .comm-nav-links {
        flex-direction: column;
        align-items: stretch;
    }

    .comm-nav-links a {
        justify-content: center;
    }
}