.landing-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            /*padding: 20px 0;*/
}
.landing-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
}
.hero-section {
            display: flex;
            align-items: center;        /* vertical centering */
            justify-content: center;
            gap: 60px;
            color: white;
            padding: 60px 20px;
            text-align: center;
}
/* Left Image */
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.hero-image img {
            max-width: 80px;
            height: auto;
            /*border-radius: 50%;*/
}
.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;     /* Adjust size as needed */
    height: 190px;    /* Makes it a square */
    background-color: rgba(255, 255, 255, 0.59); /* White with 59% opacity */
    border-radius: 16px; /* Optional: rounded corners */
    /*padding: 10px;*/
    box-sizing: border-box;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Preserves aspect ratio */
    filter: brightness(1); /* Optional: enhance visibility */
}
.by-logo {
    display: flex;
    align-items: center;
    gap: 2px; /* Space between "by" and logo */
    margin-top: 3px;
    align-self: flex-end;
    margin-right: 7px;
}
.by-logo span {
    font-size: 0.7rem;
    color: #ffffff;
    font-style: italic;
    white-space: nowrap;
}
.small-logo-img {
    height: 24px; /* Adjust based on your logo */
    width: auto;
}
/* Right Content */
.hero-text {
            max-width: 600px;
}
.hero-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin: 0 0 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
            font-size: 1.5rem;
            margin: 0 0 40px;
            font-weight: 400;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
}
.feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            backdrop-filter: blur(4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
}
.feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #659fde;
}
.feature-title {
            font-size: 1.5rem;
            margin: 0 0 15px;
            color: #333;
        }
.feature-desc {
            color: #666;
            line-height: 1.6;
}
.cta-section {
            text-align: center;
            padding: 60px 20px;
}
.cta-title {
            font-size: 2.5rem;
            margin: 0 0 20px;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 30px 0;
}
.btn-primary {
            background: linear-gradient(135deg, #0093e9, #80d0c7);
            color: white;
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-width: 200px;
}
.btn-secondary {
            background: transparent;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            min-width: 200px;
}
.btn-resend {
            background: linear-gradient(135deg, #cccdcd, #e4e6e5);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            min-width: 200px;
}
.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
}
.btn-resend:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
}
/* Pricing Section */
.pricing-section {
            text-align: center;
            /*padding: 30px 20px;*/
}
.pricing-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 30px;
            margin: 0 auto;
            max-width: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
}
.price {
            font-size: 3.5rem;
            font-weight: 700;
            color: #659fde;
            margin: 15px 0;
}
.price-period {
            font-size: 1.1rem;
            color: #666;
}
.price-features {
            list-style: none;
            padding: 0;
            margin: 25px 0;
            text-align: left;
}
.price-features li {
            padding: 8px 0;
            color: #333;
            border-bottom: 1px solid #eee;
}
.price-features li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            margin-right: 10px;
}
.login-link {
            text-align: center;
            /*margin-top: 20px;*/
            color: white;
}
.login-link a {
            color: #659fde;
            text-decoration: underline;
            font-weight: 500;
}
/* ---------- MODERN MODAL ---------- */
.modern-modal .modal-dialog {
    max-width: 850px;
}

.modern-modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Header */
.modern-modal-header {
    background: linear-gradient(135deg, #0093e9, #80d0c7);
    color: white;
    padding: 16px 22px;
    border-bottom: none;
}

.modern-modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Body */
.modern-modal-body {
    background: #f9fafb;
    padding: 24px 28px;
}

/* Lines between rows */
.modern-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.modern-row label {
    margin-bottom: 6px;
    color: #444;
    font-size: 0.95rem;
}

/* Inputs */
.modern-input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d8d8d8;
    background: white;
    font-size: 0.95rem;
    transition: 0.25s;
}

.modern-input:focus {
    border-color: #0093e9;
    box-shadow: 0 0 0 3px rgba(0,147,233,0.25);
    outline: none;
}
.processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processing-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    max-width: 320px;
}

.processing-box p {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #555;
}

.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.d-none {
    display: none;
}
.promo-section {
            text-align: center;
            padding: 60px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafa;
            max-width: 900px;
            margin: 0 auto;
}

.promo-section h2 {
            color: #1a1a1a;
            margin-bottom: 12px;
}

.promo-section p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 30px;
}

/* Video Wrapper */
.demo-video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.65);
    background: #000;
}

.demo-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}


.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 30px 0;
}
/* Modern horizontal menu */
.modern-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    /*gap: 10px;*/
}

.modern-menu .nav-item {
    display: inline-flex;
}

.modern-menu .nav-link {
    color: #ffffff !important;
    padding: 8px 8px;
    border-radius: 999px;
    /*font-weight: 500;*/
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.modern-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    text-decoration: none;
}

#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.25s ease;
}

#backToTop:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
}

.feature-icon.logo-icon {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    /*background: #f5f5f0;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0 auto; /* centers the whole icon block */
}

.feature-icon.logo-icon img {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    display: block;
}


/******************** Mobile adjustments ****************************/
@media (max-width: 768px) {
    .hero-title {
                font-size: 1.8rem;
    }
    .hero-subtitle {
                font-size: 1.2rem;
    }
    .hero-section {
                flex-direction: column;
                gap: unset;
    }
    .logo-container {
        width: 140px;
        height: 140px;
    }
    .cta-buttons {
                flex-direction: column;
                align-items: center;
    }
}