@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-green: #00B67A;
    --dark-green: #008F63;
    --light-green: #E6F7F1;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --bg-color: #f8fafc;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

body.auth-page {
    background-color: var(--light-green);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    animation: float 12s infinite alternate ease-in-out;
    opacity: 0.4;
}

/* --- HERO SECTION BACKGROUND & layout --- */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    text-align: center;
    background: #f8fafc;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* very subtle dot grid to give an attractive tech feel */
    background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: -1;
}

/* Floating icons around the hero */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 182, 122, 0.15);
    color: var(--primary-green);
    font-size: 1.8rem;
    animation: floatAnim 8s ease-in-out infinite alternate;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(-5deg);
    }

    100% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: -2s;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
}

.icon-3 {
    top: 25%;
    right: 10%;
    animation-delay: -4s;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
}

.icon-4 {
    top: 65%;
    right: 18%;
    animation-delay: -6s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 182, 122, 0.1);
    color: var(--dark-green);
    border: 1px solid rgba(0, 182, 122, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}


.blob-1 {
    width: 600px;
    height: 600px;
    background: #9be1a0;
    top: -300px;
    left: -300px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #9be1a0;
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 80px) scale(1.1);
    }
}

/* Main Container */
.auth-container {
    position: relative;
    z-index: 10;
    width: 1100px;
    max-width: 95%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    overflow: hidden;
    margin: 2rem 0;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Left Brand Side */
.auth-brand {
    flex: 1;
    background: linear-gradient(145deg, var(--dark-green) 0%, #034832 100%);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.auth-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.auth-brand>* {
    z-index: 2;
    position: relative;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: auto; */
}

.brand-logo .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.auth-brand h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.auth-brand p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #ffb400;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.testimonial p {
    font-size: 1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    background-image: url('https://ui-avatars.com/api/?name=Sara+J&background=random');
    background-size: cover;
}

.user-info span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Right Form Side */
.auth-form-wrapper {
    flex: 1.1;
    padding: 4rem 5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-form-wrapper .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Custom Input */
.custom-input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.custom-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.custom-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: #94a3b8;
}

.custom-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.1);
}

.custom-input:hover {
    background: #f1f5f9;
}

.password-wrap {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: var(--primary-green);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
    font-weight: 500;
}

.custom-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.btn-primary-custom {
    width: 100%;
    padding: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary-green);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary-custom:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.25);
}

.btn-primary-custom:hover::after {
    left: 100%;
}

.auth-switch {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-switch a {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.2s;
}

.auth-switch a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Password strength */
.pwd-strength {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.pwd-strength span {
    height: 4px;
    flex: 1;
    background: #e2e8f0;
    border-radius: 2px;
}

.pwd-strength.weak span:nth-child(1) {
    background: #ef4444;
}

.pwd-strength.medium span:nth-child(1),
.pwd-strength.medium span:nth-child(2) {
    background: #f59e0b;
}

.pwd-strength.strong span {
    background: var(--primary-green);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-brand {
        display: none;
    }

    .auth-form-wrapper {
        padding: 3rem 2rem;
    }
}






/* --- HOME EXTRAS --- */
/* Base Styles */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
}


.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .icon {
    color: var(--primary-green);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 20px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
    background: white;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    /* background: linear-gradient(100deg, var(--dark-bg-start, #86e7c9), var(--dark-green)); */
    color: white;
    background-color: #00B67A;
    /* margin: 0 2%; */
    /* border-radius: 30px; */
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
    /* Pull up slightly */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--bg-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
}

.pricing-card.popular {
    border: 2px solid var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 182, 122, 0.1);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--text-dark);
}

.price span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    margin: 2rem 0;
    flex-grow: 1;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pricing-features li i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.pricing-card.popular .pricing-features li i {
    color: var(--primary-green);
}

.pricing-card .btn {
    width: 100%;
    padding: 1.1rem;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: var(--bg-color);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.pricing-card .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.pricing-card.popular .btn {
    background: var(--primary-green);
    color: white;
    border: none;
}

.pricing-card.popular .btn:hover {
    background: white;
    color: var(--dark-green);
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--bg-color);
}

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

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-header:hover {
    background: #e2e8f0;
}

.faq-header i {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.05);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: white;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-card i.quote {
    font-size: 2.5rem;
    color: var(--light-green);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    z-index: 2;
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
}

.user-info h4 {
    font-size: 1.1rem;
}

