/* ========================= Responsive Styles Consolidated per Breakpoint ========================= */

/* =========================Large Tablets / Small Desktops max-width: 1024px========================= */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero{
        padding-top: 100px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-visual {
        order: 1;
        height: 500px;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    /* About Section */
    .about-section {
        padding: 0 30px;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-image {
        height: 360px;
    }

    .about-content h2 {
        font-size: 24px;
    }
}

/* ========================= Medium Tablets max-width: 968px========================= */
@media (max-width: 968px) {
     .hero{
        padding-top: 130px;
    }
    /* Benefits Section */
    .benefits {
        height: auto;
        padding: 80px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon svg {
        width: 30px;
        height: 30px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    /* Infographic / Info Section */
    .infographic-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }

    .info-items {
        width: 100%;
        align-items: center;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        animation: slideInMobile 0.6s forwards;
    }

    @keyframes slideInMobile {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(to bottom, transparent, #ddd);
        transform: none;
    }

    .connector::after {
        content: '';
        position: absolute;
        top: auto;
        bottom: -6px;
        right: 50%;
        transform: translateX(50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #ddd;
    }

    .content-box {
        min-width: auto;
        width: 100%;
        max-width: 450px;
    }

    .center-circle {
        width: 240px;
        height: 240px;
    }

    .circle-inner {
        width: 190px;
        height: 190px;
    }

    .circle-inner h2 {
        font-size: 14px;
    }

    .circle-inner h3 {
        font-size: 20px;
    }

    /* Section Titles / Descriptions */
    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 14px;
    }

    /* About Section */
    .about-section {
        padding: 0 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 0;
        margin-top: 25px;
    }
}

/* =========================Mobile Devices max-width: 768px========================= */
@media (max-width: 768px) {
    /* Containers & Navigation */
    .container,
    .nav-container {
        padding: 0 20px;
        align-items: center;
        justify-items: center;
    }

  .nav-links a:not(:last-child) {
    display: none;
}

    .nav-links .hero-badge {
        display: block;
    }

    .logo img {
        width: 120px !important;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        gap: 40px;
    }


    .hero-text {
        padding-top: 30px;
    }

    .hero-text h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 70px;
    }
     
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }

    .hero-visual {
        height: 350px;
    }

    /* Features Section */
    .features {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-desc {
        font-size: 14px;
    }

    /* Benefits / Infographic Section */
    .benefits {
        height: auto;
        padding: 60px 0;
    }

    .infographic-container {
        gap: 40px;
        padding: 20px 15px;
    }

    .center-circle {
        width: 200px;
        height: 200px;
    }

    .circle-inner {
        width: 160px;
        height: 160px;
    }

    .circle-inner h2 {
        font-size: 12px;
    }

    .circle-inner h3 {
        font-size: 18px;
    }

    .circle-dots {
        width: 6px;
        height: 6px;
    }

    .info-items {
        gap: 25px;
    }

    .connector {
        height: 25px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .content-box {
        padding: 20px 25px;
        max-width: 100%;
        border-radius: 30px;
    }

    .content-box h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .content-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Waitlist Section */
    #waitlist {
        padding: 40px 0;
    }

    .waitlist {
        padding: 50px 30px;
        border-radius: 20px;
        margin: 20px 0;
    }

    .waitlist h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .waitlist p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .form-group {
        max-width: 100%;
        gap: 12px;
    }

    input[type="email"],
    input[type="text"] {
        padding: 16px 25px;
        font-size: 15px;
    }

    .success-msg {
        padding: 25px 20px;
        margin-top: 20px;
    }

    .success-msg h3 {
        font-size: 22px;
    }

    .success-msg p {
        font-size: 14px;
    }

    /* Footer */
    footer {
        padding: 50px 0 30px;
    }

    .footer-logo {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .footer-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-item {
        font-size: 14px;
    }

    .social-links {
        gap: 15px;
        margin-bottom: 25px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 25px;
    }
}

/* =========================Small Mobile Devices max-width: 480px========================= */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        width: 100px !important;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-title {
        font-size: 18px;
        align-items: center;
        gap: 8px;
    }

    .benefits {
        padding: 40px 0;
    }

    .infographic-container {
        gap: 30px;
        padding: 15px 10px;
    }

    .center-circle {
        width: 170px;
        height: 170px;
    }

    .circle-inner {
        width: 140px;
        height: 140px;
    }

    .circle-inner h2 {
        font-size: 11px;
    }

    .circle-inner h3 {
        font-size: 16px;
    }

    .circle-dots {
        width: 5px;
        height: 5px;
    }

    .info-items {
        gap: 20px;
    }

    .connector {
        height: 20px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        font-size: 24px;
        display: none;
    }

    .content-box {
        padding: 18px 20px;
        border-radius: 25px;
    }

    .content-box h4 {
        font-size: 15px;
        letter-spacing: 0.3px;
    }

    .content-box p {
        font-size: 12px;
    }

    .waitlist {
        padding: 40px 20px;
    }

    .waitlist h2 {
        font-size: 28px;
    }

    input[type="email"],
    input[type="text"] {
        padding: 14px 20px;
        font-size: 14px;
    }

    .btn-primary {
        padding: 14px 25px;
        font-size: 14px;
    }
}

/* =========================Landscape Mobile Fix max-width: 768px & landscape========================= */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-visual {
        height: 300px;
    }
}

/* =========================Very Small Screens max-width: 360px========================= */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .waitlist h2 {
        font-size: 24px;
    }

    .center-circle {
        width: 160px;
        height: 160px;
    }

    .circle-inner {
        width: 130px;
        height: 130px;
    }

    .circle-inner h2 {
        font-size: 10px;
    }

    .circle-inner h3 {
        font-size: 14px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .content-box {
        padding: 15px 18px;
    }

    .content-box h4 {
        font-size: 14px;
    }

    .content-box p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 25px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .benefit-card {
        padding: 30px 25px;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
    }
    
    .benefit-number {
        font-size: 36px;
    }
}

/* Very small devices (420px and below) */
@media (max-width: 420px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
    
    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .benefit-number {
        font-size: 32px;
        top: 12px;
        right: 12px;
    }
}