/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utility classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: #d4b24a;
}

.limited-tag {
    display: none;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    margin-left: 30px;
    color: #333;
    font-weight: 500;
}

.desktop-nav .purchase-btn {
    background-color: #d4b24a;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.desktop-nav .purchase-btn:hover {
    background-color: #c19f3a;
}

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: #d4b24a;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: #d4b24a;
}

/* Mobile navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px 20px;
}

.mobile-nav a {
    margin: 15px 0;
    font-size: 22px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.mobile-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4b24a;
    transition: width 0.3s ease;
}

.mobile-nav a:hover {
    color: #d4b24a;
}

.mobile-nav a:hover:after {
    width: 100%;
}

.mobile-nav .purchase-btn {
    background-color: #d4b24a;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(212, 178, 74, 0.3);
}

.mobile-nav .purchase-btn:hover {
    background-color: #c19f3a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 178, 74, 0.4);
}

.mobile-nav .purchase-btn:after {
    display: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Header styles */
.header-fixed {
    padding: 15px 0;
    background-color: #ffffff; /* Solid white background initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f0f0f0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.header-fixed.scrolled {
    background-color: rgba(255, 255, 255, 0.95); /* Slight transparency when scrolled */
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #d4b24a;
}

.purchase-btn {
    background-color: #d4b24a;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.purchase-btn:hover {
    background-color: #c19f3a;
}

/* Hero section */
.hero {
    position: relative;
    padding: 250px 0 120px; /* Increased top padding to create more space */
    overflow: hidden;
    min-height: 650px;
    position: relative;
}

/* Create the diagonal gold section using a pseudo-element */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 200%;
    background-color: #d4b24a;
    transform: skewX(-7deg) translateX(10%);
    z-index: -1;
}

