@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Global styles for body and html elements */
body,
html {
    padding: 0;
    margin: 0;
    font-family: Inter, sans-serif;
    background-color: #000;
    height: 100px;
    color: #fff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

/* Header Layout */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background-color: #0a0a0f;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: nowrap;
}

/* Logo */
header .logo img {
    height: 60px;
}

/* Navbar */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Nav link buttons */
.nav-link,
.nav-item > label {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-item > label:hover {
    color: #4a7bff;
}

/* Submenu */
.nav-item {
    position: relative;
    /* key for absolute submenu positioning */
}

.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border-radius: 10px;
    min-width: 180px;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.sub-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
}

.sub-menu li a:hover {
    background-color: #4a7bff;
}

/* Desktop hover to show submenu */
@media (min-width: 769px) {
    .nav-item:hover .sub-menu {
        display: block;
    }
}

/* Free Trial Button */
.free-trial {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #4a7bff;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.free-trial:hover {
    background-color: #3a66cc;
}

/* Hamburger and mobile menu */
.menu-toggle {
    display: none;
}

.navbar-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 768px) {

    header {
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 1rem;
    }

    .navbar-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        /* hide by default */
        gap: 0;
    }

    /* Show nav when hamburger checkbox is checked */
    .menu-toggle:checked + .navbar-toggle + .nav-links {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    /* Mobile submenu */
    .sub-menu {
        position: relative;
        max-height: 0;
        overflow: hidden;
        border-radius: 0;
        padding: 0;
        /* remove padding until shown */
        margin: 0;
        list-style: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
        display: none;
        /* hide by default */
        width: 100%;
    }

    /* Show submenu when checkbox toggled */
    .submenu-toggle:checked + label + .sub-menu {
        display: block;
        /* show menu */
        max-height: 500px;
        padding: 0.5rem 0;
        /* add padding when visible */
    }

    /* Arrow indicator */
    .nav-item > label::after {
        content: '▼';
        float: right;
        margin-left: 0.5rem;
    }

    .submenu-toggle:checked + label::after {
        content: '▲';
    }

    /* Full width nav links on mobile */
    .nav-links > a {
        width: 100%;
        padding: 0.75rem 0;
        text-align: left;
    }
}

/* Container styling with background image */
.container {
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000B8 0%, #000000 100%), url('/assets/images/image-10-min.jpeg');
    opacity: 1;
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.color-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

/* Features Section */
.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(180deg, #000000B8 0%, #000000 100%), url('/assets/images/image-10-min.jpeg');
    overflow: hidden;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #d7d7d7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #4a7bff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #3a63d8;
    transform: translateY(-3px);
}

.hero-image img {
    max-width: 325px;
    width: 100%;
    margin-top: 40px;
    /* Adjust this value */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 70%);
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    justify-items: center;
    background-color: #0a0a0f;
}

.feature-card {
    background-color: #1a1a1a;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d7d7d7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: #d7d7d7;
    text-align: left;
}

.feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7bff;
    font-weight: bold;
}

.btn-get-started {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 1rem;
    background-color: #4a7bff;
    color: #fff;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #3a66cc;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-section {
        gap: 1.5rem;
        padding: 3rem 1rem;
    }

    .feature-card img {
        width: 70px;
        height: 70px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .feature-card img {
        width: 60px;
        height: 60px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}


/* Subscription Pricing Section */
.pricing {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #0a0a0f;
    /* Match features-section background */
}

.pricing h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

/* Pricing Plans Layout */
.pricing-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    /* consistent spacing between cards */
}

/* Individual Plan Card */
.plan {
    background-color: #1a1a1a;
    /* same as features-card */
    border-radius: 1rem;
    /* smoother corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* subtle shadow */
    padding: 2rem;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    /* hover lift effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Popular Plan Highlight */
.plan.popular {
    border: 2px solid #4a7bff;
    /* green highlight like features */
    position: relative;
}

/* Plan Heading */
.plan h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Price Styling */
.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a7bff;
    margin: 1rem 0;
}

/* Features List */
.plan ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.plan ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #d7d7d7;
}

/* Buy Button */
.plan .btn-2 {
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    background-color: #4a7bff;
    color: #000;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.plan .btn-2:hover {
    transform: translateY(-3px);
}

/* Ready Text */
.plan p {
    font-size: 0.9rem;
    color: #d7d7d7;
    margin-bottom: rem;
}

/* Device Image */
.plan img {
    width: 120px;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .pricing-plans {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
    }
}

/* How Does It Work section */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    text-align: center;
}

.work {
    text-align: center;
}

/* How Does It Work Section */
.how-container {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #0a0a0f;
    /* Same as features and pricing section */
}

.how-container h1.work {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

/* Steps Layout */
.step-one {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    /* consistent spacing between cards */
}

/* Individual Step Card */
.step {
    background-color: #1a1a1a;
    /* matches features-card */
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Icon */
.step .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Step Heading */
.step h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Step Text */
.step p {
    font-size: 0.95rem;
    color: #d7d7d7;
    margin-bottom: 0.75rem;
}

/* Note Text */
.step .note {
    font-size: 0.85rem;
    color: #4a7bff;
}

/* Links in Notes */
.step a {
    color: #4a7bff;
    text-decoration: underline;
}

/* Free Trial Button */
.step .free-trial {
    margin-top: 1rem;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    background-color: #4a7bff;
    color: #000;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.step .free-trial:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .step-one {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .step-one {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 90%;
    }
}


/* FAQ Section */
.faq {
    background-color: #0a0a0f;
    /* same as other sections */
    padding: 4rem 1rem;
    max-width: 1100px;
    margin: 5rem auto 2rem;
    /* adds desktop gap above FAQ */
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
}

/* FAQ Item Cards */
.faq-item {
    background-color: #1a1a1a;
    /* slightly darker than section for contrast */
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Question */
.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    background-color: #222;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 0.95rem;
    color: #d7d7d7;
}

/* Active FAQ Item */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* adjust as needed */
    padding: 1rem 1.5rem;
}

