@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --green: #56b87d;
    --green-dark: #3a8a5a;
    --dark: #0b0d10;
    --white: #ffffff;
    --light: #f6f8f7;
    --muted: #667085;
    --border: rgba(0, 0, 0, 0.08);
    --font: 'Outfit', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ════════════ NAVBAR ════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--white);
    height: 75px;
    box-shadow: var(--shadow);
}

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.navbar.dark-mode .nav-links a {
    color: var(--dark);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 1;
}

.logo img {
    height: 32px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 0;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-right: 25px;
    transition: color 0.3s;
}

.nav-phone svg {
    width: 20px;
    height: 20px;
    color: var(--green);
}

.navbar.scrolled .nav-phone {
    color: var(--dark);
}

.navbar.dark-mode .nav-phone {
    color: var(--dark);
}

.nav-phone:hover {
    color: var(--green);
}

.btn-green {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--green) 0%, #46a36d 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(86, 184, 125, 0.2);
}

.btn-green:hover {
    background: linear-gradient(135deg, #46a36d 0%, var(--green) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(86, 184, 125, 0.4);
    color: var(--white);
}

.navbar.scrolled .btn-green {
    padding: 10px 22px;
    font-size: 14px;
}

/* ════════════ HERO ════════════ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    color: var(--white);
}

.animate-left {
    opacity: 0;
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 75px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ════════════ SECTION SYSTEM ════════════ */
.section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 600;
}

/* ════════════ CATEGORY CARDS ════════════ */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cat-card {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.4s ease;
}

.cat-card:hover {
    transform: scale(0.98);
}

.cat-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: transform 0.6s ease;
}

.cat-card:hover img {
    transform: scale(1.1);
}

.cat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    z-index: 0;
}

.cat-card h3 {
    position: relative;
    z-index: 1;
    font-size: 32px;
    margin-bottom: 10px;
}

.cat-card p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    opacity: 0.9;
}

/* ════════════ FEATURE GRID ════════════ */
.features {
    background: var(--light);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.features::before {
    content: 'CHARGEONIX';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9vw;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 2px;
    user-select: none;
}

.section-title,
.features-grid {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feat-item {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--green);
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: rgba(86, 184, 125, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--green);
}

.feat-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.feat-item p {
    color: var(--muted);
    font-size: 15px;
}

/* ════════════ SOLUTIONS SECTION ════════════ */
.solutions-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}

.sol-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.sol-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.sol-text {
    flex: 1;
}

.sol-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sol-points {
    list-style: none;
}

.sol-point {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.sol-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border);
}

.sol-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.sol-point h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.sol-point p {
    color: var(--muted);
    font-size: 15px;
}

