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

body {
    font-family: 'Poppins', sans-serif;
    color: #000;
    overflow-x: hidden;
    width: 100%;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, #72dcfc 0%, #d8f5cf 100%);
    padding: 1rem 4rem;
    width: 100%;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 42px;
    width: auto;
    display: block;
}

.logo-text {
    height: 32px;
    width: auto;
    display: block;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    padding: 0.5rem 1.25rem;
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-join {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: #6ad8fc;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 216, 252, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(98deg, #ffc7d6 0%, #fae8a4 100%);
    padding: 3.5rem 4rem;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-images-left,
.hero-images-right {
    position: relative;
    width: 280px;
    height: 350px;
    flex-shrink: 0;
}

.floating-image {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: none;
    transition: transform 0.3s ease;
}

.floating-image:hover {
    transform: scale(1.05) !important;
}

/* Left side images */
.hero-images-left .img-1 {
    top: 10px;
    left: 0;
    width: 120px;
    height: 120px;
    transform: rotate(11deg);
    z-index: 3;
}

.hero-images-left .img-2 {
    top: 110px;
    right: 0;
    width: 140px;
    height: 140px;
    transform: rotate(3deg);
    z-index: 2;
}

.hero-images-left .img-3 {
    bottom: 10px;
    left: 30px;
    width: 110px;
    height: 110px;
    transform: rotate(-19deg);
    z-index: 1;
}

/* Right side images */
.hero-images-right .img-4 {
    top: 0;
    right: 10px;
    width: 130px;
    height: 130px;
    transform: rotate(4deg);
    z-index: 3;
}

.hero-images-right .img-5 {
    top: 100px;
    left: 20px;
    width: 115px;
    height: 115px;
    transform: rotate(14deg);
    z-index: 2;
}

.hero-images-right .img-6 {
    bottom: 5px;
    right: 0;
    width: 105px;
    height: 105px;
    transform: rotate(-15deg);
    z-index: 1;
}

.hero-text {
    flex: 0 1 auto;
    text-align: center;
    padding: 1rem 2rem;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.hero-text em {
    font-style: italic;
}

.btn-trial {
    display: inline-block;
    background: linear-gradient(90deg, #fffc9e 0%, #72dcfc 100%);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(114, 220, 252, 0.4);
}

/* Pricing Section */
.pricing-section {
    background: #fff;
    padding: 5rem 4rem 8rem;
    position: relative;
    overflow: visible;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 280px));
    gap: 1.25rem;
    margin-bottom: 5rem;
    position: relative;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 3px solid #caf8ff;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 620px;
    transition: all 0.3s ease;
}

.card-kickstart {
    border-color: #caf8ff;
    box-shadow: 0px 6px 30px 0px rgba(114, 220, 252, 0.5);
}

.card-kickstart:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(114, 220, 252, 0.65);
}

.card-build {
    border-color: #fae8a4;
    transform: scale(1.02);
    box-shadow: 0px 6px 30px 0px rgba(250, 232, 164, 0.5);
}

.card-build:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(250, 232, 164, 0.65);
}

.card-pro {
    border-color: #d8f5cf;
    box-shadow: 0px 6px 30px 0px rgba(126, 211, 33, 0.35);
}

.card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(126, 211, 33, 0.5);
}

.card-elite {
    border-color: #ffc7d6;
    box-shadow: 0px 6px 30px 0px rgba(255, 105, 180, 0.4);
}

.card-elite:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(255, 105, 180, 0.55);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fffc9e 0%, #72dcfc 100%);
    padding: 0.6rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.emoji {
    width: 38px;
    height: 38px;
    display: inline-block;
    flex-shrink: 0;
}

.price {
    margin-bottom: 1.35rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 1.3rem;
    font-weight: 600;
    color: #666;
}

.divider {
    height: 2px;
    background: #000;
    margin: 1.35rem 0;
}

.card-description {
    flex: 1;
}

.description-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 1.4rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    display: block;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2.5px solid #000;
    color: #000;
}

.btn-outline:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-primary {
    background: #72dcfc;
    border: none;
    color: #000;
}

.btn-primary:hover {
    background: #5cc9ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 220, 252, 0.4);
}

