/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #FF5454;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Proxima Nova Alt Bold Italic', sans-serif;
    color: white;
}

.stat-item .stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Proxima Nova', sans-serif;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1c 0%, #101012 100%);
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transition: none !important;
}

.cta-section:hover {
    border-color: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}


.cta-section h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Proxima Nova Alt Bold Italic', sans-serif;
}

.cta-section h2 span {
    color: #FF5454;
}

.cta-section p {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'Proxima Nova', sans-serif;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    font-family: 'Proxima Nova', sans-serif;
}

.btn-primary {
    background: #FF5454;
    color: white;
    border-color: #FF5454;
}

.btn-primary:hover {
    background: transparent;
    color: #FF5454;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 84, 84, 0.3);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #333;
}

.btn-secondary:hover {
    background: #333;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.plugin-card {
    background-color: #1b1b1e;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.15);
}

.plugin-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.plugin-title {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}

.plugin-desc {
    color: #757575;
    font-size: 14px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.plugin-price {
    color: #FF5454;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.plugin-btn {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    width: 100%;
}

.plugin-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff8c8c);
    transform: translateY(-2px);
}

.category-badge {
    background-color: #2f191b;
    color: #FFACAC;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

.four-col {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    gap: 25px;
    position: relative;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .four-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .four-col {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Services Section Styles */
.badge {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card {
    background-color: #1b1b1e;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 84, 84, 0.2);
    border-color: #FF5454;
}

.service-icon {
    font-size: 48px;
    color: #FF5454;
    margin-bottom: 20px;
}

.service-title {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.service-desc {
    color: #757575;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: #ccc;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    color: #FF5454;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-btn {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    background: linear-gradient(45deg, #ff7676, #FF5454);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.service-stat {
    background-color: #1b1b1e;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.1);
}

.service-icon-sm {
    font-size: 32px;
    color: #FF5454;
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

.stat-text {
    color: #757575;
    font-size: 14px;
    margin: 0;
}

.workflow-step {
    background-color: #1b1b1e;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.workflow-step h4 {
    color: white;
    font-family: 'Proxima Nova Alt Bold Italic';
    margin-bottom: 15px;
}

.workflow-step p {
    color: #757575;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Fix text color for service description */
.text-muted {
    color: #757575 !important;
}

/* Subtle hover effects for Why Choose Our Plugins - keeping original design */
.image-text {
    transition: all 0.3s ease;
}

.image-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 84, 84, 0.1);
}

.roundimg {
    transition: all 0.3s ease;
}

.image-text:hover .roundimg {
    transform: scale(1.05);
}

.btitle {
    transition: all 0.3s ease;
}

.image-text:hover .btitle {
    color: #FF5454;
}

/* Contact Form - only hover effects for inputs, keeping original styling */
.tbox {
    transition: all 0.3s ease;
}

.tbox:hover {
    border-color: #555;
    transform: translateY(-1px);
}

.tbox:focus {
    border-color: #FF5454;
    box-shadow: 0 0 0 2px rgba(255, 84, 84, 0.1);
    transform: translateY(-2px);
}

/* Improved Submit Button - keeping form layout intact */
.btn-submit {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #ff7676, #FF5454);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 84, 84, 0.25);
}

.btn-submit:active {
    transform: translateY(0);
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.image-text {
    background-color: #1b1b1e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    cursor: pointer;
}

.image-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 84, 84, 0.2);
    border-color: #FF5454;
}

.roundimg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.image-text:hover .roundimg {
    transform: scale(1.1);
}

.txtbox {
    padding: 0;
}

.btitle {
    color: white;
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 18px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.image-text:hover .btitle {
    color: #FF5454;
}

.subtxt {
    color: #757575;
    font-size: 14px;
    transition: all 0.3s ease;
}

.image-text:hover .subtxt {
    color: #ccc;
}

/* Contact Form Styles */
#contact {
    background-color: #0f0f0f;
    padding: 80px 0;
}

#contact h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Proxima Nova Alt Bold Italic';
}

.form-two-col {
    max-width: 800px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.grid:first-child {
    grid-template-columns: repeat(3, 1fr);
}

.tbox {
    background-color: #1b1b1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.tbox:focus {
    border-color: #FF5454;
    box-shadow: 0 0 0 3px rgba(255, 84, 84, 0.1);
    transform: translateY(-2px);
}

.tbox:hover {
    border-color: #555;
    transform: translateY(-1px);
}

.tbox::placeholder {
    color: #757575;
}

textarea.tbox {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #ff7676, #FF5454);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 84, 84, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.text-right {
    text-align: right;
}
.text-center .cta-section {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    transition: none !important;
}

.text-center .cta-section:hover {
    border-color: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .three-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid:first-child {
        grid-template-columns: 1fr;
    }
    
    .image-text {
        padding: 20px;
    }
    
    .roundimg {
        width: 60px;
        height: 60px;
    }
    
    .text-right {
        text-align: center;
    }
}

/* New About/Mission Section Styles */
.mission-content h3 {
    color: white;
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 28px;
    margin-bottom: 20px;
}

.mission-content p {
    color: #757575;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
	height: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 20px;
    background-color: #1b1b1e;
    border-radius: 10px;
    border: 1px solid #333;
    cursor: pointer;
}

.feature-item:hover {
    color: #FF5454;
    transform: translateY(-3px);
    border-color: #FF5454;
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.15);
    text-decoration: none;
}

.feature-item i {
    color: #FF5454;
    font-size: 20px;
    width: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
	align-items: stretch;
}

.stat-card {
    background-color: #1b1b1e;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    /* Match height with feature items */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.15);
    border-color: #FF5454;
    text-decoration: none;
    color: inherit;
}

.stat-icon {
    font-size: 20px;
    color: #FF5454;
    margin-bottom: 6px;
}

.stat-number {
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 20px;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    color: #757575;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row.mb-5 {
    display: flex;
    align-items: stretch;
}
.col-lg-6 {
    display: flex;
    flex-direction: column;
}
.mission-content,
.stats-grid {
    flex: 1; /* beide gleich hoch */
}


/* Responsive adjustments for new section */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 12px;
        min-height: 60px;
    }
    
    .stat-icon {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px;
        min-height: 55px;
    }
    
    .stat-icon {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .stat-number {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 9px;
    }
}

.cta-section {
    background-color: #1b1b1e;
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.cta-section:hover {
    border-color: #FF5454;
    box-shadow: 0 10px 30px rgba(255, 84, 84, 0.1);
}

.cta-section h3 {
    color: white;
    font-family: 'Proxima Nova Alt Bold Italic';
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #757575;
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-btn-outline {
    background: transparent;
    border: 2px solid #FF5454;
    color: #FF5454;
}

.service-btn-outline:hover {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: white;
    border-color: transparent;
}

/* Responsive adjustments for new section */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mission-features {
        margin-top: 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Homepage aligned to support center style */
#home.home-support-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

#home.home-support-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.94) 0%, rgba(16, 16, 18, 0.74) 18%, rgba(16, 16, 18, 0.28) 38%, transparent 58%),
        radial-gradient(circle at 18% 24%, rgba(255, 84, 84, 0.06), transparent 24%),
        radial-gradient(circle at 82% 28%, rgba(255, 84, 84, 0.04), transparent 22%);
    pointer-events: none;
}

#home .container,
.home-services .container,
.home-about .container,
.home-cta .container {
    position: relative;
    z-index: 1;
}

.home-support-panel,
.home-contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.home-hero-card,
.home-overview-card,
.home-panel,
.home-service-card,
.home-proof-card {
    background: #1b1b1e;
    border: 1px solid #333;
    border-radius: 15px;
}

.home-hero-card,
.home-overview-card,
.home-panel {
    padding: 32px;
}

.home-hero-card h1 {
    font-size: clamp(58px, 7vw, 96px);
    line-height: 0.93;
    margin-bottom: 20px;
}

.home-hero-card p {
    max-width: 690px;
    color: #757575;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    font-size: 18px;
}

.home-support-hero .badge,
.home-services .badge,
.home-about .badge,
.home-cta .badge {
    background: #2f191b;
    color: #FFACAC;
    border-radius: 54px;
    padding: 8px 22px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.home-search-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    margin-top: 28px;
    background: #1b1b1e;
    border: 1px solid #333;
    border-radius: 15px;
    max-width: 720px;
}

.home-search-icon,
.home-quick-item i {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2f191b;
    color: #FF5454;
    font-size: 18px;
    flex-shrink: 0;
}

.home-search-copy strong,
.home-status-inline strong,
.home-route-card strong,
.home-quick-item strong {
    display: block;
    color: #ffffff;
}

.home-search-copy span,
.home-status-inline span,
.home-route-card span,
.home-quick-item span {
    color: #757575;
    line-height: 1.65;
    font-size: 14px;
}

.home-hero-actions,
.home-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.home-primary-btn,
.home-secondary-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.home-primary-btn {
    background: linear-gradient(45deg, #FF5454, #ff7676);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 84, 84, 0.3);
    border: none;
}

.home-primary-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff8c8c);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 84, 84, 0.5);
    text-decoration: none;
}

.home-secondary-btn {
    background: transparent;
    color: #FF5454;
    border: 2px solid #FF5454;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.home-secondary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,84,84,0.1), rgba(255,84,84,0.2));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

.home-secondary-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.home-secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 84, 84, 0.2);
    text-decoration: none;
}

.home-quick-grid,
.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-quick-item {
    display: block;
    padding: 18px;
    border-radius: 15px;
    border: 1px solid #333;
    background: #1b1b1e;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-quick-item:hover {
    transform: translateY(-3px);
    border-color: #FF5454;
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.12);
    color: inherit;
    text-decoration: none;
}

