/* ============================================
   GENERAL RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background-color: #000000 !important;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #333;
}

p {
    color: #212529 !important;
}


/* ============================================
   HERO SECTION
============================================ */
.hero-main-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.595));
    z-index: 1;
}

.hero-main-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 40px 0;
}

.hero-main-content {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
}

.hero-content-left > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.hero-content-left > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content-left > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content-left > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content-left > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content-left > *:nth-child(5) { animation-delay: 1.1s; }

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 60px;
}

.hero-text-highlight {
    color: #3E89EC;
    text-shadow: 0 3px 6px rgba(62,137,236,0.5);
}

.hero-subheadline {
    font-size: 1.45rem;
    font-weight: 600;
    color: #EAF2FF;
    max-width: 920px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
}

.hero-subheadline::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #3E89EC;
    margin: 16px auto 0;
    border-radius: 2px;
}

.hero-main-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #fff !important;
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
}

.hero-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3E89EC;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.hero-highlight {
    color: #ffffff;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-circle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-feature-item p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #3E89EC;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(62, 137, 236, 0.4);
    transition: 0.3s;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.btn-primary:hover { 
    background: #2c6ec7; 
}

.btn-secondary:hover { 
    background: #fff; 
    color: #333; 
}


/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes autoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-425px * 6 - 150px));
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}


/* ============================================
   AWESOME ERP SECTION
============================================ */
.awesome-erp {
    background: linear-gradient(135deg, #007bff 0%, #3E89EC 100%);
    color: white;
    width: 100%;
    padding: 50px 0;
}

.erp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: auto;
}

.erp-left, 
.erp-right {
    color: white !important;
    text-align: center;
    padding: 20px;
}

.erp-left p, 
.erp-right p {
    color: white !important;
}

.erp-divider {
    width: 2px;
    height: 80px;
    background-color: white;
}


/* ============================================
   WHY US / ORBIT SECTION
============================================ */
.divider-line {
    background-color: #000000;
    padding: 20px 0;
}

.why-us {
    background: #ffffff !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    margin: 0 auto !important;
    max-width: 1450px !important;
    top: 20px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: transform 0.3s ease-in-out !important;
}

.why-us .top-line {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us h1 {
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: bold;
}

.orbit-section {
    background-color: #ffffff;
    padding: 80px 5%;
    color: #000000;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 60px;
    line-height: 1.2;
}

.highlight-text {
    color: #3E89EC !important;
}

.orbit-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-text {
    margin-bottom: 45px;
    transition: 0.3s ease;
}

.feature-text h5 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.8);
}

.feature-text p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.left-side {
    text-align: right;
}

.right-side {
    text-align: left;
}

.orbit-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-graphic {
    width: 100%;
    max-width: 400px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 1;
}


/* ============================================
   TECHNOLOGY / STATS SECTION
============================================ */
.technology-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    gap: 30px;
    border: 1px solid #ddd;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content h1 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #9ca3af !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-card .icon {
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.succeed-text {
    color: #3E89EC !important;
}


