/* ============================================================
   landing.css — Reston PHP Landing Page
   Angular landing.component.scss → Pure CSS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.landing-page {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    background-image:
        radial-gradient(at 0% 0%, rgba(59,130,246,.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(99,102,241,.05) 0px, transparent 50%);
    color: #ccd6e0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

.landing-page h1, .landing-page h2,
.landing-page h3, .landing-page h4,
.landing-page h5, .landing-page h6 { color: #fff; font-weight: 700; }

.landing-page .blue { color: #3b82f6; }

.landing-page .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* ─── Buttons ─── */
.landing-page .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    text-decoration: none;
    transition: all .3s ease;
}
.landing-page .btn-primary:hover { background: linear-gradient(135deg,#2563eb,#4f46e5); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,.4); }
.landing-page .btn-primary.large { padding: 16px 36px; font-size: 16px; border-radius: 12px; gap: 6px; }

.landing-page .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #3b82f6;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    text-decoration: none;
    transition: all .3s;
}
.landing-page .btn-outline:hover { background: rgba(59,130,246,.1); }

/* ─── Topbar ─── */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    position: fixed;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1140px;
    width: 90%;
    background: rgba(7,11,20,.45);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.topbar .brand .logo-text { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; }
.topbar .brand .main-logo-img { height: 42px; max-width: 180px; object-fit: contain; transition: transform .3s; }
.topbar .brand .main-logo-img:hover { transform: scale(1.05); }

.topbar .menu { display: flex; gap: 28px; }
.topbar .menu a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .25s;
    position: relative;
}
.topbar .menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,#3b82f6,#818cf8);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .3s;
}
.topbar .menu a:hover { color: #fff; }
.topbar .menu a:hover::after { transform: scaleX(1); }

.topbar .actions { display: flex; align-items: center; gap: 16px; }
.topbar .actions .login-link {
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: .25s;
}
.topbar .actions .login-link:hover { color: #fff; }

/* ─── Hero ─── */
.hero {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #070b14;
}
.hero.hero-image-only { height: auto; max-height: 600px; aspect-ratio: 1920/600; }
.hero.hero-image-only .hero-image-bg { opacity: .85 !important; }
.hero.hero-image-only .hero-gradient-overlay {
    background: linear-gradient(to bottom, rgba(7,11,20,.3) 0%, rgba(7,11,20,.05) 30%, rgba(7,11,20,.05) 70%, rgba(7,11,20,.4) 100%) !important;
}

.hero-bg { position: absolute; inset: 0; background: #070b14; }
.hero-image-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .35;
    z-index: 0;
    transition: opacity .6s;
}
.hero-gradient-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(7,11,20,.5) 0%, rgba(7,11,20,.15) 30%, rgba(7,11,20,.15) 60%, rgba(7,11,20,.6) 100%),
        radial-gradient(ellipse 80% 50% at 50% 30%, rgba(59,130,246,.1), transparent);
}
.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,.2), transparent 70%); top: -10%; left: -10%; animation-duration: 10s; }
.hero-orb.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,.15), transparent 70%); top: 20%; right: -5%; animation-duration: 12s; animation-delay: -3s; }
.hero-orb.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(16,185,129,.12), transparent 70%); bottom: -5%; left: 30%; animation-duration: 14s; animation-delay: -6s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    25%  { transform: translate(30px,-20px) scale(1.05); }
    50%  { transform: translate(-20px,15px) scale(.95); }
    75%  { transform: translate(15px,25px) scale(1.02); }
}

.hero-container { max-width: 1140px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }

.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,41,59,.6);
    border: 1px solid rgba(59,130,246,.25);
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 36px;
    backdrop-filter: blur(12px);
    animation: badgeFadeIn .8s ease-out;
}
.hero-badge .badge-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 12px #10b981; animation: dotPulse 2s infinite; }

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    margin: 0 0 28px;
    letter-spacing: -2px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 40%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 1s ease-out .2s both;
}

.hero-desc {
    font-size: 18px;
    color: #94a3b8;
    margin: 0 auto 48px;
    line-height: 1.8;
    max-width: 640px;
    animation: descFadeIn 1s ease-out .4s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    animation: actionsFadeIn 1s ease-out .6s both;
}

.hero-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    font-family: inherit;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 8px 32px rgba(59,130,246,.35);
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(59,130,246,.5); }
.hero-btn-icon { font-size: 18px; }
.hero-btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: heroShine 3s ease-in-out infinite;
}
@keyframes heroShine { 0% { left: -100%; } 50% { left: 100%; } 100% { left: 100%; } }

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    color: #e2e8f0;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: all .3s;
    backdrop-filter: blur(8px);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(59,130,246,.4); transform: translateY(-2px); }
