/* Variables */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #0f172a;
    --accent-color: #0ea5e9;
    --background-color: #f5f6fa;
    --surface-color: #ffffff;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header & Navigation */
header {
    background-color: #202f54;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: #bfdbfe;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(74, 144, 226, 0.05) 100%);
    z-index: 0;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #3b82f6, #0ea5e9);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, #1d4ed8, #3b82f6);
    border-radius: 20% 80% 20% 80% / 20% 20% 80% 80%;
    animation-delay: 4s;
}

.shape-4 {
    bottom: 30%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(315deg, #0ea5e9, #1d4ed8);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation-delay: 1s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.title-main {
    color: var(--secondary-color);
}

.title-highlight {
    font-size: 0.6em;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 500px;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}



.phone-frame {
    width: 230px;
    background: #1a2035;
    border-radius: 40px;
    padding: 14px 12px 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 40px 80px rgba(0,0,0,0.3);
    position: relative;
}

.phone-notch {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.phone-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.phone-dots span {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.phone-screen-content {
    border-radius: 24px;
    overflow: hidden;
    background: #e8f4fd;
    position: relative;
    height: 390px;
    display: flex;
    flex-direction: column;
}

/* Map area */
.map-bg {
    flex: 1;
    position: relative;
    background: #ddeeff;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74,144,226,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,144,226,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Roads */
.map-road {
    position: absolute;
    background: #fff;
    border-radius: 3px;
}

.road-h { height: 5px; left: 0; right: 0; }
.road-v { width: 5px; top: 0; bottom: 0; }
.road-d { height: 4px; width: 140%; transform: rotate(-18deg); background: #fff; }

.road-h1 { top: 35%; }
.road-h2 { top: 62%; }
.road-v1 { left: 30%; }
.road-v2 { left: 68%; }
.road-d1 { top: 20%; left: -10%; }

/* Location pin */
.map-pin-area {
    position: absolute;
    top: 43%;
    left: 47%;
    transform: translate(-50%, -50%);
}

.map-pin-ring {
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid rgba(74,144,226,0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 3.5s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.2; }
}

.map-pin {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #4a90e2, #7b5ea7);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(74,144,226,0.5);
}

.map-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 1rem;
}

/* Floating info cards on map */
.map-card {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    white-space: nowrap;
}

.map-card i { color: #4a90e2; font-size: 0.8rem; }

.map-card-top {
    top: 12%;
    right: 6%;
    animation: cardFloat 5s ease-in-out infinite;
}

.map-card-bottom {
    bottom: 14%;
    left: 6%;
    animation: cardFloat 5.5s ease-in-out infinite reverse;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Scatter dots */
.map-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(74,144,226,0.5);
}

.dot-a { top: 22%; left: 20%; }
.dot-b { top: 55%; right: 18%; }
.dot-c { bottom: 22%; left: 55%; }

/* Result bar at bottom of phone */
.phone-result-bar {
    background: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(74,144,226,0.12);
}

.result-icon i {
    color: #27c93f;
    font-size: 1.3rem;
}

.result-text {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    color: #555;
}

.result-text strong {
    font-size: 0.88rem;
    color: #1a1a2e;
    font-weight: 700;
}

/* ============================================ */
/* Responsive                                   */
/* ============================================ */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


@keyframes pinPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(10px); }
}

/* Verification Container */
.verification-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.country-selector {
    width: 100%;
}

.country-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

.country-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.phone-input-container {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.phone-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.country-code {
    padding: 1rem;
    background: rgba(74, 144, 226, 0.05);
    border-right: 1px solid rgba(74, 144, 226, 0.1);
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
    font-size: 0.95rem;
}

#phoneInput {
    flex: 1;
    padding: 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

#phoneInput::placeholder {
    color: #999;
}

.verify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.verify-btn:active {
    transform: translateY(0);
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-notice i {
    font-size: 1rem;
}

/* Validation Message */
.validation-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.validation-message.error {
    background-color: #ffe6e6;
    color: #d63031;
}

.validation-message.success {
    background-color: #e6ffe6;
    color: #27ae60;
}

.validation-message.info {
    background-color: #e6f3ff;
    color: #4a90e2;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 1rem;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    /* Header & Navigation */
    header {
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0f172a;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    /* Hero Section */
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
        gap: 1.5rem;
		margin-top: 2rem;
    }

    .hero-visual {
        order: 2;
        margin-top: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: none;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .phone-result-bar {
        padding: 7px 9px;
        gap: 6px;
    }

    .result-icon i {
        font-size: 0.85rem;
    }

    .result-text {
        font-size: 0.52rem;
    }

    .result-text strong {
        font-size: 0.6rem;
    }

    .map-card {
        font-size: 0.55rem;
        padding: 4px 7px;
        border-radius: 7px;
    }

    .map-card i {
        font-size: 0.6rem;
    }

    .map-pin {
        width: 26px;
        height: 26px;
    }

    .map-pin i {
        font-size: 0.7rem;
    }

    .map-pin-ring {
        width: 38px;
        height: 38px;
    }


    .phone-frame {
        width: 160px;
        border-radius: 28px;
        padding: 10px 8px 8px;
    }

    .phone-screen-content {
        height: 270px;
        border-radius: 18px;
    }

    /* Verification Container */
    .verification-container {
        padding: 1.5rem;
        border-radius: 15px;
        max-width: none;
    }

    .phone-input-container {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-input-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }

    .country-code {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(74, 144, 226, 0.1);
        border-radius: 0;
        min-width: auto;
    }

    #phoneInput {
        padding: 1rem;
        text-align: center;
    }

    .verify-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem;
    }

    /* Features Section */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .phone-illustration {
        font-size: 6rem;
    }

    .verification-container {
        padding: 1rem;
        border-radius: 12px;
    }

    .country-select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .phone-input-wrapper {
        border-radius: 10px;
    }

    .country-code {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    #phoneInput {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .verify-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .trust-indicators {
        gap: 0.8rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .security-notice {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ============================================ */
/* Hero Visual — Live Map Card                  */
/* ============================================ */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lmc-card {
    width: 300px;
    border-radius: 16px;
    border: 1px solid rgba(76, 201, 240, 0.25);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(76, 201, 240, 0.08),
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(76, 201, 240, 0.08);
    animation: lmcFloat 10s ease-in-out infinite;
}

@keyframes lmcFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.lmc-canvas {
    width: 100%;
    height: 210px;
    position: relative;
    background: #0d1117;
    overflow: hidden;
}

.lmc-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* pin drop on load */
.lmc-pin-group {
    animation: lmcPinDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@keyframes lmcPinDrop {
    from { opacity: 0; transform: translateY(-20px) scale(0.6); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lmc-pin-shadow {
    fill: rgba(76, 201, 240, 0.15);
    animation: lmcShadow 2s ease-in-out infinite 1s;
}

@keyframes lmcShadow {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 0.2; }
}

.lmc-pin-body {
    fill: #4cc9f0;
}

/* expanding rings */
.lmc-ring {
    fill: none;
    stroke: #4cc9f0;
    stroke-width: 1;
    opacity: 0;
    animation: lmcRingExpand 2s ease-out infinite 1s;
}

.lmc-ring-2 {
    animation-delay: 1.6s;
}

@keyframes lmcRingExpand {
    0%   { r: 10; opacity: 0.7; }
    100% { r: 36; opacity: 0; }
}

/* live badge */
.lmc-live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13, 17, 23, 0.82);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 6px;
    padding: 5px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #4cc9f0;
    animation: lmcFadeIn 0.4s ease-out 0.9s both;
}

.lmc-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4cc9f0;
    animation: lmcDotBlink 1.2s ease-in-out infinite;
}

@keyframes lmcDotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

/* coord tag */
.lmc-coord-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(13, 17, 23, 0.82);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1.7;
    color: #4cc9f0;
    animation: lmcFadeIn 0.4s ease-out 0.9s both;
}

@keyframes lmcFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* info bar */
.lmc-info-bar {
    background: #111820;
    border-top: 1px solid rgba(76, 201, 240, 0.12);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: lmcBarIn 0.4s ease-out 1.1s both;
}

@keyframes lmcBarIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lmc-city {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 2px;
    letter-spacing: 0.02em;
}

.lmc-country {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Courier New', monospace;
    margin: 0;
}

.lmc-info-right {
    text-align: right;
}

.lmc-accuracy {
    font-size: 13px;
    font-weight: 700;
    color: #4cc9f0;
    font-family: 'Courier New', monospace;
    margin: 0 0 2px;
}

.lmc-acc-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.08em;
    margin: 0;
}

/* responsive */
@media (max-width: 768px) {
    .lmc-card {
        width: 260px;
    }
    .lmc-canvas {
        height: 182px;
    }
}

@media (max-width: 480px) {
    .lmc-card {
        width: 240px;
    }
    .lmc-canvas {
        height: 168px;
    }
}

/* ==================== */
/* Hero CTA Button      */
/* ==================== */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 40%, #0ea5e9 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.4),
        0 4px 15px rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.5),
        0 6px 20px rgba(14, 165, 233, 0.3);
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn:active {
    transform: translateY(-1px) scale(1);
}

.hero-cta-btn i {
    font-size: 1.5rem;
}

.security-notice-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1d4ed8;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.security-notice-inline i {
    font-size: 0.9rem;
}

/* ==================== */
/* Phone Modal          */
/* ==================== */
.phone-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.phone-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.phone-modal {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

.phone-modal-overlay.active .phone-modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.modal-header p {
    color: #888;
    font-size: 0.95rem;
}

.modal-body .input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-verify-btn {
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.modal-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.modal-verify-btn:active {
    transform: translateY(0);
}

.modal-body .security-notice {
    margin-top: 1rem;
}

/* Modal mobile responsive */
@media screen and (max-width: 768px) {
    .hero-cta-btn {
        padding: 1.1rem 2.5rem;
        font-size: 1.2rem;
    }

    .phone-modal {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0.5rem;
    }

    .modal-body .phone-input-container {
        flex-direction: column;
    }

    .modal-body .phone-input-wrapper {
        flex-direction: row;
    }

    .modal-body .country-code {
        width: auto;
        border-right: 1px solid rgba(74, 144, 226, 0.1);
        border-bottom: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .phone-modal {
        padding: 1.5rem 1.25rem;
    }

    .modal-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }
}