:root {
    /* Updated colors for a more balanced dark mode */
    --primary-color: #536dfe;
    --primary-dark: #3d5afe;
    --primary-light: #8a9bff;
    --secondary-color: #4caf50;
    --background-color: #1a1a1a; /* Lightened from #121212 */
    --surface-color: #242424; /* Lightened from #1e1e1e */
    --card-color: #2d2d2d; /* Lightened from #252525 */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8; /* Brightened from #b0b0b0 */
    --text-tertiary: #888888; /* Brightened from #777777 */
    --border-color: #3a3a3a; /* Lightened from #333333 */
    --success-color: #66bb6a;
    --error-color: #e57373;
    --shadow-color: rgba(0, 0, 0, 0.2); /* Reduced opacity */
    --shadow-hover: rgba(0, 0, 0, 0.35); /* Reduced opacity */
    --accent-color: #ff6e40;
    --accent-dark: #e43e10;
    --gray-800: #323232; /* Lightened */
    --gray-700: #424242; /* Lightened */
    --gray-600: #525252; /* Lightened */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

.logo span {
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center; /* Ensure vertical centering */
}

nav ul {
    display: none; /* Hide by default on mobile */
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: var(--background-color);
    box-shadow: 0 10px 20px var(--shadow-color);
    z-index: 999;
    align-items: center; /* Center mobile menu items horizontally */
    text-align: center;
}

nav ul li {
    margin: 12px 0;
    display: flex;
    align-items: center; /* Ensure vertical alignment */
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
    padding: 5px 0; /* Added padding for better tap target */
    display: flex;
    align-items: center; /* Ensure vertical alignment */
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0; /* Moved up for better alignment */
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

nav ul li a.btn-primary {
    color: white;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

nav ul li a.btn-primary:after {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 130px 0 60px;
    background-color: var(--surface-color);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Allow positioning for overlay */
}

.hero-content {
    width: 100%;
    text-align: center;
    z-index: 2; /* Ensure content appears above the image */
    position: relative; /* Enable z-index */
    margin-bottom: 0;
    padding: 0 15px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.cta-buttons a {
    width: 100%;
}

.hero-image {
    width: 100%;
    position: relative;
    height: 100vh; /* Full viewport height for impact */
    min-height: 550px;
    overflow: hidden;
}

.hero-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.6) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 0 0;
    }
    
    .hero .container {
        padding: 0;
        width: 100%;
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 20px;
    }
    
    .hero-content h1 {
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-content p {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
}

/* Page Header (for secondary pages) */
.page-header {
    padding: 120px 0 40px;
    background-color: var(--surface-color);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Tab Section */
.tab-container {
    margin-top: 30px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -11px;
    left: 0;
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Problem Cards */
.problem-card {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px var(--shadow-color);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-hover);
}

.problem-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.problem-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.problem-card p {
    text-align: center;
    margin-bottom: 25px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: var(--text-secondary);
}

.problem-list li i {
    color: var(--primary-color);
    font-size: 0.7rem;
    margin-right: 10px;
    margin-top: 8px;
}

/* Stats Banner */
.stats-banner {
    background-color: var(--primary-dark);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 10px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }

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

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Remove stats navigation code */
.stats-nav, .stats-dots {
    display: none;
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.carousel-track {
    position: relative;
    overflow: visible;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(20px);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.carousel-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 48px;
    border-radius: 16px;
    background: rgba(83, 109, 254, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav-button:hover {
    background: rgba(83, 109, 254, 0.3);
}

.carousel-nav-button.left-2 {
    left: -16px;
}

.carousel-nav-button.right-2 {
    right: -16px;
}

@media (max-width: 767px) {
    .carousel-nav-button {
        width: 28px;
        height: 42px;
        background: rgba(83, 109, 254, 0.3);
    }

    .carousel-nav-button:hover {
        background: rgba(83, 109, 254, 0.4);
    }

    .carousel-nav-button.left-2 {
        left: -14px;
    }

    .carousel-nav-button.right-2 {
        right: -14px;
    }

    .solutions-carousel {
        padding: 0 14px;
    }

    .solution-card {
        margin: 0;
    }
}

/* Solutions Carousel */
.solutions-carousel {
    position: relative;
    overflow: visible;
}

.solutions-carousel .carousel-track {
    position: relative;
    overflow: visible;
}

.solutions-carousel .carousel-nav-button {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex !important;
}

.solutions-carousel .carousel-nav-button:hover {
    opacity: 1;
}

/* Solution Cards */
.solution-card {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px var(--shadow-color);
    height: 100%;
    margin: 0 20px;
}

.solution-card .card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card .card-icon i {
    font-size: 1.8rem;
    color: white;
}

.solution-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.solution-card p {
    text-align: center;
    margin-bottom: 25px;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
}

.benefit-point i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 5px;
}

.benefit-point p {
    margin: 0;
    text-align: left;
}

/* Collapsible */
.collapsible-container {
    margin-bottom: 30px;
}

.collapsible-item {
    background-color: var(--card-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.collapsible-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    background-color: var(--gray-700);
}

.collapsible-header h3 {
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.collapsible-header h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.collapsible-header .fa-chevron-down {
    transition: transform 0.3s ease;
}

.collapsible-item.active .collapsible-header .fa-chevron-down {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.collapsible-item.active .collapsible-content {
    max-height: 200px;
}

.collapsible-content p {
    padding: 0 20px 20px;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background-color: var(--surface-color);
}

.benefits .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-content {
    width: 100%;
    margin-bottom: 40px;
}

.benefits-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-content p {
    text-align: center;
    margin-bottom: 30px;
}

.benefits-content .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.benefits-image {
    width: 100%;
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px var(--shadow-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-color);
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-details {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-dark);
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-dark);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-secondary {
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-dark);
    text-align: center;
    padding: 50px 0;
}

.cta-banner h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-banner .btn-primary {
    background-color: white;
    color: var(--primary-dark);
    border-color: white;
}

.cta-banner .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Accordion */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    background-color: var(--card-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--gray-700);
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 0 20px 20px;
    margin: 0;
}

/* Contact Section */
.contact {
    background-color: var(--surface-color);
}

.contact .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-content {
    width: 100%;
    text-align: center;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form-container {
    width: 100%;
}

.contact-form {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--gray-800);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(83, 109, 254, 0.2);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* Plan Cards */
.plans {
    background-color: var(--background-color);
    padding-bottom: 80px;
}

.plan-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.plan-card {
    background-color: var(--card-color);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--success-color);
    margin-right: 10px;
    min-width: 20px;
}

.plan-btn-container {
    margin-top: auto;
}

.plan-card .btn-primary, .plan-card .btn-secondary {
    width: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-hover);
}

/* Plan FAQ */
.plan-faq {
    background-color: var(--surface-color);
    padding-bottom: 80px;
}

/* Footer Styles */
footer {
    background-color: var(--surface-color);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Animations */
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.plan-card.featured.revealed {
    transform: scale(1.05) translateY(0) !important;
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero .container {
        flex-direction: row;
        padding: 0 15px;
    }
    
    .hero-image {
        width: 50%;
        height: auto;
        min-height: unset;
    }
    
    .hero-image:after {
        display: none;
    }
    
    .hero-image img {
        position: relative;
        border-radius: 10px;
        box-shadow: 0 20px 30px var(--shadow-color);
    }
    
    .hero-content {
        width: 50%;
        text-align: left;
        position: static;
        transform: none;
        padding: 0;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons a {
        width: auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits .container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .benefits-content {
        width: 50%;
        text-align: left;
    }

    .benefits-content h2, .benefits-content p {
        text-align: left;
    }
    
    .benefits-image {
        width: 50%;
    }
    
    .testimonial-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }
    
    .testimonial-image {
        margin-bottom: 0;
    }
    
    .plan-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan-card.featured {
        transform: scale(1.05);
    }
    
    .contact .container {
        flex-direction: row;
    }
    
    .contact-content {
        width: 40%;
        text-align: left;
    }
    
    .contact-form-container {
        width: 60%;
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .footer-logo {
        width: 30%;
    }
    
    .footer-links {
        width: 70%;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cta-section .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-section .cta-buttons a {
        width: auto;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    html {
        font-size: 18px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
    }
    
    nav ul li {
        margin-left: 30px;
        margin: 0 0 0 30px;
        display: flex;
        align-items: center; /* Ensure vertical alignment */
    }
    
    nav ul li a.btn-primary {
        width: auto;
        padding: 10px 25px;
    }
    
    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    
    .hero-content {
        width: 50%;
        text-align: left;
        margin-bottom: 0;
    }
    
    .hero-image {
        width: 50%;
    }
    
    .plan-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }
}

@media (max-width: 767px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat {
        margin: 0 auto;
        max-width: 340px;
    }
}