@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --navy: #121212;
    --navy-light: #1e1e1e;
    --navy-lighter: #333333;
    --red: #ff3c3c;
    --red-light: #ff6b6b;
    --red-dark: #e62e2e;
    --emerald: #10b981;
    --emerald-light: #34d399;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --danger: #ef4444;
    --yellow: #f59e0b;
    --purple: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.8);
    --glass-border-light: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 60, 60, 0.3);
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.landing {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.landing h1,
.landing h2,
.landing h3,
.landing h4,
.landing h5,
.landing h6 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

.landing p {
    font-family: Inter, sans-serif;
    line-height: 1.7;
    color: var(--gray-500);
}

.landing a {
    text-decoration: none;
    transition: var(--transition);
}

.landing img {
    max-width: 100%;
    height: auto;
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: rgba(255, 60, 60, 0.2) 0px 0px 20px;
    }

    50% {
        box-shadow: rgba(255, 60, 60, 0.4) 0px 0px 40px;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0px;
    }

    100% {
        background-position: 200% 0px;
    }
}

@keyframes bounce-soft {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0px);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: var(--navy);
}

.section-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a1a40 100%);
}

.section-light {
    background: var(--gray-50);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-badge-dark {
    background: rgba(255, 60, 60, 0.15);
    border-color: rgba(255, 60, 60, 0.3);
    color: var(--red-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-dark {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0px auto;
    line-height: 1.7;
}

.section-subtitle-dark {
    color: var(--gray-400);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: rgba(255, 60, 60, 0.3) 0px 4px 15px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: rgba(255, 60, 60, 0.4) 0px 8px 25px;
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--red);
    color: var(--white);
}

.btn-emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
    color: var(--white);
    box-shadow: rgba(16, 185, 129, 0.3) 0px 4px 15px;
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: rgba(16, 185, 129, 0.4) 0px 8px 25px;
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    padding: 20px 0px;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 30px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: Inter, sans-serif;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-text:hover {
    opacity: 0.9;
    text-decoration: none;
}

.logo-white {
    color: var(--white);
}

.logo-red {
    color: rgb(255, 60, 60);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    margin-left: 8px;
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: var(--red-dark) !important;
}

.country-select {
    position: relative;
    margin-left: 12px;
}

.country-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    color: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.country-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0px;
    background: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 160px;
    display: none;
    box-shadow: var(--shadow-2xl);
    z-index: 100;
}

.country-dropdown.active {
    display: block;
}

.country-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    font-size: 0.85rem;
}

.country-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(12, 12, 12) 0%, rgb(21, 21, 21) 30%, rgb(26, 26, 26) 60%, rgb(28, 28, 28) 100%);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    animation: 8s ease-in-out 0s infinite normal none running float;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    border-radius: 50%;
    animation: 10s ease-in-out 0s infinite reverse none running float;
}

.hero-pattern {
    position: absolute;
    inset: 0px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: 0.8s ease-out 0s 1 normal none running fadeInLeft;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--emerald-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-label i {
    font-size: 0.7rem;
}

.landing .hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: rgba(0, 0, 0, 0.5) 0px 2px 15px;
}

.hero-title .highlight-text {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgb(203, 213, 225);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.hero-trust i {
    color: var(--emerald);
    font-size: 0.8rem;
}

.hero-visual {
    position: relative;
    animation: 0.8s ease-out 0s 1 normal none running fadeInRight;
}

.hero-image-wrapper {
    position: relative;
}

.landing .hero-image {
    width: 100%;
    max-width: 260px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    animation: 6s ease-in-out 0s infinite normal none running float;
    margin: 0px auto;
    display: block;
}

.hero-float-card {
    position: absolute;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: 3s ease-in-out 0s infinite normal none running bounce-soft;
    box-shadow: var(--shadow-lg);
}

.hero-float-card.pos-1 {
    bottom: 20%;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-card.pos-2 {
    top: 10%;
    right: -20px;
    animation-delay: 1.5s;
}

.hero-float-card.pos-3 {
    top: 17%;
    left: -10px;
    animation-delay: 0.75s;
}

.float-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.float-icon-red {
    background: rgba(255, 255, 255, 0.08);
    color: var(--red-light);
}

.float-icon-emerald {
    background: rgba(16, 185, 129, 0.2);
    color: var(--emerald-light);
}

.float-text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
}

.float-text span {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.trusted {
    background: var(--white);
    padding: 50px 0px;
    border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 50px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.trusted-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.stats {
    padding: 80px 0px;
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0px auto 16px;
}

.stat-icon-red {
    background: rgba(255, 60, 60, 0.1);
    color: var(--red);
}

.stat-icon-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
}

.stat-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.stat-icon-yellow {
    background: rgba(245, 158, 11, 0.1);
    color: var(--yellow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

.how {
    padding: var(--section-padding);
    background: var(--white);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.how-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: var(--gray-300);
    z-index: 0;
}

.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.how-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 24px;
    box-shadow: rgba(255, 60, 60, 0.3) 0px 4px 15px;
}

.how-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0px auto 20px;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.how-icon-emerald,
.how-icon-red,
.how-icon-purple {
    color: rgb(64, 64, 64);
}

.how-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-step p {
    font-size: 0.95rem;
    color: var(--gray-500);
    max-width: 280px;
    margin: 0px auto;
}

.features {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-icon-red {
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.1) 0%, rgba(255, 60, 60, 0.05) 100%);
    color: var(--red);
}

.feature-icon-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--emerald);
}

