﻿html {
    scroll-behavior: auto;
}

:root {
    color-scheme: light;
    font-family: 'Inter', sans-serif;
    --bg: #f8fafc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-soft: rgba(255, 255, 255, 0.78);
    --text: #0f172a;
    --muted: #64748b;
    --accent: #16a34a;
    --accent-soft: rgba(37, 211, 102, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(37, 211, 102, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.14), transparent 18%),
        linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
    z-index: 1;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.92;
}

.bg-glow-top {
    top: -160px;
    left: -140px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.22), transparent 58%);
}

.bg-glow-bottom {
    bottom: -180px;
    right: -130px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 54%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
    background-size: 180px 180px;
    opacity: 0.08;
}

.bg-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.08), transparent 18%),
        radial-gradient(circle at 80% 10%, rgba(37, 211, 102, 0.08), transparent 14%),
        radial-gradient(circle at 60% 70%, rgba(59, 130, 246, 0.06), transparent 14%);
    opacity: 0.7;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: rgba(37, 211, 102, 0.95);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(96%, 1320px);
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 68px rgba(15, 23, 42, 0.08);
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-box {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.logo-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 900;
    color: #0f172a;
}

.logo-sub {
    margin: 0;
    font-size: 0.78rem;
    color: #64748b;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(15, 23, 42, 0.85);
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: #16a34a;
}

.primary-btn,
.secondary-btn,
.plan-btn {
    cursor: pointer;
}

.primary-btn {
    padding: 16px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 56px rgba(34, 197, 94, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 35px 90px rgba(34, 197, 94, 0.28);
}

.secondary-btn {
    padding: 16px 34px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-weight: 700;
    transition: transform 0.35s ease, background 0.35s ease;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.08);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: #16a34a;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin: 0;
    color: #0f172a;
}

.green-text {
    color: #16a34a;
}

.hero-subtitle {
    margin-top: 32px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 58px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 28px 26px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
}

.hero-stat h3 {
    margin: 0;
    font-size: 2.4rem;
    color: #0f172a;
}

.hero-stat p {
    margin: 12px 0 0;
    color: #64748b;
    font-weight: 600;
}

.hero-image-wrap {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 640px;
}

.hero-image-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 45px 100px rgba(15, 23, 42, 0.12);
    padding: 24px;
    z-index: 2;
    will-change: transform;
}

.hero-image-deco {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(37, 211, 102, 0.12), transparent 24%);
    pointer-events: none;
}

.hero-tiles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-card-float {
    position: absolute;
    width: min(240px, 86%);
    border-radius: 30px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
    color: #0f172a;
    will-change: transform, opacity;
}

.hero-notification-card {
    top: 12%;
    right: 0;
}

.hero-chat-card {
    bottom: 22%;
    left: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-stat-mini {
    top: 14%;
    left: 4%;
}

.hero-card-float .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    color: #16a34a;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.notification-text,
.hero-chat-card p,
.hero-stat-mini span {
    margin: 10px 0 0;
    color: #475569;
    font-size: 0.95rem;
}

.chat-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 18px rgba(34, 197, 94, 0.45);
}

.hero-stat-mini strong {
    display: block;
    font-size: 1.8rem;
    color: #0f172a;
}

.description-section {
    padding: 120px 0;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.glass-panel {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 35px 110px rgba(15, 23, 42, 0.08);
}

.panel-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: #16a34a;
    font-size: 0.82rem;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.section-subtitle {
    margin-top: 30px;
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.9;
}

.feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-line {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 600;
}

.video-section {
    padding: 140px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 70px;
}

.video-card,
.mini-video-card,
.analytics-card {
    border-radius: 36px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.08);
}

.analytics-card {
    padding: 50px;
}

.analytics-card h3 {
    font-size: 4rem;
    font-weight: 900;
    color: #16a34a;
    margin: 0;
}

.analytics-card p {
    margin-top: 12px;
    color: #64748b;
}

.mini-video-card {
    overflow: hidden;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.96);
}

.mini-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.workflow-scroll-section {
    margin-top: 70px;
    overflow: hidden;
}

.workflow-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.workflow-copy {
    max-width: 640px;
    color: #475569;
}

.workflow-track {
    display: flex;
    gap: 28px;
    padding-bottom: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.workflow-track::-webkit-scrollbar {
    height: 10px;
}

.workflow-track::-webkit-scrollbar-thumb {
    background: rgba(37, 211, 102, 0.35);
    border-radius: 999px;
}


.workflow-tag {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.14);
    color: #16a34a;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.workflow-tag-soft {
    background: rgba(59, 130, 246, 0.15);
    color: #0f172a;
}

.workflow-card h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #0f172a;
}

.workflow-card p {
    margin-top: 12px;
    color: #475569;
    line-height: 1.9;
}

.modern-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.modern-card {
    position: relative;
    overflow: hidden;
    padding: 45px 40px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    transition: all 0.6s ease;
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 45px 120px rgba(34, 197, 94, 0.14);
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.14), transparent 55%);
    top: -70px;
    right: -50px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.modern-card:hover .card-glow {
    opacity: 1;
}

