/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007bfc;
    --primary-dark: #202FAB;
    --secondary-color: #259425;
    --text-dark: #142149;
    --text-body: #4e5259;
    --text-light: #8692b0;
    --background-light: #f8f8f8;
    --background-dark: #0C153E;
    --white: #ffffff;
    --border-light: #eeeeee;
    --border-lighter: #e9f4ff;
    --gradient-nav: linear-gradient(90deg, #021048, #1e38a3);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    z-index: 1001;
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    z-index: 1001;
    position: relative;
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Heebo', sans-serif;
}

.btn-primary {
    background: var(--primary-dark);
    color: #efefef;
}

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

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

.btn-secondary:hover {
    background: var(--background-light);
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, #061655 0%, #1A3396 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(255, 255, 255, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(255, 255, 255, 0.03) 41px);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.6;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(81, 185, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 51, 150, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(81, 185, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(81, 185, 255, 0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: morph 20s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-impact {
    font-size: 1.5rem;
    font-weight: 600;
    color: #51b9ff;
    margin-bottom: 2rem;
}

.hero .btn-primary {
    background: var(--white);
    color: #061655;
    font-weight: 600;
}

.hero .btn-primary:hover {
    background: #51b9ff;
    color: var(--white);
}

/* Pain Points Section */
.pain-points {
    padding: 5rem 0;
    background: var(--background-light);
}