/* ════════════ APP SHOWCASE ════════════ */
.app-section {
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    margin: 40px 5%;
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.app-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-mockup img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.app-info {
    flex: 1.2;
}

.app-info h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.app-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.app-btns {
    display: flex;
    gap: 20px;
}

.app-btn {
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: background 0.3s;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ════════════ PARTNERS ════════════ */
.partners-scroll {
    display: flex;
    gap: 80px;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollTrain 30s linear infinite;
}

.partners-scroll img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.partners-scroll img:hover {
    transform: scale(1.1);
}

@keyframes scrollTrain {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ════════════ FOOTER ════════════ */
footer {
    background: #0b0d10;
    color: var(--white);
    padding: 60px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--green);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
}

.social-links a:hover {
    background: var(--green);
    transform: translateY(-3px);
    color: var(--white);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ════════════ STEPS SECTION ════════════ */
.steps-section {
    background: var(--white);
    padding: 60px 5%;
}

.steps-wrap {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

.steps-img {
    flex: 1;
    border-radius: 40px;
    overflow: hidden;
    height: 750px;
}

.steps-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-content {
    flex: 1.2;
}

.steps-list {
    position: relative;
    padding-left: 50px;
    margin-top: 50px;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step-item {
    position: relative;
    margin-bottom: 35px;
}

.step-number {
    position: absolute;
    left: -50px;
    top: 20px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    z-index: 1;
}

.step-card {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(86, 184, 125, 0.08);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.4;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

@media screen and (max-width: 1024px) {
    .navbar {
        height: 75px;
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--dark) !important;
        font-size: 20px;
    }

    .menu-btn {
        display: block !important;
        z-index: 1001;
        cursor: pointer;
    }

    .nav-cta,
    .nav-actions {
        display: none;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section {
        padding: 40px 5%;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .cat-card {
        height: 400px;
        padding: 30px;
    }

    .solutions-wrap {
        flex-direction: column !important;
        gap: 40px;
    }

    .sol-text h2 {
        font-size: 32px;
    }

    .app-section {
        flex-direction: column;
        padding: 40px 20px;
        margin: 20px 5%;
        border-radius: 30px;
        text-align: center;
    }

    .app-info h2 {
        font-size: 32px;
    }

    .app-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .steps-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .steps-img {
        width: 100%;
        height: 400px;
    }

    .steps-list {
        padding-left: 40px;
    }

    .auth-container {
        padding: 100px 20px 40px !important;
    }

    .auth-box {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }

    .auth-box h2 {
        font-size: 28px !important;
    }

    .auth-box form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ════════════ MENU BUTTON ════════════ */
.menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    transition: 0.3s;
}

.navbar.scrolled .menu-btn span,
.navbar.dark-mode .menu-btn span {
    background: var(--dark);
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn span:nth-child(3) {
    bottom: 0;
}

.menu-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ════════════ TECHNICAL SPECIFICATIONS & PARTNERSHIPS ════════════ */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.specs-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.specs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.specs-card.highlighted-specs {
    border-color: var(--green);
    background: linear-gradient(180deg, rgba(86, 184, 125, 0.02) 0%, rgba(86, 184, 125, 0) 100%);
}

.specs-subtitle {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 25px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    vertical-align: top;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    color: var(--dark);
    width: 35%;
    font-weight: 600;
}

.specs-table td:last-child {
    color: var(--muted);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.partnership-card {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.partnership-card.highlighted {
    border-color: var(--green);
    box-shadow: 0 15px 45px rgba(86, 184, 125, 0.08);
}

.partnership-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(86, 184, 125, 0.1);
    color: var(--green-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partnership-card.highlighted .partnership-badge {
    background: var(--green);
    color: var(--white);
}

.partnership-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.partnership-desc {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.partnership-bullets {
    list-style: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.partnership-bullets li {
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.partnership-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: bold;
}

/* ======================== */
/* MOBILE - 480px to 768px  */
/* ======================== */
@media screen and (max-width: 768px) {
    .navbar {
        height: 70px !important;
    }

    .logo img {
        height: 26px !important;
    }

    .hero {
        height: 80vh !important;
    }

    .hero[style*="height: 60vh;"] {
        height: 45vh !important;
    }

    .hero-content h1 {
        font-size: 38px !important;
    }

    .hero-content p {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    .section-title h2 {
        font-size: 32px !important;
    }

    .section {
        padding: 40px 5% !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .app-section {
        margin: 20px 4% !important;
        padding: 40px 20px !important;
    }

    .app-info h2 {
        font-size: 34px !important;
    }

    .app-info p {
        font-size: 16px !important;
    }

    .app-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

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

    .steps-list {
        padding-left: 35px !important;
    }

    .step-number {
        left: -40px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
        top: 15px !important;
    }

    .steps-list::before {
        left: 17px !important;
    }

    .step-card {
        padding: 20px 25px !important;
    }

    .sol-img {
        height: auto !important;
    }

    .sol-img img {
        height: 350px !important;
    }

    .partnership-card {
        padding: 35px 25px !important;
    }

    .specs-card {
        padding: 30px 20px !important;
    }

    .specs-table td {
        padding: 10px 0 !important;
        font-size: 14px !important;
    }

    /* Footer Centering Optimization */
    footer {
        padding: 50px 5% 30px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-col ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .footer-col li {
        text-align: center !important;
    }

    .social-links {
        justify-content: center !important;
        margin-top: 15px !important;
    }

    .footer-contact-list {
        align-items: center !important;
        width: 100% !important;
    }

    .footer-contact-list li {
        display: flex !important;
        align-items: flex-start !important;
        text-align: left !important;
        max-width: 290px !important;
        width: 100% !important;
        margin: 0 auto !important;
        justify-content: flex-start !important;
    }
}

/* ======================== */
/* EXTRA SMALL - Below 480px */
/* ======================== */
@media screen and (max-width: 480px) {
    .navbar {
        height: 65px !important;
    }

    .logo img {
        height: 22px !important;
    }

    .hero {
        height: 75vh !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }

    .section-title h2 {
        font-size: 26px !important;
    }

    .section {
        padding: 30px 4% !important;
    }

    .btn-green {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }

    .sol-img img {
        height: 280px !important;
        border-radius: 20px !important;
    }

    .sol-text h2 {
        font-size: 26px !important;
    }

    .feat-item {
        padding: 30px 20px !important;
    }

    .step-card {
        padding: 20px !important;
    }

    .step-card:hover {
        transform: none !important;
    }

    .partnership-card {
        padding: 30px 20px !important;
    }

    .partnership-card:hover {
        transform: none !important;
    }

    .partnership-bullets {
        padding-top: 15px !important;
    }

    .partnership-bullets li {
        font-size: 13px !important;
    }

    .specs-card {
        padding: 25px 15px !important;
    }

    .specs-table td:first-child {
        width: 40% !important;
    }

    .partners-scroll img {
        height: 35px !important;
    }

    .partners-scroll {
        gap: 40px !important;
        padding: 30px 0 !important;
    }

    .partners-track {
        gap: 40px !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }
}