.home-quick-item i {
    margin-bottom: 14px;
}

.home-status-inline {
    display: block;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1b1b1e;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-status-inline:hover {
    transform: translateY(-2px);
    border-color: #FF5454;
    box-shadow: 0 10px 20px rgba(255, 84, 84, 0.12);
    text-decoration: none;
}

.home-status-inline strong {
    color: #ffffff;
}

.home-status-inline span {
    color: #ffffff;
}

.home-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: #6BFF95;
    box-shadow: 0 0 12px rgba(107, 255, 149, 0.45);
}

.home-service-card {
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.home-service-card .service-title {
    min-height: 58px;
}

.home-service-card .service-desc {
    min-height: 96px;
}

.home-service-card .service-btn {
    margin-top: auto;
    align-self: flex-start;
}

#home .two-col {
    align-items: start;
}

#home .mimg {
    top: 0;
}

.home-service-card:hover,
.home-panel:hover {
    transform: translateY(-5px);
    border-color: #FF5454;
    box-shadow: 0 15px 30px rgba(255, 84, 84, 0.16);
}

.home-services .row,
.home-about .row {
    --bs-gutter-y: 1.5rem;
}

.home-about .mission-content,
.home-about .stat-card {
    background: #1b1b1e;
    border: 1px solid #333;
    border-radius: 15px;
}

