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

:root {
    /* Primary Colors - Soft Mint/Teal */
    --color-primary-main: #8DD4CC;
    --color-primary-dark: #6BBFB5;
    --color-primary-darker: #4DA79D;
    --color-primary-darkest: #2D9488;
    --color-primary-light: #C5EAE5;
    --color-primary-lighter: #E8F7F5;

    /* Background Colors - Soft, airy palette */
    --color-background-primary: #ffffff;
    --color-background-secondary: #F5FAFA;
    --color-background-tertiary: #EDF5F5;
    --color-background-hover: #F0F8F8;

    /* Text Colors */
    --color-text-primary: #1f2937;
    --color-text-secondary: #374151;
    --color-text-tertiary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-text-inverse: #ffffff;

    /* Border Colors */
    --color-border-light: #e5e7eb;
    --color-border-medium: #d1d5db;
    --color-border-dark: #9ca3af;

    /* Accent Colors */
    --color-accent-purple: #6B4CE6;
    --color-accent-purple-dark: #5638C4;
    --color-accent-purple-light: #E8E3FC;
    --color-accent-error: #EF6B6B;
    --color-accent-success: #5ED5A8;
    --color-accent-info: #8DD4CC;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 6px 16px rgba(0, 0, 0, 0.1);
    --shadow-purple: 0 4px 12px rgba(107, 76, 230, 0.25);
    --shadow-purple-hover: 0 6px 16px rgba(107, 76, 230, 0.35);
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background-secondary);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Prevent images from overflowing on small screens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 2rem;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    left: 50%;
    height: 2px;
    background: linear-gradient(135deg, #6B4CE6 0%, #8DD4CC 100%);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.nav-link:hover {
    color: var(--color-accent-purple);
    background-color: rgba(107, 76, 230, 0.05);
}

.nav-link:hover::after {
    right: 1rem;
    left: 1rem;
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-nav {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6B4CE6 0%, #8B6AE8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(107, 76, 230, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 76, 230, 0.3);
    background: linear-gradient(135deg, #5638C4 0%, #6B4CE6 100%);
}

.btn-nav:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFF 50%, #F0F5FF 100%);
    color: var(--color-text-primary);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(107, 76, 230, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(141, 212, 204, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.badge-text {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.1) 0%, rgba(141, 212, 204, 0.1) 100%);
    border: 1px solid rgba(107, 76, 230, 0.2);
    border-radius: 50px;
    color: var(--color-accent-purple);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.hero-title br {
    display: block;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-offer-note {
    font-size: 0.95rem;
    font-weight: 600;
    color: #c82333;
    margin: 0 0 1rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-buttons .btn i {
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border-light);
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6B4CE6 0%, #8DD4CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.1) 0%, rgba(141, 212, 204, 0.1) 100%);
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #6B4CE6 0%, #8B6AE8 100%);
    color: var(--color-text-inverse);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple-hover);
}

.btn-secondary {
    background: var(--color-background-primary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--color-background-hover);
    border-color: var(--color-primary-main);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-download {
    background: linear-gradient(135deg, #6B4CE6 0%, #8B6AE8 100%);
    color: var(--color-text-inverse);
    width: 100%;
    margin-top: 1rem;
    box-shadow: var(--shadow-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-download i {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Ensure all Font Awesome icons render properly */
i[class*="fa-"] {
    font-style: normal;
}

.btn-download:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple-hover);
}

.btn-download:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--color-background-tertiary);
    color: var(--color-text-muted);
}

/* Contact buttons (macOS/Linux) – brand green */
.btn-download-contact {
    
    color: var(--color-text-inverse) !important;
    box-shadow: 0 4px 12px rgba(45, 148, 136, 0.25);
}

.btn-download-contact:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-main) 100%) !important;
}

/* Pain Points Section */
.pain-points {
    padding: 3rem 0;
    background: var(--color-background-primary);
    border-top: 1px solid var(--color-border-light);
}

.pain-points-intro {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.pain-points-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin: 0 auto 1.5rem;
    padding: 0;
    max-width: 900px;
}

.pain-points-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.pain-points-list li i {
    color: var(--color-accent-error);
    font-size: 1rem;
    opacity: 0.9;
}

.pain-points-cta {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent-purple);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-background-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-main);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #E8E3FC 0%, #E8F7F5 100%);
    border-radius: 20px;
    color: var(--color-accent-purple);
    transition: all 0.2s ease;
}

