:root {
    --bg:        #0a0a0a;
    --bg-alt:    #111111;
    --card:      #161616;
    --border:    #262626;
    --text:      #ffffff;
    --muted:     #a1a1aa;
    --accent:    #6366f1;
    --accent-2:  #818cf8;
    --radius:    16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Navbar ---------- */
.site-nav {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding-top: .8rem;
    padding-bottom: .8rem;
}

a.logo img {
    max-width: 200px;
}

.navbar-brand { font-size: 1.4rem; letter-spacing: -.02em; }
.brand-accent { color: var(--accent-2); }
.site-nav .nav-link {
    color: var(--muted);
    font-weight: 500;
    padding: .4rem 1rem;
    transition: color .2s ease;
}
.site-nav .nav-link:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 10px; transition: all .2s ease; }
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: #fff;
    transform: translateY(-1px);
}
.btn-outline-light { border-color: var(--border); color: var(--text); }
.btn-outline-light:hover { background: #fff; color: #000; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: var(--bg);
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 90%;
    background: radial-gradient(circle, rgba(99,102,241,.28) 0%, transparent 65%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.eyebrow {
    display: inline-block;
    color: var(--accent-2);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.35);
    color: var(--accent-2);
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .04em;
    padding: .45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.75rem;
}
.badge-pill .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 0 4px rgba(99,102,241,.25);
}
.hero-title {
    font-size: clamp(2.4rem, 5.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.text-grad {
    background: linear-gradient(100deg, var(--accent-2) 0%, #a78bfa 60%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 0 2.25rem;
}
.text-center .hero-lead, .text-lg-start .hero-lead { margin-left: 0; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.text-lg-start .hero-stats { justify-content: flex-start; }
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em;
    background: linear-gradient(180deg, #fff, #c7c7d1);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--muted); font-size: .85rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 90px -30px rgba(99,102,241,.5);
    display: block;
}
.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: rgba(22,22,22,.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .8rem 1rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,.6);
}
.hero-float strong { display: block; font-size: .9rem; }
.hero-float small { color: var(--muted); font-size: .78rem; }
.hf-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(99,102,241,.2);
    color: var(--accent-2);
    font-size: 1.1rem;
}
.hf-icon-green { background: rgba(34,197,94,.18); color: #4ade80; }
.hero-float-1 { top: 1.5rem; left: -1.5rem; }
.hero-float-2 { bottom: 1.5rem; right: -1.25rem; }

/* Trusted-by strip */
.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
    padding: 2.25rem 0;
}
.trust-label { text-align: center; color: var(--muted); font-size: .85rem; letter-spacing: .05em; margin-bottom: 1.25rem; }
.trust-logos {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 2.5rem;
}
.trust-logos span { color: #6b6b76; font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em; }

@media (max-width: 991px) {
    .hero-float-1 { left: .5rem; }
    .hero-float-2 { right: .5rem; }
    .hero-visual { margin-top: 1rem; }
}
@media (max-width: 575px) {
    .hero-float { display: none; }
    .hero-stats { gap: 1.5rem; }
}

/* ---------- Inner page banner ---------- */
.page-banner {
    padding: 10rem 0 4rem;
    text-align: center;
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(99,102,241,.16) 0%, transparent 70%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}
.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}
.page-banner p { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.breadcrumb-nav { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.breadcrumb-nav a { color: var(--accent-2); text-decoration: none; }

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.section-lead { color: var(--muted); font-size: 1.1rem; }

/* ---------- Feature / service cards ---------- */
.feature-card, .work-card, .price-card, .why-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover, .work-card:hover, .price-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.feature-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: block;
}
.feature-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(99,102,241,.15);
    color: var(--accent-2);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.feature-title { font-size: 1.3rem; font-weight: 700; margin-bottom: .75rem; }
.feature-card p, .work-card p, .why-item p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.feature-list li {
    color: var(--muted);
    padding: .35rem 0 .35rem 1.5rem;
    position: relative;
}
.feature-list li::before {
    content: "✓";
    color: var(--accent-2);
    position: absolute; left: 0;
    font-weight: 700;
}

/* ---------- Work ---------- */
.work-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    display: block;
}
.work-title { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }

/* Clickable work thumbnail */
.work-thumb-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}
.work-thumb-btn .work-thumb { margin-bottom: 0; transition: transform .3s ease; }
.work-thumb-btn:hover .work-thumb { transform: scale(1.05); }
.work-card .work-thumb-btn { margin-bottom: 1.25rem; }
.work-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(10,10,10,.55);
    opacity: 0;
    transition: opacity .25s ease;
}
.work-thumb-btn:hover .work-zoom,
.work-thumb-btn:focus-visible .work-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 92vw;
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.lightbox-caption {
    color: var(--muted);
    margin-top: 1rem;
    text-align: center;
    max-width: 700px;
}
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ---------- Why ---------- */
.why-item { text-align: left; }

/* ---------- Pricing ---------- */
.price-card { position: relative; display: flex; flex-direction: column; }
.price-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 20px 60px -20px rgba(99,102,241,.5); }
.price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    padding: .3rem .9rem; border-radius: 999px;
}
.price-name { font-size: 1.3rem; font-weight: 700; margin-bottom: .5rem; }
.price-desc { color: var(--muted); min-height: 48px; }
.price-amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -.02em; margin: 1rem 0 1.5rem; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 0 0 1.75rem; flex-grow: 1; }
.price-list li { color: var(--muted); padding: .45rem 0 .45rem 1.6rem; position: relative; }
.price-list li::before {
    content: "✓"; color: var(--accent-2); position: absolute; left: 0; font-weight: 700;
}

/* ---------- Contact ---------- */
.section-cta {
    background:
        radial-gradient(60% 80% at 50% 100%, rgba(99,102,241,.15) 0%, transparent 70%),
        var(--bg-alt);
}
.contact-form .form-label { font-weight: 600; margin-bottom: .4rem; }
.contact-form .form-control {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .75rem 1rem;
    border-radius: 10px;
}
.contact-form .form-control:focus {
    background: var(--card);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,.25);
    color: var(--text);
}
.contact-form .form-control::placeholder { color: #52525b; }

/* ---------- Contact modal popup ---------- */
.contact-modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
}
.contact-modal .modal-title { font-weight: 700; font-size: 1.4rem; }
.contact-modal .modal-sub { color: var(--muted); font-size: .95rem; }
.contact-modal .modal-header { padding: 1.5rem 1.5rem .5rem; }
.contact-modal .modal-body { padding: 1rem 1.5rem 1.75rem; }

/* ---------- Footer ---------- */
.site-footer { background: #070707; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-head { font-weight: 700; margin-bottom: 1rem; font-size: .95rem; }
.footer-muted { color: var(--muted); font-size: .95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }
.footer-divider { border-color: var(--border); margin: 2.5rem 0 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .site-nav .nav-link { padding: .6rem 0; }
    .hero { padding: 8.5rem 0 5rem; }
    .section { padding: 4rem 0; }
    a.logo img {
    max-width: 200px;
}
}