.hero-btn-secondary i { font-size: 22px; color: #3b82f6; }

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: trustFadeIn 1s ease-out .8s both;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: #64748b; font-size: 13px; font-weight: 500; }
.trust-item i { font-size: 18px; color: #475569; }
.trust-divider { width: 1px; height: 16px; background: rgba(255,255,255,.1); }

@keyframes dotPulse { 0%,100% { opacity:1; box-shadow:0 0 12px #10b981; } 50% { opacity:.5; box-shadow:0 0 4px #10b981; } }
@keyframes badgeFadeIn { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes titleFadeIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes descFadeIn { from { opacity:0; transform:translateY(15px); } to { opacity:1; transform:translateY(0); } }
@keyframes actionsFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes trustFadeIn { from { opacity:0; } to { opacity:1; } }

/* ─── Section Header ─── */
.section-header-lp { text-align: center; margin-bottom: 60px; }
.section-header-lp h2 { font-size: 32px; margin-bottom: 16px; color: #fff; }
.section-header-lp p { color: #94a3b8; font-size: 15px; }
.kicker { color: #3b82f6; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; display: block; }

/* ─── Features ─── */
.features-section { padding: 100px 0; background: #0f172a; }
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.feature-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: .3s;
}
.feature-card.card-blue { border-color: rgba(59,130,246,.5); }
.feature-card.card-green { border-color: rgba(16,185,129,.5); }
.feature-card.card-orange { border-color: rgba(249,115,22,.5); }
.feature-card:hover { transform: translateY(-5px); }
.feature-card.card-blue:hover { border-color: #3b82f6; box-shadow: 0 10px 40px -10px rgba(59,130,246,.3); }
.feature-card.card-green:hover { border-color: #10b981; box-shadow: 0 10px 40px -10px rgba(16,185,129,.3); }
.feature-card.card-orange:hover { border-color: #f97316; box-shadow: 0 10px 40px -10px rgba(249,115,22,.3); }
.feature-card h3 { font-size: 20px; margin-bottom: 16px; }
.feature-card p { color: #94a3b8; font-size: 14px; line-height: 1.6; }
.icon-box {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
}
.icon-box.blue { background: linear-gradient(135deg,#3b82f6,#2563eb); box-shadow: 0 10px 20px rgba(59,130,246,.3); }
.icon-box.green { background: linear-gradient(135deg,#10b981,#059669); box-shadow: 0 10px 20px rgba(16,185,129,.3); }
.icon-box.orange { background: linear-gradient(135deg,#f97316,#ea580c); box-shadow: 0 10px 20px rgba(249,115,22,.3); }

/* ─── Pricing / Service Models ─── */
.pricing-section { padding: 100px 0; background: #0f172a; }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 50px; }
.p-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 40px 30px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: .3s;
    position: relative;
}
.p-card.active { border-color: rgba(16,185,129,.5); box-shadow: 0 0 0 1px rgba(16,185,129,.1); }
.p-card.card-blue { border-color: rgba(59,130,246,.5); }
.p-card.card-green { border-color: rgba(16,185,129,.5); }
.p-card.card-orange { border-color: rgba(249,115,22,.5); }
.p-card:hover { transform: translateY(-5px); }
.p-card.card-blue:hover { border-color: #3b82f6; box-shadow: 0 10px 40px -10px rgba(59,130,246,.3); }
.p-card.card-green:hover { border-color: #10b981; box-shadow: 0 10px 40px -10px rgba(16,185,129,.3); }
.p-card.card-orange:hover { border-color: #f97316; box-shadow: 0 10px 40px -10px rgba(249,115,22,.3); }
.p-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    width: fit-content;
}
.p-badge.blue { background: rgba(59,130,246,.15); color: #3b82f6; }
.p-badge.green { background: rgba(16,185,129,.15); color: #10b981; }
.p-badge.orange { background: rgba(249,115,22,.15); color: #f97316; }
.p-card h3 { font-size: 24px; margin-bottom: 8px; }
.p-desc { color: #94a3b8; font-size: 14px; margin-bottom: 24px; }
.features-list { list-style: none; padding: 0; margin: 0 0 40px; flex: 1; }
.features-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #cbd5e1; }
.features-list li i { color: #10b981; font-size: 18px; flex-shrink: 0; }
.p-card .btn-primary, .p-card .btn-outline { width: 100%; justify-content: center; margin-top: auto; }

/* Popular badge */
.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#10b981,#059669);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: .5px;
}

/* ─── Mobil App ─── */
.app-section { padding: 120px 0; background: #070b14; position: relative; overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.app-text h2 { font-size: 42px; line-height: 1.2; margin-bottom: 24px; }
.app-desc { font-size: 17px; color: #94a3b8; line-height: 1.8; margin-bottom: 40px; }
.app-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.af-item { display: flex; align-items: center; gap: 12px; color: #e2e8f0; font-weight: 500; }
.af-item i { color: #3b82f6; font-size: 20px; }
.app-actions { display: flex; align-items: center; gap: 32px; }
.qr-code { display: flex; align-items: center; gap: 12px; color: #64748b; font-size: 13px; }
.qr-placeholder {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #3b82f6;
}
.app-mockup { perspective: 1000px; }
.mockup-container { position: relative; display: inline-block; }
.mockup-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(59,130,246,.2), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}
.phone-img { width: 100%; border-radius: 32px; box-shadow: 0 40px 100px -20px rgba(0,0,0,.8),0 0 20px rgba(59,130,246,.2); transform: rotateY(-15deg) rotateX(10deg); transition: .6s; position: relative; z-index: 1; }
.phone-img:hover { transform: rotateY(-5deg) rotateX(5deg) scale(1.02); }

/* ─── Blog Preview ─── */
.blog-section { padding: 120px 0; background: #0f172a; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.blog-card {
    background: rgba(17,24,39,.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.05);
    transition: all .5s cubic-bezier(.2,1,.3,1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    text-decoration: none;
}
.blog-card:hover { transform: translateY(-10px); border-color: rgba(59,130,246,.3); background: rgba(17,24,39,.6); box-shadow: 0 20px 50px -10px rgba(0,0,0,.4); }
.blog-card:hover .bm-img-inner { transform: scale(1.1); }
.bm-image-wrapper { height: 220px; position: relative; overflow: hidden; background: #1e293b; }
.bm-img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.2,1,.3,1); }
.bm-img-inner.ph-1 { background: linear-gradient(135deg,#1e3a8a,#1e40af); }
.bm-img-inner.ph-2 { background: linear-gradient(135deg,#064e3b,#065f46); }
.bm-img-inner.ph-3 { background: linear-gradient(135deg,#7c2d12,#9a3412); }
.bm-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,11,20,.8), transparent); display: flex; align-items: flex-end; padding: 20px; }
.bm-date { display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,.3); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); font-size: 11px; font-weight: 600; color: #fff; }
.bm-date i { font-size: 13px; color: #3b82f6; }
.bm-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.bm-body h3 { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.4; margin: 0 0 12px; }
.bm-body p { color: #94a3b8; font-size: 14px; line-height: 1.7; flex: 1; margin: 0 0 24px; }
.bm-footer { display: flex; align-items: center; gap: 6px; }
.bm-link { color: #e2e8f0; font-size: 13px; font-weight: 700; transition: .3s; }
.blog-card:hover .bm-link { color: #3b82f6; }
.bm-footer i { font-size: 18px; color: #64748b; transition: .3s; }
.blog-card:hover .bm-footer i { transform: translateX(5px); color: #3b82f6; }
.blog-action { text-align: center; margin-top: 50px; }

/* ─── Contact Chips ─── */
.contact-section { padding: 60px 0; background: #0f172a; }
.chip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.contact-chip {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: .2s;
    cursor: pointer;
    text-decoration: none;
}
.contact-chip:hover { border-color: #3b82f6; background: #1e293b; }
.contact-chip i { font-size: 24px; color: #3b82f6; flex-shrink: 0; }
.contact-chip .chip-text { line-height: 1.4; }
.contact-chip .chip-text small { font-size: 11px; color: #94a3b8; font-weight: 500; display: block; }
.contact-chip .chip-text strong { font-size: 14px; color: #fff; font-weight: 600; }

/* ─── Footer ─── */
.footer-dark { background: #0f172a; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.f-brand-col .footer-logo-img { height: 45px; margin-bottom: 24px; }
.f-brand-col .logo-text { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.f-brand-col > p { color: #94a3b8; font-size: 13px; max-width: 250px; line-height: 1.7; margin-bottom: 24px; }
.socials { display: flex; gap: 12px; }
.socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    transition: .3s;
    font-size: 16px;
}
.socials a:hover { background: #3b82f6; color: #fff; transform: translateY(-3px); }
.f-col h4 { font-size: 13px; color: #fff; margin-bottom: 24px; letter-spacing: .5px; }
.f-col ul { list-style: none; padding: 0; }
.f-col ul li { color: #94a3b8; font-size: 13px; margin-bottom: 12px; cursor: pointer; transition: .2s; }
.f-col ul li:hover { color: #3b82f6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid #1f2937; }
.bottom-links { display: flex; gap: 24px; }
.bottom-links a { color: #64748b; font-size: 12px; text-decoration: none; transition: .2s; }
.bottom-links a:hover { color: #fff; }
.copyright { color: #64748b; font-size: 12px; }

/* ─── Mobile Bottom Nav ─── */
.mobile-bottom-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(11,17,32,.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.1);
    height: 70px;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}
.mob-nav-item { display: flex; flex-direction: column; align-items: center; color: #94a3b8; text-decoration: none; font-size: 11px; font-weight: 500; gap: 4px; transition: .3s; }
.mob-nav-item i { font-size: 22px; }
.mob-nav-item:hover { color: #3b82f6; }

/* ─── References Carousel ─── */
.references-section { padding: 100px 0; background: #0f172a; overflow: hidden; }
.ref-carousel-wrap { max-width: 1240px; margin: 0 auto; padding: 40px 30px; overflow: hidden; position: relative; }
.ref-track { display: flex; transition: transform .6s ease-in-out; }
.ref-card-wrap { flex: 0 0 auto; padding: 0 15px; box-sizing: border-box; }
.ref-card-inner {
    position: relative;
    background: rgba(15,23,42,.4);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 28px;
    padding: 24px;
    transition: .3s;
    overflow: hidden;
}
.ref-card-inner:hover { border-color: #3b82f6; transform: translateY(-10px); background: rgba(15,23,42,.6); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.ref-card-inner:hover .ref-img { transform: scale(1.05); }
.ref-logo-container { height: 120px; border-radius: 20px; overflow: hidden; margin-bottom: 20px; background: #000; }
.ref-logo-container .ref-img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.ref-info { text-align: center; }
.ref-name { font-size: 18px; color: #fff; font-weight: 700; margin: 0; }
.ref-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.ref-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; cursor: pointer; transition: all .3s; padding: 0;}
.ref-dot.active { background: #3b82f6; width: 24px; border-radius: 4px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .landing-page .container { padding: 0 24px; }
    .hero { height: auto; min-height: 500px; padding: 120px 0 80px; }
    .hero-title { font-size: 44px !important; letter-spacing: -1.5px !important; }
    .hero-desc { font-size: 16px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .hero-orb.orb-1 { width: 350px; height: 350px; }
    .hero-orb.orb-2 { width: 280px; height: 280px; }
    .hero-orb.orb-3 { width: 250px; height: 250px; }
    .ref-carousel-wrap { padding: 30px 20px; }
}

@media (max-width: 768px) {
    /* Mobile Bottom Nav */
    .mobile-bottom-nav { display: flex; }
    .footer-dark { padding-bottom: 100px; }

    /* Topbar */
    .topbar { width: calc(100% - 24px); padding: 10px 16px; top: 8px; border-radius: 12px; }
    .topbar .menu, .topbar .actions .btn-primary { display: none; }
    .topbar .brand .logo-text { font-size: 20px; }
    .topbar .brand .main-logo-img { height: 34px; max-width: 140px; }
    .topbar .actions .login-link { font-size: 12px; padding: 6px 12px; background: rgba(59,130,246,0.15); border-radius: 8px; }

    /* Hero */
    .hero { height: auto; padding: 90px 0 60px; min-height: auto; }
    .hero-container { padding: 0 20px; }
    .hero-title { font-size: 30px !important; line-height: 1.15 !important; letter-spacing: -1px !important; margin-bottom: 20px !important; }
    .hero-desc { font-size: 14px !important; margin-bottom: 32px !important; max-width: 100% !important; line-height: 1.7 !important; }
    .hero-badge { font-size: 11px; padding: 8px 16px; margin-bottom: 24px; gap: 6px; }
    .hero-badge .badge-dot { width: 6px; height: 6px; }
    .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .hero-btn-primary { width: 100%; justify-content: center; padding: 15px 28px; font-size: 14px; border-radius: 12px; }
    .hero-btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; border-radius: 12px; }
    .hero-trust { flex-wrap: wrap; gap: 12px; justify-content: center; }
    .trust-item { font-size: 11px; gap: 5px; }
    .trust-item i { font-size: 15px; }
    .trust-divider { display: none; }
    .hero-orb { display: none; }

    /* Section Headers */
    .section-header-lp { margin-bottom: 40px; }
    .section-header-lp h2 { font-size: 24px; }
    .section-header-lp p { font-size: 13px; }
    .kicker { font-size: 11px; letter-spacing: 1.5px; }

    /* Features */
    .features-section { padding: 60px 0; }
    .feature-cards { grid-template-columns: 1fr !important; gap: 16px !important; }
    .feature-card { padding: 24px 20px; border-radius: 14px; }
    .feature-card h3 { font-size: 17px; }
    .feature-card p { font-size: 13px; }
    .icon-box { width: 44px; height: 44px; font-size: 20px; border-radius: 10px; margin-bottom: 16px; }

    /* Pricing */
    .pricing-section { padding: 60px 0; }
    .pricing-cards { grid-template-columns: 1fr !important; gap: 20px !important; margin-top: 30px; }
    .p-card { padding: 30px 24px 24px; border-radius: 14px; }
    .p-card h3 { font-size: 20px; }
    .p-desc { font-size: 13px; }
    .features-list li { font-size: 13px; margin-bottom: 12px; gap: 10px; }
    .features-list li i { font-size: 16px; }
    .popular-badge { font-size: 10px; padding: 3px 14px; }

    /* References */
    .references-section { padding: 60px 0; }
    .ref-carousel-wrap { padding: 20px 16px; }
    .ref-card-inner { padding: 16px; border-radius: 20px; }
    .ref-logo-container { height: 90px; border-radius: 14px; }
    .ref-name { font-size: 15px; }
    .ref-dots { margin-top: 24px; }

    /* Blog */
    .blog-section { padding: 60px 0; }
    .blog-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .blog-card { border-radius: 18px; }
    .bm-image-wrapper { height: 180px; }
    .bm-body { padding: 20px; }
    .bm-body h3 { font-size: 17px; margin-bottom: 8px; }
    .bm-body p { font-size: 13px; margin-bottom: 16px; }
    .blog-action { margin-top: 30px; }

    /* Contact */
    .contact-section { padding: 40px 0; }
    .chip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .contact-chip { padding: 14px 16px; border-radius: 10px; gap: 12px; }
    .contact-chip i { font-size: 20px; }
    .contact-chip .chip-text small { font-size: 10px; }
    .contact-chip .chip-text strong { font-size: 12px; }

    /* Footer */
    .footer-dark { padding: 50px 0 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
    .f-brand-col { grid-column: 1 / -1; }
    .f-brand-col > p { max-width: 100%; }
    .f-brand-col .footer-logo-img { height: 36px; }
    .f-brand-col .logo-text { font-size: 24px; }
    .f-col h4 { font-size: 12px; margin-bottom: 16px; }
    .f-col ul li { font-size: 12px; margin-bottom: 10px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .bottom-links a { font-size: 11px; }
    .copyright { font-size: 11px; }

    /* Mobile app section */
    .app-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .app-features { align-items: center; }
    .app-actions { flex-direction: column; align-items: center; }
    .app-text h2 { font-size: 30px; }
}

@media (max-width: 480px) {
    .landing-page .container { padding: 0 16px; }
    .topbar { width: calc(100% - 16px); padding: 8px 12px; top: 6px; }
    .topbar .brand .logo-text { font-size: 18px; }
    .topbar .brand .main-logo-img { height: 30px; max-width: 120px; }

    .hero { padding: 80px 0 50px; }
    .hero-container { padding: 0 16px; }
    .hero-title { font-size: 26px !important; letter-spacing: -0.5px !important; }
    .hero-desc { font-size: 13px !important; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .hero-btn-primary { padding: 13px 24px; font-size: 13px; }
    .hero-btn-secondary { padding: 12px 20px; font-size: 13px; }
    .hero-trust { gap: 8px; }
    .trust-item { font-size: 10px; }

    .chip-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 20px 16px; }
    .p-card { padding: 24px 20px 20px; }
    .p-card h3 { font-size: 18px; }

    .section-header-lp h2 { font-size: 22px; }
    .section-header-lp p { font-size: 12px; }

    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .f-brand-col { grid-column: auto; }

    /* Mobile Bottom Nav adjustments */
    .mobile-bottom-nav { height: 64px; }
    .mob-nav-item { font-size: 10px; gap: 3px; }
    .mob-nav-item i { font-size: 20px; }
}

/* ─── Safe area for devices with notch ─── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bottom-nav {
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(70px + env(safe-area-inset-bottom));
    }
}

/* ─── Touch-friendly improvements ─── */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .p-card:hover,
    .blog-card:hover,
    .contact-chip:hover,
    .ref-card-inner:hover {
        transform: none;
    }
    .hero-btn-primary:hover,
    .hero-btn-secondary:hover {
        transform: none;
    }
}