.modern-icon {
    width: 80px;
    height: 80px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.modern-card:hover .modern-icon {
    transform: rotate(8deg) scale(1.08);
}

.green-bg {
    background: rgba(37, 211, 102, 0.12);
}

.blue-bg {
    background: rgba(59, 130, 246, 0.12);
}

.purple-bg {
    background: rgba(168, 85, 247, 0.12);
}

.orange-bg {
    background: rgba(249, 115, 22, 0.12);
}

.pink-bg {
    background: rgba(236, 72, 153, 0.12);
}

.pricing-section {
    width: 100%;
    padding: 180px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.price-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 40px;
    padding: 55px 45px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.5s ease;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(16px);
}

.price-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 45px 140px rgba(34, 197, 94, 0.14);
}

.plan-btn {
    width: 100%;
    margin-top: 45px;
    padding: 18px;
    border: none;
    border-radius: 999px;
    background: #22c55e;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
}

.plan-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
}

.testimonial-marquee {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: marquee 40s linear infinite;
}

.reverse-marquee .testimonial-track {
    animation-direction: reverse;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 420px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid rgba(37, 211, 102, 0.08);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(37, 211, 102, 0.12);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 36px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.testimonial-role {
    margin-top: 4px;
    color: #6B7280;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

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

}

@media(max-width:768px) {

    .testimonial-card {
        width: 320px;
        padding: 28px;
    }

    .testimonial-text {
        font-size: 17px;
    }

}

.user-image {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(37, 211, 102, 0.4);
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 40px 140px rgba(15, 23, 42, 0.12);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 28px;
}

.cta-title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.02;
    font-weight: 900;
    margin: 0;
    color: #0f172a;
}