.feature-icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--purple);
}

.feature-icon-yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: var(--yellow);
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0px;
}

.screenshots {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgb(21, 21, 21) 0%, rgb(26, 26, 26) 100%);
    overflow: hidden;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.screenshots-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.screenshots-content p {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.screenshots-carousel-wrapper {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.pricing {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 4px;
    margin-bottom: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    font-family: Inter, sans-serif;
}

.pricing-toggle-btn.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    outline: none;
}

.pricing-toggle-btn:hover:not(.active) {
    color: var(--navy);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--red);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-discount {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    min-height: 22px;
}

.pricing-discount:empty,
.pricing-discount-hidden {
    visibility: hidden;
}

.pricing-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
}

.pricing-price span.currency-prefix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-right: 4px;
}
.pricing-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 24px 0px;
}

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

.pricing-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px dashed var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9rem;
}

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

.pricing-features li span:last-child {
    font-weight: 600;
    color: var(--navy);
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
    }
    
    /* Plan name wrapper with tooltip */
    .pricing-name-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .pricing-tooltip-trigger {
        position: relative;
        cursor: pointer;
        color: var(--gray-300);
        font-size: 0.85rem;
        transition: color 0.2s;
    }
    
    .pricing-tooltip-trigger:hover {
        color: var(--purple);
    }
    
    .pricing-tooltip {
        display: none;
        position: absolute;
        bottom: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        background: var(--navy);
        color: var(--white);
        font-size: 0.78rem;
        font-weight: 400;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        line-height: 1.4;
        width: 200px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 50;
    }
    
    .pricing-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: var(--navy);
    }
    
    .pricing-tooltip-trigger:hover .pricing-tooltip {
        display: block;
    }
    
    /* Price per scan line */
    .pricing-per-scan {
        font-size: 0.78rem;
        color: var(--gray-400);
        margin-top: 6px;
        margin-bottom: 2px;
    }
    
    .pricing-per-scan span {
        font-weight: 700;
        color: var(--emerald);
    }
    
    /* Savings badge */
    .pricing-savings {
        display: inline-block;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
        color: var(--emerald);
        font-size: 0.72rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: var(--radius-full);
        margin-top: 8px;
        border: 1px solid rgba(16, 185, 129, 0.18);
    }
    
    /* Slot spacer for consistent card alignment */
    .pricing-savings-slot {
        min-height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Additional credits section */
    .extra-credits {
        margin-top: 60px;
        text-align: center;
    }
    
    .extra-credits .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(139, 92, 246, 0.08);
        color: var(--purple);
        font-size: 0.78rem;
        font-weight: 700;
        padding: 6px 16px;
        border-radius: var(--radius-full);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    
    .extra-credits-title {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 8px;
    }
    
    .extra-credits-subtitle {
        font-size: 0.95rem;
        color: var(--gray-500);
        max-width: 560px;
        margin: 0 auto 36px;
        line-height: 1.7;
    }
    
    /* Credit pack cards grid */
    .credits-cards-grid {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .credit-pack-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-lg);
        padding: 28px 24px;
        min-width: 200px;
        flex: 1;
        max-width: 240px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }
    
    .credit-pack-card:hover {
        border-color: var(--purple);
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
        transform: translateY(-4px);
    }
    
    .credit-pack-amount {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .credit-pack-amount i {
        color: var(--purple);
        font-size: 1.2rem;
    }
    
    .credit-pack-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--gray-400);
        font-weight: 600;
        margin-bottom: 16px;
    }
    
    .credit-pack-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--emerald);
        margin-bottom: 4px;
    }
    
    .credit-pack-unit {
        font-size: 0.75rem;
        color: var(--gray-400);
    }
    
    .credits-table-note {
        font-size: 0.85rem;
        color: var(--gray-400);
        margin-top: 16px;
        font-style: italic;
    }
    
    /* Friction reduction trust signals */
    .pricing-trust {
        display: flex;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
        margin-top: 40px;
        padding: 28px 0;
        border-top: 1px solid var(--gray-200);
    }
    
    .pricing-trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--gray-700);
}

