:root {
    --primary-black: #000000;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f8f9fa;
    --border-gray: #dee2e6;
    --primary-blue: #0066cc;
    --success-green: #28a745;
    --gold: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary-black);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black) !important;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 20px;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    padding: 8px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--primary-black);
    color: white;
}

.btn-signup {
    background-color: var(--primary-black);
    color: white;
    padding: 8px 24px;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background-color: var(--dark-gray);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Search Bar */
.search-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-box {
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 10px;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    border: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: var(--primary-black);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--dark-gray);
    transform: scale(1.05);
}

.search-helper {
    text-align: center;
    margin-top: 1rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--light-gray);
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.step-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-black);
    transform: scale(1.05);
}

.pricing-card.featured .badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-black);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

.btn-choose-plan {
    width: 100%;
    padding: 15px;
    background: var(--primary-black);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-choose-plan:hover {
    background: var(--dark-gray);
    transform: scale(1.02);
}

/* Verification Levels */
.verification-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.verification-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.verification-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.verification-icon {
    font-size: 2.5rem;
    margin-right: 2rem;
    min-width: 60px;
}

.verification-icon.gray {
    color: #999;
}

.verification-icon.blue {
    color: var(--primary-blue);
}

.verification-icon.gold {
    color: var(--gold);
}

.verification-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verification-content p {
    color: var(--medium-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary-black);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--primary-black);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #333;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: #444;
}

.language-selector i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* Large Tablets & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    body {
        font-size: 15px;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
    }
    
    .btn-login,
    .btn-signup {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .btn-signup {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    /* Search */
    .search-input {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    /* Stats */
    .stats-container {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Sections */
    .features-section,
    .how-it-works,
    .pricing-section,
    .verification-section,
    .cta-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    /* Steps */
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .plan-price span {
        font-size: 1.1rem;
    }
    
    .btn-choose-plan {
        font-size: 1rem;
    }
    
    /* Verification */
    .verification-card {
        padding: 1.5rem;
    }
    
    .verification-icon {
        font-size: 2rem;
        margin-right: 1.5rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 12px 35px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.6rem 0;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-right: 8px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-login,
    .btn-signup {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Search Box */
    .search-box {
        flex-direction: column;
        padding: 15px;
        border-radius: 30px;
    }
    
    .search-input {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .search-btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .search-helper {
        font-size: 0.8rem;
    }
    
    /* Stats */
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .features-section,
    .how-it-works,
    .pricing-section,
    .verification-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* Steps */
    .step-card {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    .plan-price {
        font-size: 2.2rem;
    }
    
    .plan-price span {
        font-size: 1rem;
    }
    
    .plan-features {
        margin: 1.5rem 0;
    }
    
    .plan-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .btn-choose-plan {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Verification */
    .verification-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .verification-card:hover {
        transform: translateX(0) translateY(-5px);
    }
    
    .verification-icon {
        font-size: 2.2rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .verification-content h4 {
        font-size: 1rem;
    }
    
    .verification-content p {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        text-align: center;
    }
    
    .language-selector {
        padding: 7px 12px;
        font-size: 0.85rem;
    }
}

/* Small Mobile Devices (480px - 575px) */
@media (max-width: 575px) {
    body {
        font-size: 13px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .step-card,
    .pricing-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .feature-title,
    .step-title {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
        border-radius: 30px;
    }
}

/* Extra Small Mobile Devices (Below 400px) */
@media (max-width: 399px) {
    body {
        font-size: 12px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-right: 6px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .search-box {
        padding: 12px;
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .features-section,
    .how-it-works,
    .pricing-section,
    .verification-section {
        padding: 50px 0;
    }
    
    .feature-card,
    .step-card,
    .pricing-card,
    .verification-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.75rem;
    }
    
    .plan-features li {
        font-size: 0.85rem;
    }
    
    .btn-choose-plan,
    .btn-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .cta-title {
        font-size: 1.35rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .search-box {
        flex-direction: row;
    }
    
    .search-input {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .search-btn {
        width: auto;
    }
    
    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 30%;
    }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 3rem;
    }
    
    .pricing-card {
        padding: 3.5rem 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn-login,
    .btn-signup,
    .search-container,
    .btn-choose-plan,
    .btn-cta,
    footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-section,
    .features-section,
    .how-it-works,
    .pricing-section,
    .verification-section,
    .cta-section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode
    body {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .navbar {
        background-color: #2d2d2d;
    }
    
    .feature-card,
    .pricing-card,
    .verification-card {
        background-color: #2d2d2d;
        border-color: #404040;
    }
    */
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile */
    .btn-login,
    .btn-signup,
    .search-btn,
    .btn-choose-plan,
    .btn-cta {
        min-height: 44px;
        min-width: 44px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 1rem;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .pricing-card:hover,
    .verification-card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .btn-login:active,
    .btn-signup:active,
    .search-btn:active,
    .btn-choose-plan:active,
    .btn-cta:active {
        transform: scale(0.95);
    }
}

/* Container Padding Adjustments for Mobile */
@media (max-width: 575px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Improve Readability on Small Screens */
@media (max-width: 767px) {
    p,
    .feature-description,
    .step-description,
    .verification-content p {
        line-height: 1.7;
    }
    
    /* Better spacing for mobile reading */
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.75rem;
    }
}

/* Tablet Landscape Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        padding: 120px 0 70px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .stats-container {
        gap: 2.5rem;
    }
}

/* iPad Pro and Large Tablets */
@media (min-width: 1024px) and (max-width: 1366px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

/* Prevent Layout Shift on Mobile */
@media (max-width: 767px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure cards don't overflow */
    .feature-card,
    .pricing-card,
    .step-card,
    .verification-card {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Safe Area for Notched Devices (iPhone X+) */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific */
    .search-input,
    input,
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on focus */
    }
}

/* Performance Optimization for Animations on Mobile */
@media (max-width: 767px) {
    .feature-card,
    .pricing-card,
    .verification-card,
    .btn-login,
    .btn-signup,
    .btn-cta,
    .search-btn {
        will-change: auto;
    }
    
    /* Simplify hover effects on mobile */
    .feature-card:hover,
    .pricing-card:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
}

















/* Subscription Badge */
.subscription-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Pricing Card Enhancements */
.pricing-card {
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.current-plan-badge {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}