/* 
   Change by us (CBU) - Stylesheet
   Clean, Modern, Tech, Collaborative
*/

:root {
    --primary: #0066FF;
    /* Trust Blue */
    --primary-dark: #0052CC;
    --accent: #00D1FF;
    /* Tech Cyan */
    --secondary: #0A192F;
    /* Professional Navy */
    --eco-soft: #EEF7F2;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --gradient: linear-gradient(135deg, #0066FF 0%, #00D1FF 100%);
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-icon {
    font-family: 'Unbounded', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

.narrow {
    max-width: 900px;
}

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

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #E2E8F0;
}

.btn-ghost:hover {
    background: #f1f5f9;
}

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

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

.btn-full {
    width: 100%;
}

/* Navigation */
.top-banner {
    background: var(--secondary);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

.banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.close-banner {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.navbar {
    height: 90px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: var(--gradient);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 900;
}

.logo-text {
    font-family: 'Unbounded';
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
}

/* Hero */
.hero {
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.blob-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(0, 102, 255, 0.05);
    filter: blur(100px);
    border-radius: 50%;
}

.blob-2 {
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(0, 209, 255, 0.05);
    filter: blur(80px);
    border-radius: 50%;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--eco-soft);
    color: #2D6A4F;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-btns .btn-primary {
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.25);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: 'Unbounded';
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* App Mockup */
.app-mockup {
    width: 320px;
    height: 650px;
    background: #111;
    border: 12px solid #222;
    border-radius: 50px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.screen-content {
    height: 100%;
    border-radius: 38px;
    background: white;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mock-nav {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.mock-search {
    padding: 10px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.6rem;
    color: #94a3b8;
}

.mock-filter {
    display: flex;
    gap: 10px;
}

.mock-filter span {
    font-size: 0.5rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.mock-filter span.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex-grow: 1;
}

.mock-item {
    background: #f1f5f9;
    border-radius: 10px;
}

.floating-verified {
    position: absolute;
    bottom: 80px;
    left: -20px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.8rem;
}

.check {
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Features */
.features {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-title {
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.feature-card {
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-md);
    transition: 0.4s;
    border: 1px solid transparent;
    cursor: pointer;
}

.feature-card:hover,
.feature-card.active {
    border-color: var(--primary);
    background: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.f-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Map Section */
.hyerplocal-map {
    padding: 120px 0;
}

.map-visual {
    position: relative;
}

.map-placeholder {
    height: 500px;
    background: #f1f5f9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 20px solid white;
    box-shadow: var(--shadow);
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.p1 {
    top: 20%;
    left: 30%;
}

.p2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.p3 {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

.radar {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: radar-pulse 3s linear infinite;
}

@keyframes radar-pulse {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    margin: 32px 0;
}

.check-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-weight: 600;
}

.check-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Security */
.security {
    padding: 120px 0;
    background: var(--secondary);
    color: white;
}

.security-box {
    text-align: center;
}

.sec-icon {
    font-size: 4rem;
    margin-bottom: 32px;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-top: 64px;
}

.s-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: 0.3s;
}

.s-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.s-item strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: 'Unbounded';
    font-size: 1rem;
}

.s-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonial */
.testimonial {
    padding: 120px 0;
    background: white;
}

.test-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 2.5rem;
    font-family: 'Unbounded';
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 48px;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -40px;
    left: -40px;
    opacity: 0.05;
}

.author {
    display: flex;
    items-center;
    justify-content: center;
    gap: 20px;
}

.author-img {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Download CTA */
.download-cta {
    padding: 80px 0;
}

.cta-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: white;
    overflow: hidden;
    align-items: center;
}

.cta-inner {
    padding: 80px 0;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.app-badges {
    display: flex;
    gap: 16px;
}

.app-badges img {
    height: 44px;
    cursor: pointer;
}

.cta-visual {
    align-self: flex-end;
    transform: translateY(20px);
}

.cta-visual img {
    width: 100%;
    border-radius: 30px 30px 0 0;
}

/* Footer */
.footer {
    background: #050B14;
    color: white;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    padding-bottom: 80px;
}

.logo.white .logo-text {
    color: white;
}

.f-brand p {
    opacity: 0.5;
    margin-top: 24px;
    font-size: 0.9rem;
    max-width: 300px;
}

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

.f-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.f-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.6;
}

.f-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0;
    font-size: 0.75rem;
    color: #556;
}

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

.socials span {
    margin-left: 20px;
    font-weight: 800;
    cursor: pointer;
    color: white;
}

/* Popups */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.95);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: white;
    padding: 64px;
    border-radius: var(--radius-lg);
    max-width: 550px;
    width: 90%;
    text-align: center;
    position: relative;
    border-bottom: 8px solid var(--primary);
}

.close-p {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #cbd5e1;
}

.p-icon-visual {
    font-size: 5rem;
    margin-bottom: 32px;
    display: block;
}

.popup-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.popup-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

#leadForm input {
    width: 100%;
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 1rem;
    text-align: center;
}

/* Scroll Promo */
.scroll-promo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 1500;
    display: none;
    max-width: 350px;
    border-left: 6px solid var(--accent);
}

.promo-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.p-icon {
    font-size: 3rem;
}

.p-text strong {
    display: block;
    font-size: 0.95rem;
}

.p-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.p-text a {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.85rem;
}

.close-s {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 1024px) {

    .grid-2,
    .hero-grid,
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-subtitle {
        margin: 0 auto 40px;
    }

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

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

    .cta-visual {
        display: none;
    }

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

    .f-links {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }

    .top-banner {
        display: none;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

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

    .f-links {
        grid-template-columns: 1fr;
    }
}