.wave-decoration {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    max-width: 1400px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.wave-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    background: linear-gradient(177deg, #d8f5cf 0%, #ffffff 100%);
    padding: 4rem 4rem;
}

.features-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.features-text {
    flex: 1;
    padding: 2rem 2rem 2rem 0;
}

.features-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.features-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features-highlight {
    font-weight: 700;
}

.btn-start-free {
    display: inline-block;
    background: #fae8a4;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-start-free:hover {
    background: #ead894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 232, 164, 0.5);
}

.features-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-mockup-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    transform: rotate(-8deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, #caf8ff 0%, #ffffff 100%);
    padding: 5rem 4rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-container p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.btn-join-now {
    display: inline-block;
    background: linear-gradient(107deg, #72dcfc 0%, #fffc9e 100%);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-join-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(114, 220, 252, 0.4);
}

.btn-learn-more {
    display: inline-block;
    background: #72dcfc;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: #5cc9ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 220, 252, 0.4);
}

/* Footer */
.footer {
    background: #fff;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-logo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    opacity: 1;
    border: none;
    outline: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 100;
}

.footer-brand h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Button Animations */
button, .btn-login, .btn-join, .btn-trial, .btn-plan, .btn-start-free, .btn-add-crm, .btn-join-now, .btn-learn-more {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

button::before, .btn-join::before, .btn-trial::before, .btn-plan::before,
.btn-start-free::before, .btn-add-crm::before, .btn-join-now::before, .btn-learn-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::before, .btn-join:hover::before, .btn-trial:hover::before,
.btn-start-free:hover::before, .btn-add-crm:hover::before,
.btn-join-now:hover::before, .btn-learn-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

/* Card Hover Effects */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .card-header h3 {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.pricing-card:hover .emoji {
    animation: float 1s ease-in-out infinite;
}

/* Link Hover Effects */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .navbar,
    .hero-section,
    .pricing-section,
    .features-section,
    .cta-section,
    .footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .card-build {
        transform: scale(1);
    }

    .features-content {
        flex-direction: row;
        gap: 3rem;
    }

    .features-text {
        padding: 1rem 0;
        flex: 1;
    }

    .features-image {
        flex: 1;
    }

    .phone-mockup-img {
        max-width: 350px;
    }

    .hero-images-left,
    .hero-images-right {
        width: 200px;
        height: 320px;
    }

    .hero-images-left .img-1 {
        top: 10px;
        width: 100px;
        height: 100px;
    }

    .hero-images-left .img-2 {
        top: 100px;
        width: 110px;
        height: 110px;
    }

    .hero-images-left .img-3 {
        bottom: 10px;
        left: 25px;
        width: 95px;
        height: 95px;
    }

    .hero-images-right .img-4 {
        top: 0;
        right: 8px;
        width: 105px;
        height: 105px;
    }

    .hero-images-right .img-5 {
        top: 85px;
        left: 15px;
        width: 95px;
        height: 95px;
    }

    .hero-images-right .img-6 {
        bottom: 5px;
        right: 0;
        width: 90px;
        height: 90px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .pricing-header h2 {
        font-size: 2.5rem;
    }

    .features-content {
        flex-direction: row;
        gap: 2rem;
    }

    .features-text h2 {
        font-size: 2.75rem;
    }

    .phone-mockup-img {
        max-width: 300px;
    }

    .cta-container h2 {
        font-size: 2.5rem;
    }

    .hero-images-left,
    .hero-images-right {
        width: 160px;
        height: 280px;
    }

    .hero-images-left .img-1 {
        top: 10px;
        width: 85px;
        height: 85px;
    }

    .hero-images-left .img-2 {
        top: 90px;
        width: 95px;
        height: 95px;
    }

    .hero-images-left .img-3 {
        bottom: 10px;
        left: 20px;
        width: 80px;
        height: 80px;
    }

    .hero-images-right .img-4 {
        top: 0;
        right: 5px;
        width: 90px;
        height: 90px;
    }

    .hero-images-right .img-5 {
        top: 75px;
        left: 12px;
        width: 82px;
        height: 82px;
    }

    .hero-images-right .img-6 {
        bottom: 5px;
        right: 0;
        width: 78px;
        height: 78px;
    }
}

/* Tablet specific - between 768px and 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer {
        padding: 6rem 3rem 4rem;
        min-height: 400px;
    }

    .footer-background {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        height: 70%;
    }

    .footer-logo-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 0.9;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .navbar-content {
        gap: 1rem;
    }

    .logo-icon {
        height: 36px;
    }

    .logo-text {
        display: none;
    }

    .btn-join {
        white-space: nowrap;
        padding: 0.6rem 1.25rem;
    }

    .hero-section {
        padding: 2.5rem 2rem;
        min-height: auto;
    }

    .hero-content {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-images-left,
    .hero-images-right {
        display: block;
        width: 90px;
        height: 270px;
    }

    .hero-images-left .img-1 {
        top: 5px;
        left: 0;
        width: 60px;
        height: 60px;
    }

    .hero-images-left .img-2 {
        top: 70px;
        right: 0;
        width: 70px;
        height: 70px;
    }

    .hero-images-left .img-3 {
        bottom: 5px;
        left: 8px;
        width: 55px;
        height: 55px;
    }

    .hero-images-right .img-4 {
        top: 0;
        right: 0;
        width: 68px;
        height: 68px;
    }

    .hero-images-right .img-5 {
        top: 70px;
        left: 8px;
        width: 60px;
        height: 60px;
    }

    .hero-images-right .img-6 {
        bottom: 8px;
        right: 0;
        width: 56px;
        height: 56px;
    }

    .hero-text {
        padding: 0;
        flex: 1;
    }

    .hero-text h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .btn-trial {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .pricing-section {
        padding: 4rem 2rem 6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-header h2 {
        font-size: 2.25rem;
    }

    .pricing-header p {
        font-size: 0.95rem;
    }

    .features-section {
        padding: 3rem 2rem;
    }

    .features-content {
        flex-direction: column;
        gap: 2rem;
    }

    .features-text h2 {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .features-text p {
        font-size: 0.95rem;
    }

    .features-image {
        display: none;
    }

    .phone-mockup-img {
        display: none;
    }

    .cta-section {
        padding: 4rem 2rem 3rem;
    }

    .cta-container {
        padding: 0 0.5rem;
    }

    .cta-container h2 {
        font-size: 2.25rem;
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }

    .cta-container p {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn-join-now,
    .btn-learn-more {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 4rem 2rem 3rem;
        min-height: auto;
    }

    .footer-background {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        height: 75%;
    }

    .footer-logo-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 0.85;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }

    .footer-links {
        gap: 0.85rem;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.875rem 1.5rem;
    }

    .logo-icon {
        height: 32px;
    }

    .btn-login {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .btn-join {
        padding: 0.55rem 1.25rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero-section {
        padding: 2rem 1.5rem;
    }

    .hero-images-left,
    .hero-images-right {
        width: 75px;
        height: 240px;
    }

    .hero-images-left .img-1 {
        top: 5px;
        width: 50px;
        height: 50px;
    }

    .hero-images-left .img-2 {
        top: 65px;
        width: 58px;
        height: 58px;
    }

    .hero-images-left .img-3 {
        bottom: 5px;
        left: 6px;
        width: 48px;
        height: 48px;
    }

    .hero-images-right .img-4 {
        top: 0;
        right: 0;
        width: 56px;
        height: 56px;
    }

    .hero-images-right .img-5 {
        top: 62px;
        left: 6px;
        width: 52px;
        height: 52px;
    }

    .hero-images-right .img-6 {
        bottom: 6px;
        right: 0;
        width: 48px;
        height: 48px;
    }

    .hero-text h1 {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.875rem;
    }

    .btn-trial {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }

    .pricing-section {
        padding: 3rem 1.5rem 5rem;
    }

    .pricing-header h2 {
        font-size: 1.875rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .price .amount {
        font-size: 2.25rem;
    }

    .features-section {
        padding: 2.5rem 1.5rem;
    }

    .features-text h2 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 3rem 1.5rem 2.5rem;
    }

    .cta-container h2 {
        font-size: 1.875rem;
    }

    .cta-buttons {
        gap: 0.875rem;
    }

    .btn-join-now,
    .btn-learn-more {
        padding: 0.95rem 1.25rem;
    }

    .footer {
        padding: 3rem 1.5rem 2.5rem;
        min-height: auto;
    }

    .footer-background {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        height: 85%;
    }

    .footer-logo-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 1;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .footer-links {
        text-align: right;
        font-size: 0.75rem;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-brand p {
        font-size: 0.75rem;
    }
}