.faq-item.active .faq-question::after {
    content: '−';
}

/* Links inside FAQ */
.faq-answer a {
    color: #4a7bff;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq h1 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Desktop spacing between How it Works and FAQ */
@media (min-width: 1025px) {
    .faq {
        margin-top: 5rem;
        /* gap between sections */
    }
}

/* WhatsApp Support Section */
.support {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0f;
    /* matches rest of page */
    padding: 3rem 1rem;
    border-radius: 1rem;
    max-width: 900px;
    margin: 3rem auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    gap: 1.5rem;
}

.support-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.support-icon {
    width: 60px;
    height: 60px;
}

.support-text span {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

/* WhatsApp Button */
.whatsapp-button-1 {
    background-color: #0361fa;
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.whatsapp-button-1:hover {
    background-color: #0347b6;
    transform: translateY(-2px);
}

/* Plans Section */
.plans-section {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

/* Container for cards */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Individual Plan Card */
.plan-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    width: 100%;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Logo / Icon on card */
.plan-logo {
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
}

/* Plan title */
.plan-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.plans-section {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-section h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.plan-logo img {
    width: 122px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.1rem;
}

.plan-card h3 {
    color: #fff;
    margin-bottom: 0.1rem;
    font-size: 1.15rem;
}

.btn-get-started {
    display: inline-block;
    padding: 10px 15px;
    background-color: #4a7bff;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #3a66cc;
    transform: translateY(-2px);
}


/* Footer */
footer {
    background-color: #0a0a0f;
    /* same as page sections */
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 0;
    color: #d7d7d7;
    /* slightly softer than white for modern feel */
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

footer p::before {
    content: "✨ ";
    /* optional subtle icon for a premium feel */
}

/* Floating WhatsApp support icon */
.whatsapp-button {
    position: fixed;
    left: 70px;
    bottom: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 9999;
    background-color: #25D366;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0;
}

.whatsapp-button:after {
    animation-delay: .5s;
}

@keyframes border-animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/* Wrapper for logos */
.wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0f;
    padding: 2rem 0;
}

/* Track container for scroll animation */
.logo-track {
    display: flex;
    gap: 2rem;
    /* spacing between cards */
}

/* Each logo card */
.logo-card {
    flex: 0 0 200px;
    height: 100px;
    background-color: #1a1a1a;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* LEFT SCROLLING */
.logo-track.left {
    animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* RIGHT SCROLLING */
.logo-track.right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .logo-card {
        flex: 0 0 160px;
        height: 80px;
    }

    .wrapper {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .logo-card {
        flex: 0 0 140px;
        height: 70px;
    }

    .wrapper {
        padding: 1rem 0;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-card {
        flex: 0 0 120px;
        height: 60px;
        padding: 0.5rem;
    }

    .wrapper {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .features {
        flex-direction: column;
    }

    .pricing-plans {
        flex-direction: row;
    }

    .plan {
        max-width: 280px;
        margin: 10px auto;
    }

    .how-container {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .step {
        width: 100%;
        margin-bottom: 20px;
    }

    .support-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-icon {
        margin-bottom: 10px;
    }

    .how-container {
        display: flex;
        flex-direction: column;
    }

    .faq-question::after {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-plans {
        flex-direction: column;
        gap: 20px;
    }

    .plan {
        width: 800px;
        margin: 20px auto;
        padding: 20px;
    }

    .step-one {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step {
        width: 95%;
        padding: 15px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .support-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .devices img {
        width: 300px;
        height: auto;
    }

    .support-icon {
        margin-bottom: 10px;
    }

    .faq-question::after {
        right: 10px;
    }
}

@media screen and (max-width: 375px) {
    .hero h1 {
        font-size: 18px;
    }

    .hero p {
        font-size: 14px;
        margin: 10px 15px;
    }

    .free-trial-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .devices img {
        width: 250px;
        height: auto;
    }

    .color-overlay {
        display: none;
    }

    .pricing {
        padding: 10px;
    }

    .pricing-plans {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .plan {
        width: 100%;
        /* Volledige breedte binnen de container */
        padding: 15px;
        text-align: center;
        border-radius: 40px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .plan img {
        width: 100px;
        height: auto;
        margin-top: 10px;
    }

    .work {
        font-size: 20px;
        text-align: center;
        margin: 20px 0;
    }

    .how-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 15px;
        max-width: 290px;
        margin: 0 auto;
    }

    .step {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .step .icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .step h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .free-trial {
        font-size: 14px;
        padding: 8px 15px;
    }
}


@media (max-width: 320px) {
    body {
        margin: 0;
        padding: 0;
    }

    .All-In-One {
        font-size: 2px;
    }

    .devices {
        width: 100px;
        height: 100px;
    }

    .how-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        gap: 10px;
        max-width: 250px;
        /* Beperk de breedte verder */
        margin: 0 auto;
        /* Centreer de container */
    }

    .step {
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .step .icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .step h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .free-trial {
        font-size: 12px;
        padding: 8px 10px;
    }

    .work {
        font-size: 18px;
        text-align: center;
        margin: 10px 0;
    }

    .pricing {
        padding: 5px;
    }

    .pricing-plans {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        max-width: 280px;
        /* Beperk de breedte verder */
        margin: 0 auto;
        /* Centreer de plannen */
    }

    .plan {
        width: 100%;
        padding: 10px;
        text-align: center;
        border-radius: 40px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .plan img {
        width: 80px;
        height: auto;
        margin-top: 10px;
    }
}