/* ============================================================
   RentGuide.gr — assets/css/landing.css
   Φάκελος: /rentguide/assets/css/landing.css
   ============================================================ */

/* ===== RESET LANDING ===== */
.landing { background: #fff; }

/* ===== NAV ===== */
.land-nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 200;
}

.land-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.land-logo {
    font-size: 20px;
    font-weight: 800;
    color: #1a3c5e;
    text-decoration: none;
    letter-spacing: -.3px;
}

.land-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.land-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color .2s;
}

.land-nav-links a:hover { color: #1a3c5e; }

.land-nav-login {
    color: #1a3c5e !important;
    font-weight: 600 !important;
}

.land-nav-cta {
    background: #1a3c5e;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700 !important;
    transition: background .2s !important;
}

.land-nav-cta:hover { background: #2a5a8e !important; }

/* ===== CONTAINER ===== */
.land-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.land-hero {
    background: linear-gradient(135deg, #1a3c5e 0%, #2a5a8e 100%);
    color: #fff;
    padding: 30px 0 30px;
    overflow: hidden;
}

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

.land-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.land-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

.land-hero-accent { color: #e8a020; }

.land-hero-sub {
    font-size: 17px;
    opacity: .85;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.land-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Phone mockup */
.land-hero-visual { display: flex; justify-content: center; align-items: center; }

.land-phone-mock {
    width: 240px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    overflow: hidden;
    border: 6px solid #e5e7eb;
}

.land-phone-screen { padding: 16px; }

.land-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.land-mock-logo { font-size: 13px; font-weight: 800; color: #1a3c5e; }
.land-mock-flags { font-size: 11px; letter-spacing: 1px; }
.land-mock-title { font-size: 16px; font-weight: 800; color: #1f2937; margin-bottom: 4px; }

.land-mock-plate {
    display: inline-block;
    background: #1a3c5e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.land-mock-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    overflow-x: auto;
}

.land-mock-tabs span { flex-shrink: 0; }
.land-mock-tabs span.active { color: #1a3c5e; border-bottom: 2px solid #1a3c5e; padding-bottom: 2px; }

.land-mock-contact { display: flex; gap: 8px; }

.land-mock-btn-call {
    flex: 1;
    background: #1a3c5e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.land-mock-btn-wa {
    flex: 1;
    background: #25d366;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

/* ===== SECTIONS ===== */
.land-section { padding: 22px 0; }
.land-section-alt { background: #f8fafc; }

.land-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #1a3c5e;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

.land-section-sub {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
}

/* ===== FEATURES GRID ===== */
.land-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.land-feature {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border: 1px solid #e5e7eb;
    transition: box-shadow .2s, transform .2s;
}

.land-feature:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }

.land-feature-icon { font-size: 32px; margin-bottom: 12px; }
.land-feature h3 { font-size: 16px; font-weight: 700; color: #1a3c5e; margin-bottom: 8px; }
.land-feature p  { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* ===== STEPS ===== */
.land-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.land-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.land-step-num {
    width: 44px;
    height: 44px;
    background: #1a3c5e;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.land-step h3 { font-size: 16px; font-weight: 700; color: #1a3c5e; margin-bottom: 8px; }
.land-step p  { font-size: 14px; color: #6b7280; line-height: 1.6; }

.land-step-arrow {
    font-size: 24px;
    color: #d1d5db;
    flex-shrink: 0;
}

/* ===== LANGUAGES ===== */
.land-langs {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.land-lang {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

/* ===== PRICING ===== */
.land-pricing-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
}

.land-cycle {
    padding: 8px 20px;
    border: none;
    border-radius: 7px;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all .15s;
}

.land-cycle.active {
    background: #fff;
    color: #1a3c5e;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.land-save-badge {
    font-size: 11px;
    background: #10b981;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.land-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.land-plan {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .2s;
}

.land-plan:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.land-plan-featured {
    border-color: #1a3c5e;
    box-shadow: 0 4px 20px rgba(26,60,94,.15);
}

.land-plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a3c5e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.land-plan-name  { font-size: 20px; font-weight: 800; color: #1a3c5e; margin-bottom: 8px; }
.land-plan-price { font-size: 36px; font-weight: 900; color: #1f2937; margin-bottom: 4px; }
.land-plan-price small { font-size: 16px; font-weight: 400; color: #6b7280; }
.rg-disc-price-wrap { margin-bottom: 4px; }
.rg-disc-orig { font-size: 16px; font-weight: 400; color: #9ca3af; text-decoration: line-through; line-height: 1.3; }
.rg-disc-orig small { font-size: 13px; color: #9ca3af; }
.rg-disc-new { font-size: 36px; font-weight: 900; line-height: 1.1; }
.rg-disc-new small { font-size: 16px; font-weight: 400; }

.land-plan-features {
    list-style: none;
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
    flex: 1;
}

/* ===== BUTTONS ===== */
.land-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    background: #e8a020;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.land-btn-primary:hover { background: #d08010; text-decoration: none; transform: translateY(-1px); }

.land-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: background .2s;
}

.land-btn-ghost:hover { background: rgba(255,255,255,.25); text-decoration: none; }

.land-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    background: #fff;
    color: #1a3c5e;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #1a3c5e;
    transition: all .15s;
}

.land-btn-outline:hover { background: #1a3c5e; color: #fff; text-decoration: none; }

.land-btn-block { display: block; width: 100%; text-align: center; justify-content: center; }
.land-btn-lg    { padding: 16px 40px; font-size: 17px; }

/* ===== CTA ===== */
.land-cta {
    background: linear-gradient(135deg, #1a3c5e, #2a5a8e);
    color: #fff;
    padding: 30px 0;
}

.land-cta h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.land-cta p  { font-size: 17px; opacity: .85; margin-bottom: 28px; }

/* ===== PAYMENT METHODS ===== */
.land-payment-methods {
    margin-top: 48px;
    text-align: center;
}

.land-payment-methods h3 { font-size: 18px; font-weight: 700; color: #1a3c5e; margin-bottom: 20px; }

.land-payment-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.land-payment-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 200px;
}

.land-payment-item strong { font-size: 15px; color: #1f2937; }
.land-payment-item small  { font-size: 12px; color: #6b7280; text-align: center; }

/* ===== PRICING FAQs ===== */
.land-faq-section { margin-top: 56px; }

.land-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.land-faq-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
}

.land-faq-item strong { display: block; font-size: 14px; color: #1a3c5e; margin-bottom: 6px; }
.land-faq-item p      { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* ===== AUTH ===== */
.land-auth {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8fafc;
}

.land-auth-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.land-auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.land-auth-logo a {
    font-size: 22px;
    font-weight: 800;
    color: #1a3c5e;
    text-decoration: none;
}

.land-auth-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a3c5e;
    text-align: center;
    margin-bottom: 6px;
}

.land-auth-sub {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
}

.land-auth-form { margin-top: 24px; }

.land-field { margin-bottom: 16px; }

.land-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.land-field input {
    width: 100%;
    padding: 11px 14px;
    font-size: 15px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    transition: border-color .2s;
    -webkit-appearance: none;
}

.land-field input:focus { outline: none; border-color: #1a3c5e; }

.land-alert {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.land-alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.land-alert-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.land-terms {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

.land-terms a { color: #1a3c5e; }

.land-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.land-auth-footer a { color: #1a3c5e; font-weight: 600; }

/* ===== FOOTER ===== */
.land-footer {
    background: #111827;
    color: #9ca3af;
}

.land-footer-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.land-footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 16px;
    letter-spacing: .3px;
}

.land-footer-link {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .15s;
}
.land-footer-link:hover { color: #fff; }

.land-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
}
.land-footer-contact-item a { color: #9ca3af; text-decoration: none; }
.land-footer-contact-item a:hover { color: #fff; }

.land-footer-legal {
    border-top: 1px solid #1f2937;
    padding: 16px 24px;
}
.land-footer-legal-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}
.land-footer-legal-inner a { color: #9ca3af; text-decoration: none; }
.land-footer-legal-inner a:hover { color: #fff; }
.land-footer-legal-inner span { color: #4b5563; }

.land-footer-copy-bar {
    border-top: 1px solid #1f2937;
    padding: 16px 24px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .land-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .land-footer-top { grid-template-columns: 1fr; padding: 32px 20px; }
    .land-footer-legal-inner { justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .land-hero .land-container { grid-template-columns: 1fr; }
    .land-hero-visual { display: none; }
    .land-hero-title  { font-size: 32px; }
    .land-features-grid { grid-template-columns: repeat(2, 1fr); }
    .land-steps { flex-direction: column; }
    .land-step-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
    .land-features-grid { grid-template-columns: 1fr; }
    .land-faq-grid      { grid-template-columns: 1fr; }
    .land-footer-inner  { flex-direction: column; text-align: center; }
    .land-nav-links a:not(.land-nav-cta):not(.land-nav-login) { display: none; }
    .land-auth-box { padding: 28px 20px; }

    /* --- NAV OVERFLOW FIX (mobile) --- */
    .land-nav-inner {
        padding: 0 14px;
        gap: 10px;
        min-width: 0;          /* επιτρέπει στα flex children να μικρύνουν */
    }
    .land-logo-img { height: 40px; }          /* από 55px */
    .land-nav-links { gap: 12px; min-width: 0; }
    .land-account-btn {
        padding: 7px 11px;
        font-size: 12px;
        max-width: 100%;
    }
    /* dropdown να μένει μέσα στην οθόνη */
    .land-account-menu { right: 0; left: auto; }
}

/* --- Πολύ στενές οθόνες --- */
@media (max-width: 360px) {
    .land-nav-inner { padding: 0 10px; }
    .land-logo-img  { height: 34px; }
    .land-account-btn { padding: 6px 9px; font-size: 11px; }
}

/* Δίχτυ ασφαλείας: ποτέ οριζόντιο scroll στο landing */
html, body.landing { overflow-x: hidden; }

/* ===== LANG SWITCHER (landing) ===== */
.land-lang-switcher {
    display: flex;
    gap: 4px;
    margin-left: 8px;
    border-left: 1px solid #e5e7eb;
    padding-left: 12px;
}

.land-lang-btn {
    font-size: 20px;
    opacity: .45;
    text-decoration: none;
    transition: opacity .2s;
    line-height: 1;
}

.land-lang-btn:hover,
.land-lang-btn.active { opacity: 1; text-decoration: none; }

/* ===== REGISTER WIDE ===== */
.land-auth-wide { align-items: flex-start; padding: 40px 20px; }

.land-auth-box-wide {
    max-width: 640px;
}

/* Trial banner */
.land-trial-banner {
    background: #fef9ec;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #92400e;
    margin-bottom: 20px;
    text-align: center;
}

.land-trial-note {
    background: #fef9ec;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #92400e;
    margin: 8px 0 12px;
}

/* Billing toggle */
.land-billing-toggle {
    display: flex;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.land-billing-btn {
    flex: 1;
    padding: 9px;
    border: none;
    background: #f9fafb;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
}

.land-billing-btn.active {
    background: #1a3c5e;
    color: #fff;
}

/* Plan picker */
.land-plan-pick {
    display: grid;
    gap: 10px;
}

.land-plan-opt {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
    display: block;
}

.land-plan-opt input { display: none; }

.land-plan-opt:hover { border-color: #1a3c5e; }

.land-plan-opt.selected {
    border-color: #1a3c5e;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}

.land-plan-opt-name {
    font-size: 15px;
    font-weight: 800;
    color: #1a3c5e;
    margin-bottom: 6px;
}

.land-plan-opt-price {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
}

.land-plan-opt-price small {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

.land-plan-opt-after {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 6px;
}

.land-plan-opt-vehicles {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* ===== EARLY ADOPTER BANNER ===== */
.land-early-banner {
    background: linear-gradient(135deg, #1a3c5e, #2a5a8e);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 500;
    flex-wrap: wrap;
    position: relative;
}

.land-early-btn {
    background: #e8a020;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

.land-early-btn:hover { background: #d08010; text-decoration: none; }

.land-early-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .2s;
}

.land-early-close:hover { color: #fff; }

/* ===== ACCOUNT DROPDOWN ===== */
.land-account-dropdown {
    position: relative;
}

.land-account-btn {
    background: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1a3c5e;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}

.land-account-btn:hover {
    background: #f8fafc;
    border-color: #1a3c5e;
}

.land-account-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    min-width: 200px;
    z-index: 300;
    overflow: hidden;
}

.land-account-menu.open { display: block; }

.land-account-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: background .15s;
    border-bottom: 1px solid #f3f4f6;
}

.land-account-menu a:last-child { border-bottom: none; }
.land-account-menu a:hover { background: #f8fafc; text-decoration: none; }

/* ===== LOGO ===== */
.land-logo-img {
    height: 55px;
    object-fit: contain;
    display: block;
}

/* ===== PHONE FRAME ===== */
.land-phone-frame {
    position: relative;
    width: 260px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #2a2a4e,
        0 25px 60px rgba(0,0,0,.4),
        inset 0 0 0 1px rgba(255,255,255,.05);
}

.land-phone-notch {
    width: 80px;
    height: 20px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 6px;
    position: relative;
    z-index: 2;
}

.land-phone-screen-wrap {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    min-height: 460px;
}

.land-phone-screen-img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

.land-phone-button {
    width: 36px;
    height: 4px;
    background: #2a2a4e;
    border-radius: 4px;
    margin: 8px auto 0;
}

@media (max-width: 900px) {
    .land-phone-frame { display: none; }
}

/* ===== DEMO SECTION RESPONSIVE ===== */
.land-demo-row1 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
}
.land-demo-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}
.land-demo-qr { text-align: center; }

@media (max-width: 640px) {
    .land-demo-row1 {
        grid-template-columns: 1fr;
    }
    .land-demo-qr { display: none; } /* Κρύβεται σε κινητό — ο χρήστης ΗΔΗ είναι στο κινητό */
    .land-demo-row2 {
        grid-template-columns: 1fr;
    }
}