.hero-content {
    width: 45%; /* Reduced width to prevent overlap */
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.hero-tagline {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-slogan {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-tagline .gold-word {
    color: #d4b24a;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 3;
}

.race-car-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

.hero-badge {
    position: absolute;
    right: 5%;
    bottom: 15%;
    background-color: #d4b24a;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px; /* Reduced gap between buttons */
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.hero-btn {
    position: relative;
    z-index: 5;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto !important; /* Override any previous width: 100% */
    text-align: center;
}

.btn-primary {
    background-color: #d4b24a;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    min-width: 160px;
}

.btn-primary:hover {
    background-color: #c19f3a;
}

.btn-secondary {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.limited-offer {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d4b24a;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(212, 178, 74, 0.3);
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-description {
    color: #fff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: #fff;
}

.feature-icon {
    margin-bottom: 20px;
    color: #d4b24a;
    font-size: 28px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-description {
    color: #666;
}

/* Pricing section */
.pricing {
    padding: 80px 0;
    background-color: #fff;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card.highlight {
    border: 2px solid #d4b24a;
    position: relative;
    overflow: visible;
}

/* Create a new LIMITED OFFER tag that sits on top of the border */
.pricing-card.highlight::before {
    content: "LIMITED OFFER";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d4b24a;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4b24a, #f3d78e, #d4b24a);
    background-size: 200% 100%;
    animation: gradient-move 3s ease infinite;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.price-main {
    font-size: 34px;
    font-weight: bold;
}

.price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.price-features {
    margin: 25px 0;
    flex-grow: 1;
}

.price-feature {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #d4b24a;
    margin-right: 10px;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.pricing-card .btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #d4b24a;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d4b24a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    will-change: transform;
}

.author-name {
    font-weight: bold;
}

.testimonial-join {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

/* FAQ section */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #d4b24a;
}

.faq-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-arrow.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

.faq-more a {
    color: #d4b24a;
    font-weight: 600;
}

/* CTA section */
.cta {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cta-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-limited {
    font-size: 14px;
    color: #666;
    margin-top: 30px;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #fff;
}

.simple-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.footer-text {
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    overflow: hidden;
}

.social-icon:hover {
    background-color: #d4b24a;
    color: white;
    transform: translateY(-5px);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    will-change: transform;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

/* Enhanced section title hover effect */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title .gold-text {
    position: relative;
    transition: all 0.3s ease;
}

.section-title .gold-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4b24a;
    transition: width 0.3s ease;
}

.section-title:hover .gold-text::after {
    width: 100%;
}

.section-title:hover .gold-text {
    text-shadow: 0 0 10px rgba(212, 178, 74, 0.5);
}

/* Add smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}

/* Fix for mobile zoom issues with inputs */
input, 
select, 
textarea, 
button {
    font-size: 16px; /* Prevents iOS zoom on focus */
}

/* Touch-friendly styles */
.btn:focus,
.nav-links a:focus,
.faq-question:focus {
    outline: 2px solid rgba(212, 178, 74, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-content {
        width: 45%; /* Slightly narrower on smaller screens */
    }
}

@media (max-width: 992px) {
    .hero-content {
        width: 50%;
    }
    
    .hero-tagline {
        font-size: 48px;
    }
    
    .hero-slogan {
        font-size: 40px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .cta-card {
        padding: 40px;
    }
    
    /* Larger touch targets for mobile */
    .desktop-nav a {
        padding: 10px 15px;
    }
    
    .btn {
        padding: 12px 20px;
        min-height: 44px; /* Minimum recommended touch target size */
    }
    
    .faq-question {
        padding: 15px 10px;
        min-height: 44px;
    }
    
    /* Better spacing for finger scrolling */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    /* Fix hero section on mobile */
    .hero {
        background: white;
        padding: 120px 0 0;
        position: relative;
        min-height: auto;
        margin-bottom: 0; /* Remove margin */
    }
    
    /* Create a full-width container for hero content */
    .hero .container {
        display: flex;
        flex-direction: column;
        padding-bottom: 0; /* Remove padding */
    }
    
    /* Keep hero content in white area with better spacing */
    .hero-content {
        width: 100%;
        text-align: center;
        padding: 0 20px 40px; /* Increased bottom padding */
        background-color: white;
        z-index: 2;
        order: 1;
        margin-bottom: 0; /* Remove margin */
    }
    
    /* Improved mobile hero text */
    .hero-tagline,
    .hero-slogan {
        text-shadow: none; /* Remove text shadow */
        color: #333; /* Darker text color */
    }
    
    .hero-slogan .gold-text {
        color: #d4b24a; /* Ensure gold text is correct color */
    }
    
    /* Move image section below with clear separation */
    .hero-image {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 30px;
        background-color: #d4b24a;
        order: 2;
        top: auto;
        transform: none;
        overflow: hidden; /* Prevent image overflow */
        border-top-left-radius: 20px; /* Add rounded corners */
        border-top-right-radius: 20px;
    }
    
    /* Better image styling */
    .hero-image img {
        width: 90%;
        max-width: 450px;
        margin: 0 auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: perspective(1000px) rotateX(5deg);
    }
    
    /* Remove after pseudo-element that creates the diagonal shape */
    .hero::after {
        display: none;
    }
    
    /* Adjust responsive button layout */
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-btn {
        width: auto;
        min-width: 180px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 450px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .footer-column {
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
      .feature-card:hover {
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    }
      .feature-card:hover::before {
        transform: translateY(100%) !important;
    }
    
    .feature-card:hover .feature-title,
    .feature-card:hover .feature-description {
        color: inherit !important;
    }
    
    .feature-card:hover .feature-icon {
        transform: none !important;
        color: #d4b24a !important;
    }
     .feature-card {
        pointer-events: none;
    }
}

@media (max-width: 576px) {
    /* Better hero text on very small screens */
    .hero-content {
        padding: 0 15px 30px;
    }
    
    .hero-tagline {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .hero-slogan {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    /* Improved button layout */
    .hero-buttons {
        flex-direction: row; /* Keep buttons side by side */
        width: 100%;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Better image on very small screens */
    .hero-image {
        padding: 20px 15px 30px;
    }
    
    .hero-image img {
        width: 95%;
    }
    
    /* Better limited offer text */
    .limited-offer {
        padding: 0 15px;
        font-size: 14px;
        line-height: 1.4;
        margin-top: 25px;
        color: #666;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    /* Feature cards improvements */
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-card {
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
    
    .feature-title {
        margin-bottom: 5px;
    }
    
    /* Testimonial improvements for mobile */
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-card {
        height: auto;
        padding: 20px;
    }
    
    .testimonial-stars {
        margin-bottom: 10px;
    }
    
    /* Pricing improvements */
/* Pricing improvements */
    .pricing-card {
        padding: 20px;
    }
    
    .price-features {
        margin: 15px 0;
    }
    
    .price-feature {
        margin-bottom: 8px;
    }
    
    /* FAQ improvements */
    .faq-question {
        font-size: 16px;
        padding: 15px 0;
    }
    
    .faq-answer.active {
        max-height: 500px; /* Increase for mobile to ensure content fits */
    }
    
    .cta-card {
        padding: 25px 15px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Fix for very small screens */
@media (max-width: 375px) {
    .hero-tagline {
        font-size: 32px;
    }
    
    .hero-slogan {
        font-size: 26px;
    }
    
    .hero {
        padding: 100px 0 0;
    }
    
    .pricing-title {
        font-size: 20px;
    }
    
    .price-main {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    /* Improved mobile menu button for very small screens */
    .mobile-toggle {
        width: 24px;
        height: 18px;
        right: 15px;
        top: 20px;
    }
    
    /* Better spacing for hero content */
    .hero-content {
        padding: 0 10px 25px;
    }
    
    /* Make buttons more accessible on very small screens */
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Improve purchase button prominence */
    .mobile-nav .purchase-btn {
        margin-top: 30px;
        padding: 15px 25px;
        font-size: 18px;
    }
}

/* Additional fixes for medium-small phones */
@media (max-width: 500px) {
    /* Avoid cutting off hero image */
    .hero-image {
        padding: 30px 15px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    
    /* Make image look better with less perspective on smaller screens */
    .hero-image img {
        transform: perspective(800px) rotateX(3deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Better spacing for pricing cards */
    .pricing-card {
        margin-bottom: 20px;
    }
    
    /* Adjust testimonial card spacing */
    .testimonial-card {
        margin-bottom: 15px;
    }
    
    /* Better button sizes on smaller screens */
    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}