.home-about .mission-content {
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.home-stats-grid {
    height: 100%;
}

.home-about .stat-card,
.home-panel {
    transition: all 0.3s ease;
}

.home-about .stat-card:hover,
.home-about .mission-content:hover,
.home-final-cta:hover {
    transform: translateY(-5px);
    border-color: #FF5454;
    box-shadow: 0 15px 30px rgba(255, 84, 84, 0.16);
    text-decoration: none;
    color: inherit;
}

.home-about {
    padding-bottom: 0;
}

.home-cta {
    padding-top: 100px;
    padding-bottom: 100px;
}

.home-jobs-bar {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 80px 0;
    background: #FF5454;
    border-radius: 0;
}

.home-hiring-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.home-hiring-kicker {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 54px;
    background: rgba(0, 0, 0, 0.16);
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 14px;
}

.home-hiring-copy h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: 'Proxima Nova Alt Bold Italic', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.05;
}

.home-hiring-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 820px;
    line-height: 1.7;
    font-size: 16px;
}

.home-hiring-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    background: rgba(17, 17, 20, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.home-hiring-btn:hover {
    transform: translateY(-3px);
    background: #101012;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    color: #ffffff;
    text-decoration: none;
}

.home-route-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    background: #2f191b;
    border: 1px solid #4a2b2d;
    color: #FFACAC;
}

.home-route-card .support-escalation-item {
    padding: 16px 0;
    border-bottom: 1px solid #333;
}

.home-route-card .support-escalation-item:last-of-type {
    border-bottom: none;
}

.home-route-card .support-escalation-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 10px;
    background: #202023;
    border: 1px solid #333;
    color: #ccc;
    line-height: 1.7;
}

body.home footer {
    margin-top: 0;
}

@media (max-width: 991px) {
    .home-support-panel,
    .home-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    #home.home-support-hero {
        padding-top: 125px;
    }

    .home-hero-card,
    .home-overview-card,
    .home-panel,
    .home-service-card,
    .home-proof-card {
        padding: 24px;
    }

    .home-search-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero-actions,
    .home-cta .cta-buttons {
        flex-direction: column;
    }

    .home-primary-btn,
    .home-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .home-quick-grid {
        grid-template-columns: 1fr;
    }

    .home-jobs-bar {
        padding: 50px 0;
    }

    .home-hiring-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 26px;
    }

    .home-hiring-btn {
        width: 100%;
        justify-content: center;
    }

}