.user-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- PREMIUM FOOTER STYLES --- */
.premium-footer {
    background: #0b1121;
    color: #ffffff;
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(0, 182, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.brand-description {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 340px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
    border-color: var(--primary-green);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.contact-item {
    font-weight: 500;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bottom-content p {
    color: #64748b;
    font-size: 0.9rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.excellent {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

.stars {
    display: flex;
    gap: 3px;
    color: #ffd700;
    font-size: 0.8rem;
}

.trustpilot-tag {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

@media (max-width: 992px) {
    .premium-footer {
        padding: 5rem 0 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-content {
        justify-content: center;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

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

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

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

/* --- AUDIT PAGE STYLES --- */
.audit-preview-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 4rem auto 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
}

.audit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sample-badge {
    position: absolute;
    right: 2rem;
    top: 2rem;
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.audit-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.trend-up h4 {
    color: var(--primary-green) !important;
}

.audit-stat {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.audit-stat h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.audit-stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.audit-checklist {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-item.good i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.check-item.warning i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.trust-pills-row {
    position: relative;
    z-index: 10;
}

.pills-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
}

.trust-pill i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Horizontal line behind process steps */
.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border-light);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: transparent;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 100px;
    background: white;
    z-index: -1;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
    border: 6px solid white;
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.audit-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    margin: 0 auto;
}

.report-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.report-preview-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.rp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.rp-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.rp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.rp-row:first-of-type {
    border-top: none;
}

.rp-row span:first-child {
    color: var(--text-muted);
}

.rp-value {
    background: #f8fafc;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.rp-value.good {
    background: var(--light-green);
    color: var(--primary-green);
}

.rp-value.warning {
    background: #fef3c7;
    color: #d97706;
}

@media (max-width: 992px) {
    .process-grid::before {
        display: none;
    }

    .process-step::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .audit-stats-row {
        flex-direction: column;
    }

    .report-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .audit-form-container {
        padding: 2rem;
    }
}

/* --- CALCULATOR PAGE STYLES --- */
.calc-hero .demo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8f0;
    border: 1px solid #ffd8a8;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #e85d04;
    max-width: 800px;
    margin: 2rem auto -1rem;
    gap: 8px;
}

.url-input-group {
    display: flex;
    max-width: 700px;
    margin: 2rem auto 1.5rem;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: 0.3s;
}

.url-input-group:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 10px 40px rgba(0, 182, 122, 0.15);
}

.url-input {
    flex: 1;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 40px;
    background: transparent;
    outline: none;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.url-input::placeholder {
    color: #94a3b8;
}

.btn-analyze {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
}

.btn-analyze:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 182, 122, 0.25);
}

/* 3 Grid Stats */
.calc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: -3rem;
    z-index: 10;
    position: relative;
    margin-bottom: 2rem;
}

.calc-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
    text-align: left;
}

.calc-stat-card .card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.calc-stat-card .card-head i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.calc-stat-card .card-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.calc-stat-card .card-val-sub {
    font-size: 1.5rem;
    color: #94a3b8;
    font-weight: 500;
}

.score-progress-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 4rem;
}

.sp-gradient {
    height: 45px;
    background: linear-gradient(to right, #ef4444 0%, #f97316 25%, #fbbf24 50%, #84cc16 75%, #10b981 100%);
    border-radius: 8px;
    position: relative;
    margin: 2rem 0 1rem;
}

.sp-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.sp-marker.target {
    background: #064e3b;
    width: 3px;
}

.calc-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 1rem;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.score-display h2 {
    font-size: 3rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1;
}

.stars-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.tp-stars {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.status-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.warning {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.good {
    background: var(--light-green);
    color: var(--primary-green);
}

.status-badge.outstanding {
    background: #e0e7ff;
    color: #4338ca;
}

.big-number {
    font-size: 3rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1;
}

.target-card {
    border: 2px solid var(--primary-green);
    background: #fafafa;
}

.target-input-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.target-input-wrap input {
    width: 80px;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-family: 'Outfit';
    padding: 0;
    outline: none;
}

.adjust-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.adjust-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.result-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border: none;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 182, 122, 0.15);
}

.huge-result {
    font-size: 4rem;
    color: white;
    margin: 0.5rem 0;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Dual Grid */
.calc-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.calc-panel {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.panel-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.star-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    background: #f8fafc;
    padding: 8px;
    border-radius: 12px;
}

.star-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.star-btn.active {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.big-green-box {
    background: linear-gradient(180deg, var(--light-green) 0%, #ffffff 100%);
    border: 1px solid rgba(0, 182, 122, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 182, 122, 0.05);
}

.bgb-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bgb-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bgb-sub {
    font-size: 0.9rem;
    color: var(--dark-green);
    font-weight: 500;
}

.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scenario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.s-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.s-stars span {
    font-weight: 600;
    color: var(--text-dark);
    margin-left: 10px;
    font-size: 1rem;
}

.s-needed {
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-text {
    color: var(--primary-green);
}

.error-text {
    color: #ef4444;
}

/* Milestones */
.milestones-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-light);
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.milestone-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.milestone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.milestone-card.active {
    border: 2px solid #f59e0b;
    background: #fffcf0;
}

.milestone-card.highlight {
    border: 2px solid var(--primary-green);
    background: var(--light-green);
    box-shadow: 0 15px 35px rgba(0, 182, 122, 0.1);
}

.m-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.milestone-card.active .m-icon {
    color: #d97706;
}

.milestone-card.highlight .m-icon {
    color: var(--primary-green);
}

.milestone-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.m-target {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border-light);
}

.milestone-card.highlight .m-target {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Before & After */
.ba-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.ba-card {
    border: 1px solid var(--border-light);
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
}

.ba-card.after {
    border: 2px solid var(--primary-green);
    background: #f0fdf4;
}

.ba-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.ba-pill {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e2e8f0;
    color: #475569;
}

.ba-pill.green {
    background: var(--primary-green);
    color: white;
}

.ba-pill.yellow {
    background: #f59e0b;
    color: white;
}

.ba-boxes {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.ba-box {
    width: 45px;
    height: 45px;
    background: #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.ba-box.filled {
    background: var(--primary-green);
}

.ba-box.half {
    background: linear-gradient(to right, var(--primary-green) 50%, #e2e8f0 50%);
}

.ba-label {
    position: absolute;
    top: -14px;
    left: 2rem;
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

.ba-label.highlight {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.tp-mockup h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tp-score-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.ba-arrow {
    background: var(--primary-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 182, 122, 0.25);
    z-index: 10;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 5%;
    }
}

@media (max-width: 1024px) {

    /* Navbar transition to mobile style early */
    .nav-links {
        display: none !important;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
        padding-bottom: 0.5rem;
        gap: 10px;
        font-weight: 600;
        background: transparent;
    }

    .nav-links a {
        padding: 0.8rem;
        display: block;
        background: #f8fafc;
        border-radius: 8px;
        transition: 0.2s;
    }

    .nav-links a:hover {
        background: var(--light-green);
        color: var(--primary-green);
    }

    .menu-toggle {
        display: block !important;
        font-size: 2.2rem;
        cursor: pointer;
        color: var(--text-dark);
        margin-left: auto;
    }

    .nav-auth {
        display: none !important;
    }

    .nav-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        transition: all 0.3s ease;
    }

    .nav-content.active {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        margin-top: 0.5rem;
        border: 1px solid rgba(0, 182, 122, 0.1);
        width: 100%;
    }

    .nav-content.active .nav-links {
        display: flex !important;
        width: 100%;
        margin-top: 1.5rem;
        border-top: 1px solid var(--border-light);
        padding-top: 1.5rem;
    }

    .nav-content.active .nav-auth {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-auth .btn {
        width: 100%;
        padding: 0.8rem !important;
        font-size: 1rem;
        text-align: center;
    }

    .nav-logo img {
        height: 40px !important;
    }

    /* Auth Page adjustments */
    .auth-container {
        flex-direction: column;
        width: 600px;
        max-width: 95%;
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .auth-brand {
        display: none;
        /* Hide brand side on smaller tablet/mobile */
        padding: 3rem;
    }

    .auth-form-wrapper {
        padding: 3rem 2rem;
    }

    /* Grids to 1 col for better premium experience on tablet/mobile */
    .calc-stats-grid,
    .stats-grid,
    .features-grid,
    .process-grid,
    .pricing-grid,
    .footer-grid,
    .calc-dual-grid {
        grid-template-columns: 1fr !important;
    }

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

    .ba-row {
        flex-direction: column;
    }

    .ba-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    /* Text */
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-floating-icons .floating-icon {
        display: none;
        /* Cleaner look */
    }

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

    /* Layout */
    .url-input-group {
        flex-direction: column;
        padding: 1rem;
        border-radius: 20px;
    }

    .url-input {
        border-radius: 12px;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Buttons */
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .signup-name-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
}

@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .stats-grid .stat-item h3 {
        font-size: 2.5rem;
    }

    .auth-container {
        border-radius: 15px;
    }

    .audit-stats-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Reviews Specific */
.trust-metrics-card {
    padding: 1.5rem;
}

.audit-preview-card,
.trajectory-card,
.competitor-card {
    padding: 1.5rem !important;
}

.hero {
    padding: 8rem 1rem 4rem;
}

@media (max-width: 1024px) {
    .why-choose-content {
        flex-direction: column !important;
    }

    .sticky-header {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .why-choose-content>div:last-child {
        order: 2 !important;
        width: 100% !important;
    }
}

/* --- END RESPONSIVE CSS --- */