:root {
    --primary-color: #84cc16;
    --primary-hover: #65a30d;
    --bg-lime-soft: #DFF4CF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: white;
}

/* Header Tweaks */
header.navbar {
    padding: 10px 0;
}

.navbar-brand .logo {
    width: 142px;
    height: 52px;
}

.nav-link {
    color: white !important;
    font-size: 18px;
    font-weight: 500;
    padding: 0 16px !important;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.8;
}

.header-cta {
    border: 1px solid white;
    padding: 10px 24px;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.header-cta:hover {
    background: var(--primary-color);
    color: white;
}

.social-links {
    gap: 24px
}

.social-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Hero Section */
/*.hero {*/
/*    min-height: 800px;*/
/*}*/

.hero-background {
    /*height: 800px;*/
}

.hero-overlay {
    background: linear-gradient(to bottom, transparent, white);
    width: 100%;
    height: 190px;
}

.hero-content {
    padding: 160px 64px 0
}

.hero-content-wrapper {
    /*margin-top: -650px;*/
    /*z-index: 10;*/
}

.rating-arrow {
    width: 56px;
    height: 56px;
}

.star {
    width: 24px;
    height: 24px;
}

.feature-stars img {
    width: 12px;
    height: 12px;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
}

/* Phones Section */
.hero-phones {
    max-width: 1200px;
    /*height: 600px;*/
}

.phone-left {
    left: 5%;
    width: 450px;
    transform: rotate(-6deg);
}

.phone-center {
    width: 485px;
}

.phone-right {
    right: 5%;
    width: 450px;
    transform: rotate(6deg);
}

/* Feature Sections */
.feature-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
}

.feature-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
}

.feature-card-image {
    width: 248px;
    margin: auto;
}

/* Testimonials Slider */
.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    transition: transform 0.3s;
}

/* CTA Section */
.cta-section {
    height: 714px;
}

.bg-lime-soft {
    background-color: var(--bg-lime-soft);
}

.app-badge {
    transition: transform 0.2s;
    cursor: pointer;
}

.app-badge:hover {
    transform: scale(1.05);
}

.cta-bg-line {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 390px;
    height: 130%;
}

.cta-app-image {
    right: -100px;
    top: 55%;
    transform: translateY(-50%);
    width: 800px;
}

.footer-logo {
    width: 142px;
    height: 43px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
}

.no-decoration {
    text-decoration: none;
}

.legal-header {
    background: #0E2634;
    padding-top: 120px;
    padding-bottom: 60px;
}

.legal-content {
    padding: 80px 0;
    line-height: 1.8;
    color: #4b5563;
}

.legal-content h2 {
    color: #111827;
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero h1 {
    font-weight: 700;
    font-style: normal;
    font-size: 68px;
}

.hero-description {
    font-size: 18px !important;
}

.hero video {
    width: 100%;
    height: 802px
}

.hero-overlay {
    top: 612px;
}

.hero-content {
    padding: 153px 0 0
}

.hero-phones {
    padding-top: 18px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero h1 {
        font-weight: 700;
        font-style: normal;
        font-size: 68px;
    }

    .hero-description {
        font-size: 18px !important;
    }

    .hero video {
        height: 802px
    }

    .hero-overlay {
        /*802 - height    */
        top: 612px;
    }

    .hero-content {
        padding: 124px 30px 0
    }

    .hero-phones {
        padding-top: 18px;
    }

    .display-1 {
        font-size: 3.5rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .phone-center {
        width: 326px;
    }

    .phone-right,
    .phone-left {
        width: 312px;
    }

    .phone-left {
        left: 0;
    }

    .phone-right {
        left: 60%;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: all 0.3s ease-in-out;
        backdrop-filter: blur(15px);
    }

    .navbar-collapse.collapse:not(.show) {
        display: none;
    }

    .navbar-collapse.collapsing {
        height: 100vh;
        transition: opacity 0.3s ease-in-out;
        opacity: 0;
    }

    .navbar-collapse.show {
        display: flex !important;
        opacity: 1;
    }

    .navbar-nav .nav-link {
        padding: 20px 0 !important;
        font-size: 28px;
        font-weight: 600;
    }

    .navbar-toggler {
        position: relative;
        z-index: 1001;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 16px;
    }

    .cta-section {
        height: 442px;
    }

    .hero-phones {
        /*height: 450px;*/
    }

    .phone-center {
        width: 300px;
    }

    .phone-right,
    .phone-left {
        width: 280px;
    }

    .feature-grid-image {
        max-width: 139px
    }

    .cta-app-image {
        right: -100px;
        top: 70%;
        transform: translateY(-50%);
        width: 60%;
    }

    .feature-section h2 {
        padding-top: 3rem;
    }


    .feature-card-image {
        width: auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-weight: 700;
        font-style: normal;
        font-size: 50px;
    }

    .hero-description {
        font-size: 18px !important;
    }

    .hero video {
        height: 802px
    }

    .hero-overlay {
        /*802 - height    */
        top: 612px;
    }

    .hero-content {
        padding: 124px 30px 0
    }

    .hero-phones {
        padding-top: 18px;
    }

    .display-1 {
        font-size: 3.5rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .phone-center {
        width: 326px;
    }

    .phone-right,
    .phone-left {
        width: 312px;
    }

    .phone-left {
        left: -4%;
    }

    .phone-right {
        left: 60%;
    }

    .feature-card-image {
        width: auto;
        margin-bottom: 0.5rem !important;
    }


    .feature-grid-image {
        max-width: 103px;
        float: left;
        margin-right: 20px;
    }

    .cta-app-image {
        left: 0;
        top: 56%;
        width: 41%;
        transform: scaleX(-1);
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-weight: 700;
        font-style: normal;
        font-size: 29px;
    }

    .hero video {
        height: 469px
    }

    .hero-content {
        padding: 82px 0 0
    }

    .hero-description {
        font-size: 16px !important;
    }

    .cta-button {
        padding: 9px 40px;
    }

    .cta-section {
        height: 452px;
    }

    .phones-section {
        padding-top: 3rem;
    }

    .feature-card-image {
        text-align: left !important;
    }

    .feature-grid-image {
        max-width: 100px;
        float: none;

    }

    .cta-app-image {
        right: -20%;
        left: auto;
        top: 55%;
        width: 61%;
        transform: scaleX(-1);
    }

    .phone-center {
        width: 270px;
    }

    .phone-right,
    .phone-left {
        width: 270px;
    }

    .phone-left {
        left: -10%;
    }

    .phone-right {
        left: 60%;
    }

    .hero-overlay {
        display: none;
    }
}