.feature-icon i {
    font-size: 2.5rem;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #6B4CE6 0%, #8DD4CC 100%);
    color: var(--color-text-inverse);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: var(--color-text-inverse);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Statistics & Analytics Section */
.statistics-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-background-primary) 0%, var(--color-background-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 30%, rgba(107, 76, 230, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(141, 212, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.statistics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.statistics-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.1) 0%, rgba(141, 212, 204, 0.1) 100%);
    border: 1px solid rgba(107, 76, 230, 0.2);
    border-radius: 50px;
    color: var(--color-accent-purple);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.statistics-badge i {
    font-size: 1.1rem;
}

.statistics-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-top: 1.5rem;
}

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

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

.stat-feature-item {
    background: var(--color-background-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-main);
}

.stat-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #E8E3FC 0%, #E8F7F5 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-purple);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-feature-item:hover .stat-feature-icon {
    background: linear-gradient(135deg, #6B4CE6 0%, #8DD4CC 100%);
    color: var(--color-text-inverse);
    transform: scale(1.1) rotate(5deg);
}

.stat-feature-item h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.stat-feature-item p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.screenshots-section {
    margin-top: 4rem;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 3rem;
}

.screenshots-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.screenshots-title i {
    color: var(--color-accent-purple);
    font-size: 1.8rem;
}

.screenshots-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.statistics-screenshots {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.screenshot-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.screenshot-container {
    background: var(--color-background-primary);
    border-radius: 20px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.screenshot-label {
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.08) 0%, rgba(141, 212, 204, 0.08) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--color-border-light);
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 1rem;
}

.screenshot-label i {
    color: var(--color-accent-purple);
    font-size: 1.1rem;
}

.screenshot-caption {
    padding: 1.25rem 1.5rem;
    background: var(--color-background-secondary);
    border-top: 1px solid var(--color-border-light);
}

.screenshot-caption p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    text-align: right;
}

.screenshot-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-main);
}

.screenshot-main {
    min-height: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screenshot-secondary {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.screenshot-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-background-secondary) 0%, var(--color-background-tertiary) 100%);
    color: var(--color-text-tertiary);
    padding: 3rem;
    text-align: center;
}

.screenshot-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.screenshot-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.screenshot-placeholder small {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex: 1;
    min-height: 0;
    background: var(--color-background-primary);
    display: block;
}

.screenshot-container:has(.screenshot-img[src]:not([src=""])) .screenshot-placeholder {
    display: none;
}

.screenshot-container:has(.screenshot-img[src]:not([src=""])) .screenshot-img {
    display: block !important;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--color-background-primary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
}

.about-list {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.about-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-list li i {
    color: var(--color-accent-success);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

/* Font Awesome icon base styles */
.fas, .far, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

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

/* Offer Section */
.offer {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.08) 0%, rgba(141, 212, 204, 0.08) 100%);
    border-top: 1px solid var(--color-border-light);
}

.offer-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.offer-limited {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(220, 53, 69, 0.12);
    color: #c82333;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.35);
    margin-bottom: 1rem;
}

.offer-text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

/* Red countdown timer */
.countdown-wrapper {
    margin: 1.5rem 0 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(220, 53, 69, 0.08);
    border: 2px solid #dc3545;
    border-radius: 12px;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: #c82333;
    margin: 0 0 0.75rem 0;
}

.countdown-timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem 0.5rem;
}

.countdown-block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 2.5rem;
}

.countdown-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #dc3545;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 0.7rem;
    font-weight: 600;
    color: #c82333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0 0.1rem;
}

