/* ========== RESET E GENERALI ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "myriad-pro", sans-serif;
    color: #231F20;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* ========== HEADER STICKY ========== */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-header img {
    max-height: 50px;
    width: auto;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 85vh;
    background-image: url('../img/bg-hero-landing.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
padding-top:120px;
}

.hero-title {
    font-size: 3.5rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.2;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: #e91e8c;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #e91e8c;
    transition: all 0.3s ease;
      font-family: "myriad-pro", sans-serif;
}

.btn-primary-custom:hover {
    background-color: #d01a7d;
    border-color: #d01a7d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: #ffffff;
    padding: 15px 60px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #d01a7d;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: "myriad-pro", sans-serif;
}

.btn-outline-custom:hover {
    background-color: #ffffff;
    color: #231F20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-footer-text {
    font-family: "myriad-pro", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    opacity: 1;
    margin: 0;
    font-weight: 600;
}

.hero-badge {
    position: absolute;
    top: 0;
    right: 15px;
    text-align: center;
    max-width: 300px;
    padding-top: 130px;
}

.hero-badge .logo-24ore {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.hero-badge .badge-text {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    min-height: 15vh;
    background-color: #f8f9fa;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.partner-logo {
    max-height: 60px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ========== WHY RENTBACK SECTION ========== */
.why-rentback-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 3.5rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.3rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 800;
    color: #231F20;
    line-height: 1.2;
    margin-bottom: 0;
}

.benefit-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    height: 100%;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-left-pink {
    border-left-color: #ec008c;
}

.border-left-purple {
    border-left-color: #665094;
}

.border-left-purple2 {
    border-left-color: #0098a2;
}

.border-left-magenta {
    border-left-color: #8f2482;
}

.border-left-darkpurple {
    border-left-color: #2b4b7f;
}

.border-left-darkblue {
    border-left-color: #00b0bd;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2.5rem;
}

.benefit-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.border-left-pink .benefit-icon i {
    color: #ec008c;
}

.border-left-purple .benefit-icon i {
    color: #665094;
}

.border-left-purple2 .benefit-icon i {
    color: #0098a2;
}

.border-left-magenta .benefit-icon i {
    color: #8f2482;
}

.border-left-darkpurple .benefit-icon i {
    color: #2b4b7f;
}

.border-left-darkblue .benefit-icon i {
    color: #00b0bd;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.4rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.2;
    margin: 0;
}

/* ========== ADVANTAGES SECTION ========== */
.advantages-section {
    background-image: url('../img/gradient.-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.advantages-section .container {
    position: relative;
    z-index: 2;
}

.advantage-box {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    gap: 20px;
    height: 100%;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.advantage-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.border-pink {
    border-color: #ec008c;
}

.border-magenta {
    border-color: #8f2482;
}

.border-purple {
    border-color: #665094;
}

.border-darkpurple {
    border-color: #2b4b7f;
}

.border-purple2 {
    border-color: #0098a2;
}

.border-darkblue {
    border-color: #00b0bd;
}

.advantage-border-pink {
    border-left-color: #ec008c;
}

.advantage-border-magenta {
    border-left-color: #8f2482;
}

.advantage-border-purple {
    border-left-color: #665094;
}

.advantage-border-darkpurple {
    border-left-color: #2b4b7f;
}

.advantage-border-purple2 {
    border-left-color: #0098a2;
}

.advantage-border-darkblue {
    border-left-color: #00b0bd;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-size: 1.4rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.advantage-text {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    opacity: 0.9;
}

.advantage-footer-text {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
    font-weight: 300;
}

/* ========== PLATFORM SECTION ========== */
.platform-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.platform-carousel .owl-stage-outer {
    padding: 20px 0;
}

.platform-slide {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
}

.platform-slide-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.platform-number {
    flex-shrink: 0;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.platform-text {
    flex: 1;
}

.platform-slide-title {
    font-size: 2.5rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 10px;
    line-height: 1.2;
}

.platform-slide-subtitle {
    font-size: 1.2rem;
    line-height: 0.9;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.platform-image-wrapper {
    border-left: 8px solid;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.platform-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.platform-image {
    width: 100%;
    height: auto;
    display: block;
}

.platform-carousel .owl-nav {
    display: none !important;
}

.platform-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.platform-carousel .owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ddd !important;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.platform-carousel .owl-dot.active {
    background-color: #e91e8c !important;
    transform: scale(1.2);
}

/* ========== RESULTS SECTION ========== */
.results-section {
    background-image: url('../img/gradient.-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.results-section .container {
    position: relative;
    z-index: 2;
}

/* ========== FAQ VENDOR SECTION ========== */
.faq-vendor-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.step-item {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    max-width: 150px;
    margin: 0 auto;
}

.step-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-item.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.step-item.animate:nth-child(2) {
    transition-delay: 0.3s;
}

.step-item.animate:nth-child(3) {
    transition-delay: 0.5s;
}

.step-item.animate:nth-child(4) {
    transition-delay: 0.7s;
}

.step-item.animate:nth-child(5) {
    transition-delay: 0.9s;
}

.step-connector {
    width: 30px;
    height: 2px;
    border-top: 2px dashed #999;
    margin-top: -100px;
}

.step-icon {
    margin-bottom: 40px;
}

.step-icon i {
    font-size: 4rem;
    color: #231F20;
}

.step-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.step-number {
    margin-bottom: 15px;
}

.number-filled {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.bg-pink {
    background-color: #ec008c;
}

.bg-magenta {
    background-color: #8f2482;
}

.bg-purple {
    background-color: #665094;
}

.bg-darkpurple {
    background-color: #2b4b7f;
}

.bg-purple2 {
    background-color: #0098a2;
}

.bg-darkblue {
    background-color: #00b0bd;
}

.step-title {
    font-size: 1.1rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #231F20;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

/* ========== BUSINESS CASE SECTION ========== */
.business-case-section {
    background-image: url('../img/gradient.-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.business-case-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.business-case-section .container {
    position: relative;
    z-index: 2;
}

.stats-box {
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    min-height: 170px;
}

.stats-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-border-pink {
    background-color: #ec008c;
    border: 2px solid #ec008c;
}

.stats-border-pink:hover {
    background-color: #d01a7d;
    border-color: #d01a7d;
}

.stats-border-magenta {
    background-color: #8f2482;
    border: 2px solid #8f2482;
}

.stats-border-magenta:hover {
    background-color: #7a1f6f;
    border-color: #7a1f6f;
}

.stats-border-purple {
    background-color: #665094;
    border: 2px solid #665094;
}

.stats-border-purple:hover {
    background-color: #554380;
    border-color: #554380;
}

.stats-border-darkpurple {
    background-color: #2b4b7f;
    border: 2px solid #2b4b7f;
}

.stats-border-darkpurple:hover {
    background-color: #233e6b;
    border-color: #233e6b;
}

.stats-border-purple2 {
    background-color: #0098a2;
    border: 2px solid #0098a2;
}

.stats-border-purple2:hover {
    background-color: #00808a;
    border-color: #00808a;
}

.stats-label {
    font-size: 1rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.stats-value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stats-value .counter {
    display: inline-block;
}

.stats-suffix {
    font-size: 2rem;
    margin-left: 5px;
}

.stats-footer-text {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
}

/* ========== WHO IS JOHIX SECTION ========== */
.who-is-johix-section {
    padding: 80px 0;
}

.johix-info-box {
    background-color: #F8F9FA;
    border-radius: 10px;
    padding: 25px 30px;
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.johix-info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.johix-border-pink {
    border-left-color: #ec008c;
}

.johix-border-magenta {
    border-left-color: #8f2482;
}

.johix-border-purple {
    border-left-color: #665094;
}

.johix-text {
    font-size: 1.3rem;
    color: #231F20;
    line-height: 1.7;
    gap: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 800;
}

.johix-text strong {
    display: inline;
    white-space: normal;
}

.check-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px;
    margin-right: 10px;
}

.check-pink {
    color: #ec008c;
}

.check-magenta {
    color: #8f2482;
}

.check-purple {
    color: #665094;
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
    background-image: url('../img/gradient.-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form {
    background-color: transparent;
}

.contact-input,
.contact-textarea {
    background-color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #231F20;
    transition: all 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #999;
    opacity: 1;
}

.contact-input:focus,
.contact-textarea:focus {
    background-color: #ffffff;
    border-color: #e91e8c;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 140, 0.25);
    outline: none;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    background-color: #ec008c;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #ec008c;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background-color: #d01a7d;
    border-color: #d01a7d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 0, 140, 0.4);
}

.form-message-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 30px;
    border-left: 5px solid;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-box.success {
    border-left-color: #28a745;
    background-color: #d4edda;
}

.form-message-box.error {
    border-left-color: #dc3545;
    background-color: #f8d7da;
}

.form-message-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-message-box.success .form-message-icon {
    color: #28a745;
}

.form-message-box.error .form-message-icon {
    color: #dc3545;
}

.form-message-text {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #231F20;
    line-height: 1.4;
}

/* ========== THANK YOU PAGE ========== */
.thank-you-section {
    background-image: url('../img/gradient.-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.thank-you-section .container {
    position: relative;
    z-index: 2;
}

.thank-you-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-icon-wrapper {
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease 0.3s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-icon {
    font-size: 5rem;
    color: #28a745;
    display: inline-block;
}

.thank-you-title {
    font-size: 3rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeIn 0.8s ease 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.thank-you-subtitle {
    font-size: 1.4rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 600;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
    animation: fadeIn 0.8s ease 0.7s both;
}

.thank-you-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease 0.9s both;
}

.thank-you-buttons .btn {
    min-width: 200px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: 30px 20px;
        padding-top: 80px;
    }
    
    .hero-section {
        min-height: auto;
        padding-bottom: 30px;
    }
    
    .hero-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: 30px auto 0;
        max-width: 180px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-rentback-section {
        padding: 60px 0;
    }
    
    .advantages-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .business-case-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .step-item::after {
        display: none;
    }
    
    .who-is-johix-section {
        padding: 60px 0;
    }
    
    .johix-text {
        font-size: 1rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    
    .contact-form-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .results-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .platform-section {
        padding: 60px 0;
    }
    
    .faq-vendor-section {
        padding: 60px 0;
    }
    
    .platform-slide-title {
        font-size: 1.5rem;
    }
    
    .platform-slide-subtitle {
        font-size: 0.9rem;
    }
    
    .platform-number {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .partner-logo {
        max-height: 45px;
    }
    
    .partners-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefit-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .benefit-icon {
        margin: 0 auto 15px;
    }
    
    .benefit-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .advantage-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .advantage-number {
        margin: 0 auto 15px;
    }
    
    .step-icon i {
        font-size: 3rem;
    }
    
    .step-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 0.85rem;
    }
    
    .stats-value {
        font-size: 2.5rem;
    }
    
    .stats-suffix {
        font-size: 1.8rem;
    }
    
    .who-is-johix-section {
        padding: 50px 0;
    }
    
    .contact-form-section {
        padding: 50px 0;
    }
    
    .results-section {
        padding: 50px 0;
    }
    
    .platform-section {
        padding: 50px 0;
    }
    
    .faq-vendor-section {
        padding: 50px 0;
    }
    
    .platform-slide {
        gap: 20px;
    }
    
    .platform-slide-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .platform-number {
        font-size: 2.5rem;
    }
    
    .platform-slide-title {
        font-size: 1.3rem;
    }
    
    .platform-slide-subtitle {
        font-size: 0.85rem;
    }
    
    .platform-image-wrapper {
        border-left-width: 6px;
    }
    
    .thank-you-section {
        min-height: 70vh;
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .thank-you-content {
        padding: 50px 30px;
    }
    
    .thank-you-title {
        font-size: 2.2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.2rem;
    }
    
    .thank-you-icon {
        font-size: 4rem;
    }
}

@media (max-width: 575px) {
    .logo-header img {
        max-height: 40px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .why-rentback-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
    
    .advantages-section {
        padding: 40px 0;
    }
    
    .advantage-title {
        font-size: 1.1rem;
    }
    
    .advantage-text {
        font-size: 0.9rem;
    }
    
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .step-icon i {
        font-size: 2.5rem;
    }
    
    .step-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .number-filled {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 0.75rem;
    }
    
    .business-case-section {
        padding: 40px 0;
    }
    
    .who-is-johix-section {
        padding: 40px 0;
    }
    
    .johix-text {
        font-size: 0.95rem;
        line-height: 1.6;
        gap: 10px;
    }
    
    .check-icon {
        font-size: 1.2rem;
        margin-top: 2px;
    }
    
    .johix-info-box {
        padding: 20px 25px;
    }
    
    .stats-value {
        font-size: 2rem;
    }
    
    .stats-suffix {
        font-size: 1.5rem;
    }
    
    .stats-label {
        font-size: 0.85rem;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-input,
    .contact-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-contact-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .results-section {
        padding: 40px 0;
    }
    
    .platform-section {
        padding: 40px 0;
    }
    
    .platform-slide-title {
        font-size: 1.2rem;
    }
    
    .platform-slide-subtitle {
        font-size: 0.8rem;
    }
    
    .platform-number {
        font-size: 2rem;
    }
    
    .faq-vendor-section {
        padding: 40px 0;
    }
    
    .thank-you-section {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .thank-you-content {
        padding: 40px 25px;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .thank-you-icon {
        font-size: 3.5rem;
    }
    
    .thank-you-buttons {
        flex-direction: column;
    }
    
    .thank-you-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you-title {
        font-size: 1.6rem;
    }
    
    .thank-you-subtitle {
        font-size: 1rem;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
}

/* ========== FOOTER ========== */
.footer-main {
    background-color: #231F20;
    padding: 60px 0 0;
}

.footer-logo {
    width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.2rem;
    font-family: "myriad-pro", sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.85;
    line-height: 1.3;
}

.footer-bottom {
    padding: 10px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nur-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-nur-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.footer-nur-logo {
    height: 15px;
    width: auto;
}

.footer-nur-text {
    font-size: 0.7rem;
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 0;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
    
    .footer-nur-link {
        justify-content: center;
    }
}