.pain-points .section-title {
    margin-bottom: 3rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pain-point {
    background: linear-gradient(135deg, #152B80 0%, #0075F4 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(81, 185, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 185, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-point:hover::before {
    opacity: 1;
}

.pain-point:hover {
    border-color: rgba(81, 185, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 43, 128, 0.4);
}

.pain-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.pain-icon svg {
    width: 100%;
    height: 100%;
    color: #51b9ff;
    filter: drop-shadow(0 0 10px rgba(81, 185, 255, 0.5));
    transition: all 0.3s ease;
}

.pain-point:hover .pain-icon svg {
    transform: scale(1.1);
    color: #7dd3ff;
    filter: drop-shadow(0 0 15px rgba(81, 185, 255, 0.8));
}

.pain-point p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    margin: 0;
}

.pain-point p strong {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 1rem;
    text-align: center;
}

/* Description Section */
.description {
    padding: 5rem 0;
    background: linear-gradient(135deg, #061655 0%, #1A3396 100%);
    position: relative;
}

.description-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.description-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.description-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(81, 185, 255, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.description-content {
    flex: 1;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin: 0;
    text-align: right;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    position: relative;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.social-icon-1 {
    animation-delay: 0s;
}

.social-icon-2 {
    animation-delay: 0.5s;
}

.social-icon-3 {
    animation-delay: 1s;
}

.social-icon-4 {
    animation-delay: 1.5s;
}

.social-icon:hover {
    background: rgba(81, 185, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(81, 185, 255, 0.3);
}

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

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--background-light);
}

.benefits .section-subtitle {
    margin-bottom: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-box {
    background: linear-gradient(135deg, #152B80 0%, #0075F4 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(81, 185, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 185, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-box:hover::before {
    opacity: 1;
}

.benefit-box:hover {
    border-color: rgba(81, 185, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 43, 128, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    color: #51b9ff;
    filter: drop-shadow(0 0 10px rgba(81, 185, 255, 0.5));
    transition: all 0.3s ease;
}

.benefit-box:hover .benefit-icon svg {
    transform: scale(1.1);
    color: #7dd3ff;
    filter: drop-shadow(0 0 15px rgba(81, 185, 255, 0.8));
}

.benefit-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.benefit-box p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* CTA Stripe */
.cta-stripe {
    background: var(--background-dark);
    padding: 4rem 0;
    text-align: center;
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* Why Better Section */
.why-better {
    padding: 5rem 0;
    background: var(--background-light);
}

.features-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: linear-gradient(135deg, #152B80 0%, #0075F4 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(81, 185, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 140px;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 185, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    border-color: rgba(81, 185, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 43, 128, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: #51b9ff;
    filter: drop-shadow(0 0 10px rgba(81, 185, 255, 0.5));
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
    color: #7dd3ff;
    filter: drop-shadow(0 0 15px rgba(81, 185, 255, 0.8));
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-content p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
}

/* Target Audience Section */
.who-for {
    padding: 5rem 0;
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.audience-card {
    background: linear-gradient(135deg, #152B80 0%, #0075F4 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(81, 185, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 185, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card:hover {
    border-color: rgba(81, 185, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 43, 128, 0.4);
}

.audience-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.audience-icon svg {
    width: 100%;
    height: 100%;
    color: #51b9ff;
    filter: drop-shadow(0 0 10px rgba(81, 185, 255, 0.5));
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon svg {
    transform: scale(1.1);
    color: #7dd3ff;
    filter: drop-shadow(0 0 15px rgba(81, 185, 255, 0.8));
}

.audience-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.audience-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--background-light);
}

.pricing-table-wrapper {
    margin-top: 3rem;
}

/* Desktop Table View */
.pricing-table-desktop {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table-desktop thead th {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-bottom: 2px solid var(--border-light);
    vertical-align: top;
}

.pricing-table-desktop thead th.feature-column {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    width: 20%;
}

.pricing-table-desktop thead th.plan-column {
    text-align: center;
    position: relative;
    border-left: 1px solid var(--border-light);
}

.pricing-table-desktop thead th.plan-column.featured {
    background: linear-gradient(135deg, #152B80 0%, #0075F4 100%);
    border-left: 2px solid #0075F4;
    border-right: 2px solid #0075F4;
}

.pricing-table-desktop thead th.plan-column.featured * {
    color: var(--white) !important;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.4;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #51b9ff;
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
}

.pricing-table-desktop tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.pricing-table-desktop tbody tr:hover {
    background: var(--background-light);
}

.pricing-table-desktop tbody td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-body);
    border-left: 1px solid var(--border-light);
}

.pricing-table-desktop tbody td.feature-name {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
    border-left: none;
}

.pricing-table-desktop tbody td.featured {
    background: rgba(81, 185, 255, 0.05);
    border-left: 2px solid #0075F4;
    border-right: 2px solid #0075F4;
    font-weight: 500;
}

.pricing-table-desktop tbody tr.cta-row {
    border-bottom: none;
}

.pricing-table-desktop tbody tr.cta-row td {
    padding: 2rem 1.5rem;
}

.pricing-table-desktop .btn {
    width: 100%;
    max-width: 200px;
}

/* Mobile Slider */
.pricing-slider-mobile {
    display: none;
}

.pricing-cards-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pricing-cards-container::-webkit-scrollbar {
    display: none;
}

.pricing-card-mobile {
    flex: 0 0 90%;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    position: relative;
}

.pricing-card-mobile.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(21, 43, 128, 0.03) 0%, rgba(0, 117, 244, 0.05) 100%);
}

.pricing-card-mobile.featured .featured-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: #51b9ff;
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-card-mobile .plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-card-mobile .plan-price {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-card-mobile .plan-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-card-mobile .plan-price .currency {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card-mobile .plan-desc {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.features-list-mobile {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list-mobile li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-body);
    text-align: right;
    line-height: 1.6;
}

.features-list-mobile li:last-child {
    border-bottom: none;
}

.features-list-mobile strong {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-card-mobile .btn {
    width: 100%;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

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

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--background-light);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Logo Mobile */
    .logo-img {
        height: 40px;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

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

    .mobile-menu-overlay.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
        text-align: right;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-impact {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pain-point {
        padding: 1.5rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .pain-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
        float: none;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }

    .pain-point p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0;
        text-align: center;
    }

    .pain-point p strong {
        display: inline;
    }

    .pain-point p br {
        display: block;
        content: "";
        margin-bottom: 0.5rem;
    }

    .pain-point p strong {
        font-size: 0.95rem;
        height: auto;
        min-height: 60px;
    }

    .benefit-box {
        padding: 1.5rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
        float: none;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }

    .benefit-box h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .benefit-box p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0;
        text-align: center;
        clear: none;
    }

    .feature-item {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 1rem 1rem;
        align-items: start;
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-content {
        display: contents;
    }

    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
        align-self: center;
    }

    .feature-content p {
        font-size: 0.9rem;
        grid-column: 1 / -1;
    }

    .description-box {
        flex-direction: column;
        text-align: center;
    }

    .description-text {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Pricing responsive */
    .pricing-table-desktop {
        display: none;
    }

    .pricing-slider-mobile {
        display: block;
    }

    /* Footer responsive */
    .footer-logo {
        height: 50px;
    }
}

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