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

:root {
    --primary-green: #6ABF59;
    --primary-orange: #E17B47;
    --primary-blue: #0066CC;
    --light-blue: #4A90E2;
    --dark-gray: #3E3E3E;
    --medium-gray: #6C757D;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;

    /* Glassmorphism 2.0 Variables */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-strong: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-inner-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);

    /* Enhanced Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Gradient Background - Always Visible */
.gradient-bg {
    z-index: -2;
    background: linear-gradient(135deg, #06c 0% 10%, #4d94ff 15% 25%, #06d6a0 30% 40%, #7b68ee 45% 55%, #ff6b35 60% 70%, #06c 75% 100%) 0 0 / 400% 400%;
    animation: 20s infinite gradientShift;
    position: fixed;
    inset: 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glass Overlay with Enhanced Blur */
.glass-overlay {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(120px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Navigation - Premium Glassmorphism */
.navbar {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: var(--shadow-md), var(--glass-inner-shadow);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-svg {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-top: -55px;
    margin-left: -55px;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

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

/* Premium Button Styles */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Navbar button - smaller sizing */
.nav-links .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
    pointer-events: none;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Ensure button text stays visible */
.btn {
    color: inherit;
}

.btn-primary {
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, #5AB049 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(106, 191, 89, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(106, 191, 89, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section - Premium Glassmorphism */
.hero {
    margin-top: 70px;
    padding: 100px 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--primary-orange));
    border-radius: 32px 32px 0 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.promo-badge {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(225, 123, 71, 0.12);
    padding: 16px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-visual {
    position: relative;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floating-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.logo-display {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Scroll Reveal Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Section Styling */
section {
    padding: 120px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 20px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Problem Section */
.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.problem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md), var(--glass-inner-shadow);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(225, 123, 71, 0.5);
}

.problem-icon {
    font-size: 72px;
    margin-bottom: 24px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.problem-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

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

.problem-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.problem-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 17px;
}

/* Solution Preview */
.solution-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
}

.solution-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-green);
    font-weight: 700;
}

.solution-content p {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.8);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 15px;
    font-weight: 500;
}

/* How It Works */
.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -24px;
    left: 36px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #D96837 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(225, 123, 71, 0.4);
}

.step-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.step-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Feature Grid */
.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), var(--glass-inner-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    background: var(--light-gray);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 17px;
}

/* Why Storage Section */
.why-content {
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
    border-left: 5px solid var(--primary-green);
    border: 1px solid var(--glass-border);
    border-left-width: 5px;
    border-left-color: var(--primary-green);
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
}

.why-item h3 {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.why-item-icon {
    font-size: 40px;
}

.why-item p {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-item ul {
    margin-left: 24px;
    margin-top: 16px;
}

.why-item li {
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.highlight-stat {
    background: rgba(106, 191, 89, 0.12);
    padding: 16px 28px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 18px;
}

/* Testimonials */
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Email Signup Section */
.email-signup {
    padding: 100px 40px;
    position: relative;
}

.email-signup-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.email-signup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--primary-orange));
    border-radius: 32px 32px 0 0;
}

.signup-text {
    text-align: center;
    margin-bottom: 40px;
}

.signup-text h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-weight: 700;
}

.signup-text p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.signup-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.mailchimp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group .required {
    color: var(--primary-orange);
}

.form-input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    font-size: 15px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-input::placeholder {
    color: var(--medium-gray);
    opacity: 0.6;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.btn-submit {
    min-width: 250px;
    font-size: 16px;
    padding: 16px 40px;
}

.form-response {
    text-align: center;
    margin-top: 16px;
}

#mce-error-response,
#mce-success-response {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

#mce-error-response {
    background: rgba(225, 71, 71, 0.1);
    color: #c53030;
    border: 1px solid rgba(225, 71, 71, 0.3);
}

#mce-success-response {
    background: rgba(106, 191, 89, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(106, 191, 89, 0.3);
}

@media (max-width: 768px) {
    .email-signup {
        padding: 80px 24px;
    }

    .email-signup-content {
        padding: 40px 28px;
    }

    .signup-text h2 {
        font-size: 32px;
    }

    .signup-text p {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-submit {
        width: 100%;
        min-width: auto;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

.trust-badge-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        font-size: 13px;
    }
}

/* Pricing Section */
.comparison-box {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    border-left: 4px solid var(--primary-orange);
    padding: 32px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
    border-left-width: 4px;
    border-left-color: var(--primary-orange);
}

.comparison-box h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.comparison-grid strong {
    color: var(--dark-gray);
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

.comparison-grid p {
    margin: 8px 0;
    color: var(--dark-gray);
    font-size: 16px;
}

.comparison-total {
    margin-top: 16px;
    font-weight: 700;
    font-size: 20px;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border: 2px solid var(--glass-border);
    border-radius: 28px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg), var(--glass-inner-shadow);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary-green);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #D96837 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(225, 123, 71, 0.4);
}

.pricing-card h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 16px;
    font-weight: 600;
}

.price {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 20px 0;
    font-variant-numeric: tabular-nums;
}

.price-period {
    font-size: 20px;
    color: var(--medium-gray);
    font-weight: 500;
}

.year-two-price {
    font-size: 16px;
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 8px;
    background: rgba(106, 191, 89, 0.12);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.check-icon {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

/* CTA Section */
.cta {
    padding: 120px 40px;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(16px) saturate(180%);
    border-radius: 32px;
    padding: 70px 60px;
    box-shadow: var(--shadow-xl), var(--glass-inner-shadow);
    border: 1px solid var(--glass-border);
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-blue);
    font-weight: 700;
}

.cta p {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2A2A2A 100%);
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
    margin: 0;
    border-radius: 0;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 28px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Fix navbar layout for mobile */
    .nav-container {
        padding: 0 20px;
    }

    /* Scale down logo to fit mobile screen */
    .logo-svg {
        height: 70px;
        width: auto;
        margin-top: -35px;
        margin-left: -35px;
        max-width: 60vw; /* Prevent logo from taking full width */
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0; /* Prevent hamburger from being squeezed */
        margin-left: auto; /* Push to right side */
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--glass-bg-strong);
        backdrop-filter: blur(16px) saturate(180%);
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

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

    .hero-content {
        padding: 40px 32px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .feature-grid,
    .problem-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

    .cta-content {
        padding: 50px 32px;
    }

    section {
        padding: 80px 24px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    /* Further reduce logo size on very small screens */
    .logo-svg {
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
        max-width: 55vw;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Make hamburger menu slightly smaller on tiny screens */
    .mobile-menu-toggle span {
        width: 24px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