.countdown-deadline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c82333;
    margin: 0.75rem 0 0 0;
}

.countdown-timer.countdown-finished .countdown-ended {
    font-size: 1.5rem;
    font-weight: 800;
    color: #dc3545;
}

.offer-social {
    font-size: 1rem;
    color: var(--color-text-tertiary);
    margin-bottom: 2rem;
}

.btn-offer {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

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

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: var(--color-background-secondary);
}

.download-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.download-deadline {
    color: #c82333;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: var(--color-background-primary);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.2s ease;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-main);
}

.download-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-purple);
    transition: all 0.2s ease;
}

.download-icon i {
    font-size: 4rem;
}

.download-card:hover .download-icon {
    color: var(--color-primary-main);
    transform: scale(1.1);
}

.download-card:hover .download-icon i {
    color: var(--color-primary-main);
}

.download-card h3 {
    font-size: 1.8rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.download-card p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.download-info {
    margin-top: 1rem;
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

.download-instructions {
    background: var(--color-background-primary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.download-instructions h3 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.download-requirements {
    color: var(--color-text-tertiary);
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    padding: 0.75rem 1rem;
    background: var(--color-background-secondary);
    border-radius: 8px;
    border-right: 3px solid var(--color-primary-main);
}

.download-instructions ol {
    margin-right: 1.5rem;
    line-height: 2;
    color: var(--color-text-secondary);
}

.download-instructions li {
    margin-bottom: 0.8rem;
}

/* Footer */
.footer {
    background: var(--color-background-primary);
    color: var(--color-text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--color-border-light);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.footer-section h3 {
    background: linear-gradient(135deg, #6B4CE6 0%, #8DD4CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

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

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

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--color-accent-purple);
    transform: translateX(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
    color: var(--color-text-tertiary);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.whatsapp-float i {
    font-size: 1.75rem;
}

.whatsapp-float-text {
    position: absolute;
    left: calc(100% + 0.75rem);
    white-space: nowrap;
    background: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
    visibility: visible;
}
/* Footer contact section – prevent text cut-off and align block */
.footer-section-contact {
    min-width: 0;
}

@media (min-width: 500px) {
    .footer-section-contact {
        min-width: 240px;
    }
}

.footer-section-contact .footer-contact-desc {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.footer-follow-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin: 1.25rem 0 0.5rem 0;
}

/* Footer WhatsApp CTA – primary but balanced with social row */
.footer-whatsapp-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    background: #25D366;
    color: #fff !important;
    width: max-content;
    padding: 6px 8px !important;
    border-radius: 4px;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25) !important;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(2, 255, 95, 0.8) !important;
}

.footer-whatsapp-btn i {
    font-size: 1.15rem;
}

/* Footer social links – larger tap targets, clear grouping */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.footer-social-facebook {
    background: #1877F2;
}

.footer-social-facebook:hover {
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
    background: #166ada;
}

.footer-social-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-instagram:hover {
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
    opacity: 0.9;
}

/* Responsive Design */

/* Tablet: single-column statistics screenshots and tighter spacing */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

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

    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .statistics-screenshots {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .screenshot-column {
        flex-direction: column;
        height: auto;
    }

    .screenshot-main {
        min-height: 450px;
        height: auto;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-logo {
        height: 80px;
        margin-bottom: 1.5rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .nav-content {
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-overlay {
        display: block;
    }

    .nav-cta {
        display: none;
    }

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

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

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-radius: 0;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: var(--color-background-hover);
        padding-right: 1.5rem;
        color: var(--color-accent-purple);
    }

    .nav-cta-mobile {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border-light);
        border-bottom: none !important;
    }

    .nav-cta-mobile .btn-nav {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .pain-points-list {
        flex-direction: column;
        align-items: center;
    }

    .countdown-num { font-size: 1.4rem; }
    .countdown-sep { font-size: 1.2rem; }
    .countdown-wrapper { padding: 1rem; }

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

    .statistics-section {
        padding: 4rem 0;
    }

    .statistics-description {
        font-size: 1rem;
    }

    .statistics-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;        
    }

    .screenshots-header {
        margin-bottom: 2rem;
    }

    .screenshots-title {
        font-size: 1.6rem;
    }

    .screenshots-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .statistics-screenshots {
        grid-template-columns: 1fr;
        gap: 1.5rem;        
    }

    .screenshot-column {
        flex-direction: column;
        gap: 1.5rem;
        height: auto;
    }

    .screenshot-main {
        min-height: 400px;
        height: auto;
    }

    .screenshot-secondary {
        min-height: 250px;
        flex: 1;
    }

    .screenshot-label {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .screenshot-caption {
        padding: 1rem 1.25rem;
    }

    .screenshot-caption p {
        font-size: 0.9rem;
    }

    .screenshot-img {
        height: auto;
        object-fit: contain;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.875rem 1.25rem;
        justify-content: center;
    }

    .download-options .btn {
        width: 100%;
    }

    .pain-points,
    .features,
    .about,
    .faq,
    .download {
        padding: 3rem 0;
    }

    .offer {
        padding: 3rem 0;
    }

    .download-instructions {
        padding: 1.5rem;
    }

    .about-list li,
    .faq-item p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .footer-logo {
        height: 50px;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        left: 1.25rem;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float i {
        font-size: 1.6rem;
    }

    .whatsapp-float-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

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

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

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .footer-logo {
        height: 40px;
    }

    .statistics-section {
        padding: 3rem 0;
    }

    .statistics-header {
        margin-bottom: 3rem;
    }

    .statistics-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .statistics-description {
        font-size: 0.95rem;
    }

    .stat-feature-item {
        padding: 1.5rem;
    }

    .stat-feature-item h3 {
        font-size: 1.1rem;
    }

    .screenshots-title {
        font-size: 1.4rem;
    }

    .screenshots-intro {
        font-size: 0.95rem;
    }

    .screenshot-main {
        min-height: 300px;
        height: auto;
    }

    .screenshot-secondary {
        min-height: 200px;
        flex: 1;
    }

    .screenshot-label {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .screenshot-caption {
        padding: 0.875rem 1rem;
    }

    .screenshot-caption p {
        font-size: 0.85rem;
    }

    .screenshot-placeholder {
        padding: 2rem 1rem;
    }

    .screenshot-placeholder i {
        font-size: 3rem;
    }

    .screenshot-placeholder p {
        font-size: 1rem;
    }
}

/* Extra small phones – prevent overflow and improve readability */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        margin-bottom: 1.25rem;
    }

    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-offer-note {
        font-size: 0.85rem;
    }

    .hero-buttons .btn {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .countdown-num {
        font-size: 1.25rem;
    }

    .countdown-unit {
        font-size: 0.6rem;
    }

    .countdown-sep {
        font-size: 1.1rem;
    }

    .countdown-wrapper {
        padding: 0.875rem 1rem;
    }

    .download-card {
        padding: 1.5rem 1.25rem;
    }

    .download-card h3 {
        font-size: 1.5rem;
    }

    .download-icon i {
        font-size: 3rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

/* Safe area insets for notched devices (e.g. iPhone X+) */
@supports (padding: max(0px)) {
    .navbar .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .whatsapp-float {
        bottom: max(1.5rem, env(safe-area-inset-bottom));
        left: max(1.5rem, env(safe-area-inset-left));
    }

    @media (max-width: 768px) {
        .navbar .container {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }

        .container {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }

        .whatsapp-float {
            bottom: max(1.25rem, env(safe-area-inset-bottom));
            left: max(1.25rem, env(safe-area-inset-left));
        }
    }

    @media (max-width: 360px) {
        .container {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }

        .whatsapp-float {
            bottom: max(1rem, env(safe-area-inset-bottom));
            left: max(1rem, env(safe-area-inset-left));
        }
    }
}