.cta-subtitle {
    margin-top: 24px;
    color: rgba(15, 23, 42, 0.85);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.footer {
    padding-top: 120px;
    padding-bottom: 60px;
    background: #f8fafc;
    color: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-text {
    margin-top: 30px;
    color: #475569;
    line-height: 2rem;
    max-width: 500px;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links a {
    color: #475569;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #64748b;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .description-grid,
    .video-grid,
    .modern-feature-grid,
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .hero-image-wrap {
        min-height: auto;
    }

    .workflow-track {
        overflow-x: auto;
    }

    .workflow-card {
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

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



/* =========================================
MOBILE RESPONSIVE FIXES
========================================= */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
    }

    body {
        width: 100%;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* =========================================
    NAVBAR
    ========================================= */

    .navbar {
        top: 10px;
        width: calc(100% - 16px);
    }

    .nav-container {
        padding: 14px 16px;
        border-radius: 32px;
        gap: 10px;
    }

    .logo-wrap {
        gap: 10px;
        min-width: 0;
    }

    .logo-box {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 22px;
        flex-shrink: 0;
    }

    .logo-title {
        font-size: 14px;
        line-height: 1.1;
    }

    .logo-sub {
        font-size: 11px;
        line-height: 1.3;
    }

    .nav-links {
        display: none;
    }

    .nav-container .primary-btn {
        padding: 12px 18px;
        font-size: 14px;
        min-width: auto;
        white-space: nowrap;
    }

    /* =========================================
    HERO SECTION
    ========================================= */

    .hero-section {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 11px;
        letter-spacing: 2px;
        text-align: center;
    }

    .hero-title {
        font-size: 54px !important;
        line-height: 0.95;
        letter-spacing: -3px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.8;
        margin-top: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        margin-top: 32px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* =========================================
    HERO STATS
    ========================================= */

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .hero-stat {
        border-radius: 24px;
        padding: 24px;
        text-align: center;
    }

    .hero-stat h3 {
        font-size: 42px;
    }

    .hero-stat p {
        font-size: 15px;
    }

    /* =========================================
    HERO IMAGE
    ========================================= */

    .hero-image-wrap {
        min-height: auto;
    }

    .hero-image-card {
        max-width: 100%;
        padding: 14px;
        border-radius: 28px;
    }

    .hero-card-float {
        width: 180px;
        padding: 14px;
        border-radius: 20px;
    }

    .hero-notification-card {
        top: -20px;
        right: 0;
    }

    .hero-chat-card {
        left: 0;
        bottom: -10px;
    }

    .hero-stat-mini {
        display: none;
    }

    .notification-text,
    .hero-chat-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* =========================================
    GLOBAL TITLES
    ========================================= */

    .section-title {
        font-size: 42px !important;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .section-subtitle {
        font-size: 17px;
        line-height: 1.8;
        margin-top: 22px;
    }

    /* =========================================
    DESCRIPTION SECTION
    ========================================= */

    .description-section {
        padding: 80px 0;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .glass-panel {
        border-radius: 28px;
    }

    /* =========================================
    WORKFLOW SECTION
    ========================================= */

    .workflow-pin-wrapper {
        height: auto !important;
    }

    .workflow-pin-wrapper .sticky {
        position: relative !important;
        height: auto !important;
        padding-bottom: 40px;
    }

    .workflow-pin-wrapper .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workflow-title {
        font-size: 42px !important;
    }

    .workflow-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .workflow-card {
        min-width: 100%;
        padding: 18px;
        border-radius: 24px;
    }

    /* =========================================
    FEATURE SECTION
    ========================================= */

    .modern-feature-grid,
    #features .grid,
    #pricing .grid {
        grid-template-columns: 1fr !important;
    }

    #features .group,
    #pricing .group {
        border-radius: 28px !important;
    }

    #features h2,
    #pricing h2 {
        font-size: 48px !important;
    }

    #features h3,
    #pricing h3 {
        font-size: 28px !important;
    }

    /* =========================================
    WHY SECTION
    ========================================= */

    .sticky {
        position: relative !important;
        top: 0 !important;
    }

    /* =========================================
    TESTIMONIALS
    ========================================= */

    .testimonial-card {
        width: 300px;
        padding: 24px;
        border-radius: 24px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-role {
        font-size: 14px;
    }

    /* =========================================
    CTA SECTION
    ========================================= */

    .cta-title {
        font-size: 48px !important;
        line-height: 1;
    }

    .cta-subtitle {
        font-size: 17px;
        line-height: 1.8;
    }

    /* =========================================
    FOOTER
    ========================================= */

    footer .grid {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    footer {
        text-align: left;
    }

    footer .flex-wrap {
        gap: 14px;
    }

    /* =========================================
    HUGE TAILWIND TEXT FIX
    ========================================= */

    .xl\:text-\[80px\],
    .xl\:text-\[78px\],
    .xl\:text-\[72px\],
    .lg\:text-6xl,
    .sm\:text-5xl {
        font-size: 48px !important;
        line-height: 1 !important;
    }

    /* =========================================
    BORDER RADIUS FIX
    ========================================= */

    .rounded-\[40px\] {
        border-radius: 28px !important;
    }

    .rounded-\[36px\] {
        border-radius: 24px !important;
    }

    .rounded-\[32px\] {
        border-radius: 22px !important;
    }

    /* =========================================
    OVERFLOW FIXES
    ========================================= */

    img {
        max-width: 100%;
        height: auto;
    }


}

/* =========================================
SMALL DEVICES
========================================= */

@media (max-width: 480px) {

    .hero-title,
    .section-title,
    .workflow-title,
    .cta-title {
        font-size: 42px !important;
        line-height: 0.98 !important;
    }

    .hero-subtitle,
    .section-subtitle,
    .workflow-description,
    .cta-subtitle {
        font-size: 16px !important;
    }

    .hero-badge {
        font-size: 10px;
        padding: 12px 16px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 15px 20px;
        font-size: 15px;
    }

    .hero-card-float {
        width: 160px;
    }

    .testimonial-card {
        width: 270px;
    }

}

/* =========================================
CRITICAL MOBILE FIXES
========================================= */

@media (max-width:768px) {

    /* NAVBAR */
    .nav-container {
        padding: 14px 18px;
        gap: 14px;
        align-items: center;
    }

    .logo-wrap {
        flex: 1;
        min-width: 0;
    }

    .logo-wrap>div:last-child {
        min-width: 0;
    }

    .logo-title {
        font-size: 15px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .logo-sub {
        font-size: 11px;
        line-height: 1.3;
        white-space: normal;
    }

    .nav-container .primary-btn {
        flex-shrink: 0;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* HERO TITLE */
    .hero-title {
        font-size: clamp(42px, 12vw, 62px) !important;
        line-height: 0.95 !important;
        letter-spacing: -3px !important;
        word-break: normal !important;
    }

    /* GLOBAL BIG TITLES */
    h1,
    h2,
    h3 {
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* LARGE TAILWIND HEADINGS */
    .xl\:text-\[80px\],
    .xl\:text-\[78px\],
    .xl\:text-\[72px\],
    .lg\:text-6xl,
    .sm\:text-5xl {
        font-size: clamp(40px, 11vw, 54px) !important;
        line-height: 0.98 !important;
        letter-spacing: -2px !important;
    }

    /* SECTION HEADINGS */
    .section-title,
    .workflow-title,
    .cta-title {
        font-size: clamp(38px, 10vw, 52px) !important;
        line-height: 1 !important;
        letter-spacing: -2px !important;
        word-break: normal !important;
    }

    /* PRICING */
    #pricing .font-Syne.text-6xl {
        font-size: 42px !important;
    }

    /* TESTIMONIAL */
    .testimonial-card {
        width: 280px;
    }

    /* PREVENT TEXT SPLITTING */
    .testimonial-name,
    .testimonial-role,
    .hero-subtitle,
    .section-subtitle,
    p,
    span {
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    /* BUTTONS */
    .primary-btn,
    .secondary-btn {
        white-space: nowrap;
    }

    /* REMOVE OVERFLOW */
    body {
        overflow-x: hidden !important;
    }

    section {
        overflow: hidden;
    }

}

/* =========================================
WORKFLOW CARDS
========================================= */
.workflow-card {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-origin: center center;
}

.workflow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* MOBILE FIX */
@media(max-width:768px) {
    .workflow-pin-wrapper {
        height: 220vh !important;
    }
}