.pricing-trust-item i {
    color: var(--emerald);
    font-size: 1.1rem;
}
.testimonials {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--yellow);
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    filter: brightness(0) invert(1);
}

.testimonial-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 700;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.download {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgb(21, 21, 21) 0%, rgb(26, 26, 26) 60%, rgb(30, 30, 30) 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 60, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0px auto;
}

.download-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download-content p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 36px;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.store-btn img {
    height: 32px;
}

.store-btn-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
    text-align: left;
}

.store-btn-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.download-coming-soon {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0px auto;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: Inter, sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--red);
    box-shadow: rgba(255, 60, 60, 0.1) 0px 0px 0px 3px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 24px;
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-size: 0.9rem;
    display: none;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--emerald);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.footer {
    background: var(--navy);
    padding: 60px 0px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 320px;
}

.footer-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    padding: 20px 0px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0px;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin: 0px auto 36px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
    }

    .hero-image {
        max-width: 350px;
    }

    .hero-float-card {
        display: none;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .how-grid::before {
        display: none;
    }

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

    .feature-icon {
        display: none;
    }    
    .screenshots-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .country-select-mobile {
        display: block;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0px 60px;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0px auto;
    }

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

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

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

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

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

    .download-content h2 {
        font-size: 1.8rem;
    }

    .trusted-logos {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .trusted-logos img {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

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

    .trusted-logos {
        gap: 30px;
    }

    .trusted-logos img {
        height: 28px;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0px;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 24px;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.country-select-mobile {
    display: none;
    position: relative;
}

.mobile-nav.active .country-select-mobile {
    display: block !important;
}

.country-select-mobile .country-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    color: var(--white);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.country-select-mobile .country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgb(30, 30, 30);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 180px;
    display: none;
    box-shadow: var(--shadow-2xl);
    z-index: 100;
}

.country-select-mobile .country-dropdown.active {
    display: block;
}

.country-select-mobile .country-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--gray-300);
    font-size: 0.9rem;
}

.country-select-mobile .country-dropdown a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

#freeTrialModal .modal-dialog {
    max-width: 480px;
    margin: 1.75rem auto;
}

#freeTrialModal .modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 25px 60px;
}

#freeTrialModal .modal-backdrop,
.modal-backdrop {
    background: rgba(0, 0, 0, 0.6);
}

.modal-header {
    background: var(--navy);
    padding: 32px 32px 28px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--red);
    color: var(--white);
}

.modal-header .close {
    position: absolute;
    top: 22px;
        right: 22px;
    color: var(--gray-400);
    opacity: 1;
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: none;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

.modal-header .close:hover {
    color: var(--white);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 16px;
    font-size: 1.6rem;
    color: var(--emerald);
}

.modal-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0px;
    color: var(--white) !important;
}

.modal-body {
    padding: 32px;
    text-align: center;
}

.modal-months {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.modal-months-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--red);
    font-family: Inter, sans-serif;
    line-height: 1;
}

.modal-months-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-500);
}

.modal-desc {
    font-family: Inter, sans-serif;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.modal-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.modal-feature i {
    color: var(--emerald);
    font-size: 0.75rem;
}

.modal-footer {
    padding: 0px 32px 32px;
    text-align: center;
    border: none;
}

.modal-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    #freeTrialModal .modal-dialog {
        max-width: calc(100% - 32px);
        margin: 1rem auto;
    }

    .modal-header {
        padding: 24px 20px 20px;
    }

    .modal-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .modal-body {
        padding: 24px 20px;
    }

    .modal-months-number {
        font-size: 3rem;
    }

    .modal-desc {
        font-size: 0.85rem;
    }

    .modal-features {
        gap: 12px;
    }

    .modal-feature {
        font-size: 0.75rem;
    }

    .modal-footer {
        padding: 0px 20px 24px;
    }

    .modal-footer .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

#preloader-active {
    position: fixed;
    inset: 0px;
    z-index: 99999;
    background: rgb(18, 18, 18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader-active.preloader-done {
    opacity: 0;
    visibility: hidden;
}

.preloader {
    text-align: center;
}

.preloader-logo {
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}
.preloader-text {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.legal-page {
    padding: 140px 0px 80px;
    min-height: 100vh;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy);
}

.legal-content {
    max-width: 800px;
    margin: 0px auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

.legal-content b,
.legal-content strong {
    color: var(--navy);
    font-weight: 700;
}

.legal-content a {
    color: var(--red);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--red-dark);
}

.logo-text {
    font-family: Inter, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}

.logo-white {
    color: rgb(255, 255, 255);
}

.logo-red {
    color: var(--red);
}