/* ============================================
   FOOTER SECTIONS
============================================ */
.footer-container {
    position: relative;
    background-color: rgb(255, 255, 253);
    padding: 0 20px;
    padding-top: 30px;
    text-align: center;
    overflow: hidden;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgb(255, 255, 253);
    border-radius: 50% 50% 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content h1 {
    letter-spacing: 10px;
}

.heading {
    color: #2d3748;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.join-button {
    display: inline-block;
    background-color: #216DCE;
    color: #fafbfc !important;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: 110px;
    text-align: center;
    min-width: 150px;
}

.join-button:hover {
    background-color: #333;
}

.a {
    background-color: rgb(255, 255, 253);
    color: #333;
    text-align: center;
    padding: 20px 0 40px 0;
}

.b {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.c {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.c:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.d {
    width: 30px;
    transition: filter 0.3s ease;
}

.d:hover {
    filter: brightness(1.2);
}

.e {
    font-size: 14px;
    color: #333;
    padding: 30px 0 0;
    max-width: 1000px;
    margin: 0 auto;
}

.f {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.f:hover {
    color: #007bff;
    text-decoration: underline;
}

.f:not(:last-child)::after {
    content: " | ";
    color: #333;
}

.c, .f {
    animation: fadeIn 1s ease-out;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px;
}

.social-links a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    margin-bottom: 30px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d3748;
}

.copyright {
    color: #4a5568;
    font-size: 14px;
}

.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 100;
    display: none;
}

.scroll-top:hover {
    background-color: #f8f9fa;
}

.footerbottom {
    position: relative;
}

.help-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border: 2px solid #6aa5ff;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.3);
}

.help-btn:hover {
    background-color: #1f78fc;
    color: #fff;
    text-decoration: none;
}


/* ============================================
   CALL / CONTACT ELEMENTS
============================================ */
.call {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 27px !important;
}

.call a {
    text-decoration: none !important;
    color: white !important;
}

.ringing-icon {
    font-size: 22px !important;
    color: white;
    animation: ring 1s infinite ease-in-out;
    margin: 0 20px 7px 0 !important;
}


/* ============================================
   BENEFITS CAROUSEL SECTION
============================================ */
.benefits-header {
    text-align: center;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1px;
    opacity: 0;
    animation: headerFadeIn 0.8s ease-out forwards;
    padding: 0 20px;
}

.benefits-header .header-subtitle {
    color: #666;
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    letter-spacing: 8px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.header-highlight {
    background: linear-gradient(120deg, #3E89EC 0%, #5797eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0) transparent;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.carousel-wrapper:hover .benefits-track {
    animation-play-state: paused;
}

.carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.benefits-track {
    display: flex;
    gap: 25px;
    padding: 0 40px;
    animation: autoSlide 35s linear infinite;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 20px;
    min-width: 400px;
    max-width: 400px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    animation: cardSlideIn 0.6s ease-out forwards;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(62, 137, 236, 0.2);
    border-color: #3E89EC;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-text {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 500;
}

.carousel-hint {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: hintPulse 2s infinite;
    padding: 0 20px;
}

.carousel-hint::after {
    content: ' (Hover to pause)';
    font-size: 0.85rem;
    opacity: 0.7;
}


/* ============================================
   RESPONSIVE - ULTRA WIDE SCREENS
============================================ */
@media (min-width: 1600px) {
    .hero-main-title {
        font-size: 4.2rem;
    }

    .hero-subheadline {
        font-size: 1.6rem;
    }

    .hero-main-description {
        font-size: 1.2rem;
    }

    .hero-main-content {
        max-width: 1400px;
    }
}

@media (min-width: 1025px) {
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl {
        max-width: 100% !important;
        padding: 0 10% !important;
    }
}


/* ============================================
   RESPONSIVE - LARGE LAPTOPS
============================================ */
@media (max-width: 1200px) {
    .hero-main-content {
        padding: 0 20px;
    }

    .hero-features-grid {
        gap: 16px;
    }
}


/* ============================================
   RESPONSIVE - TABLETS & MEDIUM SCREENS
============================================ */
@media (max-width: 1024px) {
    .orbit-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .orbit-center {
        grid-column: span 2;
        order: -1;
        margin-bottom: 40px;
    }

    .left-side,
    .right-side {
        text-align: center;
    }

    .benefits-header {
        font-size: clamp(1.8rem, 4.5vw, 4rem);
        margin-bottom: 40px;
    }

    .benefits-track {
        padding: 0 30px;
        gap: 20px;
    }

    .benefit-card {
        min-width: 350px;
        max-width: 350px;
        padding: 32px 35px;
    }

    .benefit-text {
        font-size: 1.1rem;
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-375px * 6 - 120px));
        }
    }

    .erp-container {
        padding: 0;
        font-size: small;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .erp-divider {
        width: 80px !important;
        height: 2px !important;
        background-color: white;
        margin: 10px auto;
    }
}

@media (min-width: 768px) {
    .erp-left, 
    .erp-right {
        width: 45% !important;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 87% !important;
    }
}


/* ============================================
   RESPONSIVE - MOBILE & SMALL TABLETS
============================================ */
@media (max-width: 991px) {
    .hero-main-title { 
        font-size: 2.6rem; 
    }
    
    .hero-subheadline { 
        font-size: 1.15rem; 
    }
}

@media (max-width: 768px) {
    .hero-main-section {
        padding-top: 80px;
    }

    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-main-description {
        font-size: 0.95rem;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ringing-icon {
        font-size: 15px !important;
        color: white;
        animation: ring 1s infinite ease-in-out;
        margin: 0 !important;
    }

    .scroll-top {
        display: none;
    }

    .footer-container {
        padding: 12px 15px;
    }

    .heading {
        font-size: 28px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 14px;
        margin: auto;
    }

    .heading {
        font-size: 36px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .technology-section {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        margin: 30px auto;
        gap: 20px;
    }

    .content {
        text-align: center;
        min-width: 100%;
    }

    .content h1 {
        font-size: 28px;
        margin-top: 30px;
    }

    .content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        max-width: 100%;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card h4 {
        font-size: 16px;
    }

    .orbit-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .orbit-center {
        grid-column: span 1;
    }

    .main-graphic {
        max-width: 280px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .feature-text {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .benefits-header {
        font-size: clamp(1.5rem, 4vw, 3.5rem);
        margin-bottom: 35px;
    }

    .benefits-header .header-subtitle {
        font-size: 0.55em;
        letter-spacing: 6px;
    }

    .benefits-track {
        padding: 0 20px;
        gap: 18px;
    }

    .benefit-card {
        min-width: 320px;
        max-width: 320px;
        padding: 30px 25px;
    }

    .benefit-text {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .carousel-hint {
        font-size: 0.85rem;
        margin-top: 25px;
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-342px * 6 - 108px));
        }
    }
}

@media (max-width: 576px) {
    .hero-main-content {
        padding: 0 16px;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-main-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-feature-item {
        padding: 16px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   RESPONSIVE - SMALL MOBILE
============================================ */
@media (max-width: 480px) {
    .hero-main-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

    .hero-subheadline::after {
        width: 60px;
    }

    .hero-feature-item p {
        font-size: 1.05rem;
    }

    .help-btn {
        text-wrap: 10px;
        width: 15%;
        left: 5%;
        bottom: 5%;
        text-align: center;
        padding: 10px 0;
        font-size: 8px;
    }

    .benefits-header {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
        margin-bottom: 30px;
    }

    .benefits-header .header-subtitle {
        font-size: 0.6em;
        letter-spacing: 4px;
    }

    .benefits-track {
        padding: 0 15px;
        gap: 15px;
    }

    .benefit-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    .benefit-card::before {
        width: 4px;
    }

    .benefit-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .carousel-hint {
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .carousel-hint::after {
        content: '';
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 6 - 90px));
        }
    }
}


/* ============================================
   RESPONSIVE - VERY SMALL MOBILE
============================================ */
@media (max-width: 400px) {
    .hero-main-title {
        font-size: 1.35rem;
    }

    .hero-subheadline {
        font-size: 0.85rem;
    }

    .hero-feature-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .benefit-card {
        min-width: 260px;
        max-width: 260px;
        padding: 22px 18px;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 6 - 90px));
        }
    }
}