@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #060f1e;
    --navy2: #0b1a2e;
    --navy3: #0d2040;
    --cyan: #00d4ff;
    --white: #fff;
    --gray: #8ba3c0;
    --card: #0f2236;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', system-ui, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(0, 212, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 22s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 60px, 60px 0;
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 75px;
    background: rgba(6, 15, 30, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 212, 255, .1);
}

.nav-logo {
    margin-top: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.15;
    animation: fadeDown .7s .1s both;

    height: 125px !important;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3));

}

#navbar a {
    display: flex;
    align-items: center;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.nav-logo span {
    display: block;
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--gray);
    font-size: .84rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-drop {
    cursor: pointer;
    color: var(--gray);
    font-size: .84rem;
    font-weight: 500;
}

.nav-drop::after {
    content: ' ▾';
    font-size: .68rem;
}

.btn-cta {
    background: var(--cyan);
    color: #ffffff !important;
    padding: .44rem 1.2rem;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
}

.btn-cta:hover {
    background: #00eaff;
    box-shadow: 0 4px 22px rgba(0, 212, 255, .4);
}

/* HERO */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0, 100, 200, .4) 0%, transparent 70%);
    animation: glow 5s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: .8;
    }

    50% {
        opacity: 1;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    animation: fadeUp .7s .2s both;
}

.breadcrumb {
    font-size: .7rem;
    color: var(--gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.breadcrumb span {
    color: var(--cyan);
}

.hero-eye {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.hero-left h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-left h1 em {
    font-style: normal;
    color: var(--cyan);
}

.hero-left p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.78;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--cyan);
    color: #000;
    padding: .75rem 1.8rem;
    border-radius: 5px;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, .4);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--cyan);
    padding: .73rem 1.8rem;
    border-radius: 5px;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid rgba(0, 212, 255, .4);
    transition: all .25s;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, .08);
    border-color: var(--cyan);
}

/* HERO RIGHT MOCKUP */
.hero-right {
    animation: fadeUp .7s .4s both;
}

.mockup-window {
    background: var(--card);
    border: 1px solid rgba(0, 212, 255, .18);
    border-radius: 14px;
    overflow: hidden;
}

.mockup-bar {
    background: var(--navy3);
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-bottom: 1px solid rgba(0, 212, 255, .1);
}

.dot-r {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.dot-y {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #febc2e;
}

.dot-g {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28c840;
}

.url-bar {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border-radius: 4px;
    padding: .25rem .75rem;
    font-size: .7rem;
    color: var(--gray);
    margin-left: .5rem;
}

.mockup-body {
    padding: 1.5rem;
}

.mock-header {
    height: 28px;
    background: rgba(0, 212, 255, .08);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.mock-hero-area {
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 212, 255, .1), rgba(0, 100, 200, .1));
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-hero-area span {
    font-size: .72rem;
    color: rgba(0, 212, 255, .5);
    letter-spacing: 2px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1rem;
}

.mock-card {
    height: 60px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(0, 212, 255, .08);
    border-radius: 6px;
}

.mock-text-lines {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.mock-line {
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
}

.mock-line.short {
    width: 60%;
}

/* STATS ROW */
.stats-row {
    position: relative;
    z-index: 1;
    background: var(--navy2);
    border-top: 1px solid rgba(0, 212, 255, .08);
    border-bottom: 1px solid rgba(0, 212, 255, .08);
    padding: 40px 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: .8rem 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(0, 212, 255, .12);
}

.stat-n {
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: .2rem;
}

.stat-l {
    font-size: .75rem;
    color: var(--gray);
    letter-spacing: 1px;
}

/* SECTIONS */
.section {
    padding: 90px 5%;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: .6rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s, transform .5s;
}

.section-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: .8rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .1s, transform .6s .1s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-sub {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.75;
    max-width: 600px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .2s, transform .6s .2s;
}

.section-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WHAT'S INCLUDED */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.inc-card {
    background: var(--card);
    border: 1px solid rgba(0, 212, 255, .1);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s, transform .5s, border-color .3s, box-shadow .3s;
}

.inc-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.inc-card:hover {
    border-color: rgba(0, 212, 255, .4);
    box-shadow: 0 8px 30px rgba(0, 212, 255, .1);
    transform: translateY(-4px);
}

.inc-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.inc-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.inc-card p {
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.65;
}

/* PROCESS */
.process-bg {
    background: var(--navy2);
    position: relative;
    z-index: 1;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.8rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, .07);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .55s, transform .55s;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.ps-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    flex-shrink: 0;
    transition: all .3s;
}

.process-step:hover .ps-num {
    background: rgba(0, 212, 255, .1);
    border-color: var(--cyan);
}

.ps-body {
    padding-top: .6rem;
}

.ps-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.ps-body p {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.72;
}

/* TOOLS */
.tools-flex {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 2.5rem;
}

.tool-chip {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: .55rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--gray);
    font-weight: 500;
    transition: all .25s;
    opacity: 0;
    transform: scale(.9);
    transition: opacity .4s, transform .4s, border-color .25s, color .25s;
}

.tool-chip.visible {
    opacity: 1;
    transform: scale(1);
}

.tool-chip:hover {
    border-color: rgba(0, 212, 255, .35);
    color: #fff;
    background: rgba(0, 212, 255, .06);
}

/* FAQ */
.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(0, 212, 255, .1);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s, transform .5s;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-q {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s;
}

.faq-q:hover {
    background: rgba(0, 212, 255, .05);
}

.faq-arrow {
    font-size: .8rem;
    color: var(--cyan);
    transition: transform .3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a-inner {
    padding: 0 1.5rem 1.3rem;
    font-size: .84rem;
    color: var(--gray);
    line-height: 1.72;
}

/* CTA */
.cta-section {
    padding: 96px 5%;
}

/* Outer glow wrapper */
.cta-outer {
    max-width: 940px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink), var(--amber));
    animation: ctaBorderPulse 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .75s, transform .75s;
}

.cta-outer.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ctaBorderPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.25) drop-shadow(0 0 20px rgba(0, 212, 255, .3));
    }
}

.cta-box {
    background: linear-gradient(145deg, #080f1e, #0d1e35);
    border-radius: 22px;
    padding: 5.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Inner glow orbs */
.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, .08), transparent 65%);
    pointer-events: none;
    animation: ctaOrb1 8s ease-in-out infinite;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 252, .08), transparent 65%);
    pointer-events: none;
    animation: ctaOrb2 8s ease-in-out infinite;
}

@keyframes ctaOrb1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes ctaOrb2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, -20px);
    }
}

/* Eyebrow badge */
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    padding: .36rem 1rem;
    border-radius: 30px;
    background: rgba(0, 212, 255, .08);
    border: 1px solid rgba(0, 212, 255, .2);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -.3px;
}

.cta-box p {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.6rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Two CTA buttons side by side */
.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-dark {
    background: var(--g-main);
    color: #fff;
    padding: .92rem 2.4rem;
    border-radius: 7px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-100%);
    transition: transform .55s;
}

.btn-dark:hover::before {
    transform: translateX(100%);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(0, 212, 255, .45), 0 6px 18px rgba(124, 92, 252, .35);
}

.btn-ghost {
    background: transparent;
    color: rgba(238, 244, 255, .7);
    padding: .9rem 2rem;
    border-radius: 7px;
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: all .28s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    transform: translateY(-2px);
}

footer {
    position: relative;
    z-index: 1;
    background: var(--navy);
    border-top: 1px solid rgba(0, 212, 255, .08);
    padding: 2.4rem 5% 1.4rem;
}

.ft-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
}

.ft-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    color: white;
}

.ft-links a {
    color: var(--gray);
    font-size: .78rem;
    text-decoration: none;
    transition: color .2s;
}

.ft-links a:hover {
    color: #fff;
}

.ft-links a.active {
    color: var(--cyan);
}

.ft-socials {
    display: flex;
    gap: .7rem;
}

.s-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--gray);
    cursor: pointer;
    transition: all .2s;
}

.s-icon:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ft-logo {
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.ft-logo small {
    display: block;
    font-size: .52rem;
    letter-spacing: 4px;
    color: var(--gray);
    font-weight: 400;
}

.ft-copy {
    font-size: .7rem;
    color: white;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown {
    position: relative;
}

.dropdown-title {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a223a;
    border-radius: 8px;
    padding: 10px 0;
    width: 220px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #133a5e;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {

    #navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        font-size: 14px;
    }

    .btn-cta {
        padding: 6px 10px;
        font-size: 12px;
    }

    .nav-logo {
        height: 50px;
    }

}

/* Shared Responsive Navbar and Layout Overrides */
body.menu-open {
    overflow: hidden;
}

#navbar .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    background: rgba(8, 18, 32, 0.95);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    z-index: 1002;
}

#navbar .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .25s, opacity .25s;
}

#navbar .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#navbar .menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

#navbar .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
    #navbar {
        padding: 0 14px !important;
        z-index: 1000;
    }

    #navbar .menu-toggle {
        display: inline-flex;
    }

    #navbar #nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 998;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .2rem !important;
        padding: 1rem 5vw 1.3rem;
        background: rgba(6, 15, 30, .98);
        border-bottom: 1px solid rgba(0, 212, 255, .12);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .24s, visibility .24s, transform .24s;
    }

    #navbar #nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    #navbar #nav-links>a,
    #navbar #nav-links .dropdown-title {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: .78rem .2rem;
        font-size: .95rem;
    }

    #navbar #nav-links a::after {
        display: none !important;
    }

    #navbar #nav-links .dropdown {
        width: 100%;
        display: block !important;
    }

    #navbar #nav-links .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
    }

    #navbar #nav-links .dropdown-menu {
        position: static;
        width: 100%;
        border-radius: 8px;
        border: 1px solid transparent;
        margin-top: .3rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: max-height .3s ease, opacity .25s, visibility .25s, transform .25s, border-color .25s;
    }

    #navbar #nav-links .dropdown.open .dropdown-menu {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border-color: rgba(0, 212, 255, .18);
        padding: .35rem 0;
    }

    #navbar #nav-links .dropdown-menu a {
        padding: .72rem .95rem;
        font-size: .88rem;
    }

    #navbar #nav-links .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: .5rem;
    }

    .hero-inner,
    .mission-inner,
    .service-inner,
    .split {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    #navbar .nav-logo {
        height: 58px !important;
        margin-top: 8px;
    }

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

    .hero-left p,
    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .believe-grid,
    .features-grid,
    .services-grid,
    .mission-boxes,
    .cards-grid,
    .story-cards-row {
        grid-template-columns: 1fr !important;
    }

    .step {
        grid-template-columns: 1fr !important;
    }

    .cta-box {
        padding: 3.2rem 1.5rem !important;
    }

    .ft-top,
    .footer-top,
    .ft-bottom,
    .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }
}

@media (max-width: 520px) {
    #navbar #nav-links {
        top: 68px;
        max-height: calc(100vh - 68px);
        padding: .95rem 1rem 1.2rem;
    }

    .btn-primary,
    .btn-dark,
    .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero h1,
    .hero-left h1 {
        font-size: clamp(1.85rem, 9vw, 2.6rem) !important;
    }
}


/* Shared Global Alignment: Navbar + Footer */
:root {
    --layout-max-width: 1320px;
    --layout-side-padding: 16px;
    --layout-inline-padding: max(var(--layout-side-padding), calc((100vw - var(--layout-max-width)) / 2));
    --layout-link-gap: clamp(1rem, 1.9vw, 1.45rem);
}

#navbar {
    padding-inline: var(--layout-inline-padding) !important;
}

footer {
    padding-inline: var(--layout-inline-padding) !important;
}

.nav-links,
.nav-r {
    gap: var(--layout-link-gap);
}

.footer-links,
.ft-links {
    gap: var(--layout-link-gap);
}

@media (max-width: 768px) {

    #navbar,
    footer {
        padding-inline: max(14px, var(--layout-side-padding)) !important;
    }
}

/* Footer links white across pages */
.footer-links a,
.ft-links a,
.footer-links a:hover,
.ft-links a:hover,
.footer-links a.active,
.ft-links a.active {
    color: #ffffff !important;
}

/* ============================================================
   Service Pages — Warm White × Orange Theme
   Shared base: google_ad_service, public_service, seo_service, service
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@400;600;700;900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #f9f7f4;
    --navy2: #f2ede6;
    --navy3: #ede5d8;
    --orange: #f47c20;
    --orange-dark: #e86c10;
    --orange-deep: #d45e08;
    --orange-light: #fbb96a;
    --white: #1a1208;
    --gray: #7a6650;
    --card: #ffffff;
    --accent: #f47c20;
    --muted: rgba(60, 40, 15, 0.65);
    --g-main: linear-gradient(135deg, #f47c20, #e86c10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', system-ui, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Dot grid */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(244, 124, 32, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 124, 32, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 22s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 60px, 60px 0;
    }
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 75px;
    background: rgba(249, 247, 244, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(244, 124, 32, .1);
}

.nav-logo {
    margin-top: 15px;
    height: 75px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(244, 124, 32, 0.3));
    animation: fadeDown .7s .1s both;
}

#navbar a {
    display: flex;
    align-items: center;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.nav-logo span {
    display: block;
    font-size: .58rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--gray);
    font-size: .84rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-drop {
    cursor: pointer;
    color: var(--gray);
    font-size: .84rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-drop:hover {
    color: var(--white);
}

.nav-drop::after {
    content: ' ▾';
    font-size: .68rem;
}

.btn-cta {
    background: var(--orange);
    color: #fff !important;
    padding: .44rem 1.2rem;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

.btn-cta:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 22px rgba(244, 124, 32, .4);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 65% 55% at 60% 50%, rgba(244, 124, 32, .12) 0%, rgba(244, 124, 32, .05) 50%, transparent 70%);
    animation: glow 5s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: .8
    }

    50% {
        opacity: 1
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumb {
    font-size: .7rem;
    color: var(--gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.breadcrumb span {
    color: var(--orange);
}

.hero-eye {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.hero-left {
    animation: fadeUp .7s .2s both;
}

.hero-left h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.hero-left h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-left p {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.78;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--g-main);
    color: #fff;
    padding: .75rem 1.8rem;
    border-radius: 5px;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: translateX(-100%);
    transition: transform .5s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 124, 32, .4);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    padding: .73rem 1.8rem;
    border-radius: 5px;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid rgba(244, 124, 32, .4);
    transition: all .25s;
}

.btn-outline:hover {
    background: rgba(244, 124, 32, .08);
    border-color: var(--orange);
}

.hero-right {
    animation: fadeUp .7s .4s both;
}

/* ── STATS ROW ──────────────────────────────────────────── */
.stats-row {
    position: relative;
    z-index: 1;
    background: var(--navy2);
    border-top: 1px solid rgba(244, 124, 32, .08);
    border-bottom: 1px solid rgba(244, 124, 32, .08);
    padding: 40px 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: .8rem 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(244, 124, 32, .15);
}

.stat-n {
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .2rem;
}

.stat-l {
    font-size: .75rem;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
    padding: 90px 5%;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: .6rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s, transform .5s;
}

.section-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: .8rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .1s, transform .6s .1s;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-sub {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.75;
    max-width: 600px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .2s, transform .6s .2s;
}

.section-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── INCLUDED GRID ──────────────────────────────────────── */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.inc-card {
    background: var(--card);
    border: 1px solid rgba(244, 124, 32, .1);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s, transform .5s, border-color .3s, box-shadow .3s;
}

.inc-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.inc-card:hover {
    border-color: rgba(244, 124, 32, .4);
    box-shadow: 0 8px 30px rgba(244, 124, 32, .1);
    transform: translateY(-4px);
}

.inc-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.inc-card h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--white);
}

.inc-card p {
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ── PROCESS ────────────────────────────────────────────── */
.process-bg {
    background: var(--navy2);
    position: relative;
    z-index: 1;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.8rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(244, 124, 32, .07);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .55s, transform .55s;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.ps-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(244, 124, 32, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
    transition: all .3s;
}

.process-step:hover .ps-num {
    background: rgba(244, 124, 32, .1);
    border-color: var(--orange);
}

.ps-body {
    padding-top: .6rem;
}

.ps-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--white);
}

.ps-body p {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.72;
}

/* ── TOOL CHIPS ─────────────────────────────────────────── */
.tools-flex {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 2.5rem;
}

.tool-chip {
    background: rgba(244, 124, 32, .05);
    border: 1px solid rgba(244, 124, 32, .12);
    border-radius: 8px;
    padding: .55rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: var(--gray);
    font-weight: 500;
    opacity: 0;
    transform: scale(.9);
    transition: opacity .4s, transform .4s, border-color .25s, color .25s;
}

.tool-chip.visible {
    opacity: 1;
    transform: scale(1);
}

.tool-chip:hover {
    border-color: rgba(244, 124, 32, .4);
    color: var(--white);
    background: rgba(244, 124, 32, .1);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid rgba(244, 124, 32, .1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s, transform .5s;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-q {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    transition: background .2s;
}

.faq-q:hover {
    background: rgba(244, 124, 32, .05);
}

.faq-arrow {
    font-size: .8rem;
    color: var(--orange);
    transition: transform .3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a-inner {
    padding: 0 1.5rem 1.3rem;
    font-size: .84rem;
    color: var(--gray);
    line-height: 1.72;
}

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
    padding: 96px 5%;
}

.cta-outer {
    max-width: 940px;
    margin: 0 auto;
    padding: 2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark), var(--orange-light), var(--orange));
    animation: ctaBorderPulse 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .75s, transform .75s;
}

.cta-outer.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ctaBorderPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(244, 124, 32, .35));
    }
}

.cta-box {
    background: linear-gradient(145deg, #fff, #fdf8f3);
    border-radius: 22px;
    padding: 5.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 124, 32, .07), transparent 65%);
    pointer-events: none;
    animation: ctaOrb1 8s ease-in-out infinite;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 124, 32, .06), transparent 65%);
    pointer-events: none;
    animation: ctaOrb2 8s ease-in-out infinite;
}

@keyframes ctaOrb1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 20px)
    }
}

@keyframes ctaOrb2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-30px, -20px)
    }
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    padding: .36rem 1rem;
    border-radius: 30px;
    background: rgba(244, 124, 32, .08);
    border: 1px solid rgba(244, 124, 32, .2);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -.3px;
}

.cta-box p {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.6rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-dark {
    background: var(--g-main);
    color: #fff !important;
    padding: .92rem 2.4rem;
    border-radius: 7px;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .28s, box-shadow .28s;
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-100%);
    transition: transform .55s;
}

.btn-dark:hover::before {
    transform: translateX(100%);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(244, 124, 32, .4);
}

.btn-ghost {
    background: transparent;
    color: rgba(60, 40, 15, .65);
    padding: .9rem 2rem;
    border-radius: 7px;
    font-size: .86rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(60, 40, 15, .2);
    transition: all .28s;
}

.btn-ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(244, 124, 32, .06);
    transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
    position: relative;
    z-index: 1;
    background: #1a1208;
    border-top: 1px solid rgba(244, 124, 32, .08);
    padding: 2.4rem 5% 1.4rem;
}

.ft-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
}

.ft-links {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.ft-links a,
.ft-links a:hover,
.ft-links a.active {
    color: #fff !important;
    font-size: .78rem;
    text-decoration: none;
    transition: color .2s;
}

.ft-links a:hover {
    color: rgba(255, 255, 255, .75) !important;
}

.ft-socials {
    display: flex;
    gap: .7rem;
}

.s-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .2s;
}

.s-icon:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ft-logo {
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
}

.ft-logo small {
    display: block;
    font-size: .52rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .4);
    font-weight: 400;
}

.ft-copy {
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
}

/* ── DROPDOWN ───────────────────────────────────────────── */
.dropdown {
    position: relative;
}

.dropdown-title {
    color: var(--white);
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid rgba(244, 124, 32, .15);
    border-radius: 8px;
    padding: 10px 0;
    width: 220px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: .83rem;
}

.dropdown-menu a:hover {
    background: rgba(244, 124, 32, .07);
    color: var(--orange);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SHARED LAYOUT ──────────────────────────────────────── */
:root {
    --layout-max-width: 1320px;
    --layout-side-padding: 16px;
    --layout-inline-padding: max(var(--layout-side-padding), calc((100vw - var(--layout-max-width)) / 2));
    --layout-link-gap: clamp(1rem, 1.9vw, 1.45rem);
}

#navbar {
    padding-inline: var(--layout-inline-padding) !important;
}

footer {
    padding-inline: var(--layout-inline-padding) !important;
}

.nav-links,
.nav-r {
    gap: var(--layout-link-gap);
}

.footer-links,
.ft-links {
    gap: var(--layout-link-gap);
}

/* Mobile toggle */
#navbar .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(244, 124, 32, .25);
    background: rgba(249, 247, 244, .95);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    z-index: 1002;
}

#navbar .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #1a1208;
    transition: transform .25s, opacity .25s;
}

#navbar .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#navbar .menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

#navbar .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:992px) {
    #navbar {
        padding: 0 14px !important;
        z-index: 1000;
    }

    #navbar .menu-toggle {
        display: inline-flex;
    }

    #navbar #nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 998;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: .2rem !important;
        padding: 1rem 5vw 1.3rem;
        background: rgba(255, 251, 246, .98);
        border-bottom: 1px solid rgba(244, 124, 32, .12);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .24s, visibility .24s, transform .24s;
    }

    #navbar #nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    #navbar #nav-links>a,
    #navbar #nav-links .dropdown-title {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: .78rem .2rem;
        font-size: .95rem;
    }

    #navbar #nav-links a::after {
        display: none !important;
    }

    #navbar #nav-links .dropdown {
        width: 100%;
        display: block !important;
    }

    #navbar #nav-links .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
    }

    #navbar #nav-links .dropdown-menu {
        position: static;
        width: 100%;
        border-radius: 8px;
        border: 1px solid transparent;
        margin-top: .3rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: max-height .3s ease, opacity .25s, visibility .25s, transform .25s, border-color .25s;
    }

    #navbar #nav-links .dropdown.open .dropdown-menu {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border-color: rgba(244, 124, 32, .18);
        padding: .35rem 0;
    }

    #navbar #nav-links .dropdown-menu a {
        padding: .72rem .95rem;
        font-size: .88rem;
    }

    #navbar #nav-links .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: .5rem;
    }

    .hero-inner,
    .service-inner {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        grid-template-columns: 52px 1fr;
    }
}

@media (max-width:768px) {

    #navbar,
    footer {
        padding-inline: max(14px, var(--layout-side-padding)) !important;
    }

    #navbar .nav-logo {
        height: 58px !important;
        margin-top: 8px;
    }

    #navbar {
        padding: 12px 15px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 5% 60px;
    }

    .hero-inner {
        text-align: center;
        gap: 2rem;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .stats-row {
        padding: 30px 5%;
    }

    .stat-item {
        min-width: 120px;
        padding: .6rem 1rem;
    }

    .section {
        padding: 70px 5%;
    }

    .cta-box {
        padding: 3.2rem 1.5rem !important;
    }

    .ft-top,
    .ft-bottom {
        justify-content: center !important;
        text-align: center;
    }

    .ft-socials {
        margin-left: 0;
    }

    .process-step {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width:520px) {
    #navbar #nav-links {
        top: 68px;
        max-height: calc(100vh - 68px);
        padding: .95rem 1rem 1.2rem;
    }

    .btn-primary,
    .btn-dark,
    .btn-cta,
    .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-left h1,
    .hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.6rem) !important;
    }

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

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width:860px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width:560px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}


/* ── VIDEO MARKETING UNIQUE: Video Preview Visual ────────── */
.video-preview {
    background: var(--card);
    border: 1px solid rgba(244, 124, 32, .15);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
}

.video-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(244, 124, 32, .12), rgba(232, 108, 16, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(244, 124, 32, .1), transparent 70%);
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(244, 124, 32, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    z-index: 1;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(244, 124, 32, .55);
}

.play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(244, 124, 32, .4);
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .8;
    }

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

.video-meta {
    padding: 1.2rem 1.5rem;
}

.video-title {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .8rem;
    color: var(--white);
}

.video-stats {
    display: flex;
    gap: 1.5rem;
}

.vstat {
    font-size: .72rem;
    color: var(--gray);
}

.vstat strong {
    color: var(--orange);
    display: block;
    font-size: .9rem;
}

.video-types {
    padding: 0 1.5rem 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.vtype {
    background: rgba(244, 124, 32, .08);
    border: 1px solid rgba(244, 124, 32, .2);
    border-radius: 20px;
    padding: .25rem .75rem;
    font-size: .68rem;
    font-weight: 600;
    color: var(--orange);
}

.footer-socials {
    display: flex;
    gap: .8rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .26s;
}

.social-icon:hover {
    border-color: #f47c20;
    color: #f47c20;
    transform: translateY(-3px) scale(1.12);
    box-shadow: 0 6px 20px rgba(244, 124, 32, .25);
}

/* ================================================================
   LOGO HOVER ANIMATION — Guaranteed working
   Paste at the bottom of any page CSS
   ================================================================ */

/* ── Wrap the logo tag with this structure in HTML:
   <a href="/" class="nav-logo logo-wrap">
       <img src="your-logo.png" class="logo-img" />
       <span class="logo-ring"></span>
       <span class="logo-shine"></span>
   </a>
   ──────────────────────────────────────────────── */

/* Wrapper */
.logo-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

/* The actual logo image */
.logo-wrap .logo-img,
.logo-wrap img {
    margin-top: 25px;
    height: 125px;
    display: block;
    position: relative;
    z-index: 2;
    transition:
        transform .38s cubic-bezier(.34, 1.56, .64, 1),
        filter .38s ease;
    transform-origin: center bottom;
}

/* Hover: lift + bounce + orange glow */
.logo-wrap:hover .logo-img,
.logo-wrap:hover img {
    transform: translateY(-4px) scale(1.07);
    filter:
        drop-shadow(0 0 10px rgba(238, 106, 5, 0.348)) drop-shadow(0 0 24px rgba(239, 107, 6, 0.3));
}

/* Click press */
.logo-wrap:active .logo-img,
.logo-wrap:active img {
    transform: scale(.95) translateY(0px);
    filter: drop-shadow(0 0 5px rgba(244, 124, 32, .4));
    transition: transform .1s, filter .1s;
}


@keyframes logoRipple {
    0% {
        inset: 0px;
        border-color: rgba(244, 124, 32, .8);
        opacity: 1;
        transform: scale(1);
    }

    100% {
        inset: -14px;
        border-color: rgba(244, 124, 32, 0);
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes logoShimmer {
    0% {
        opacity: 0;
        transform: translateX(-100%) skewX(-10deg);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(200%) skewX(-10deg);
    }
}

/* ── Orange dot that pops in under logo ── */
.logo-dot {
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f47c20;
    pointer-events: none;
    z-index: 4;
    transform: translateX(-50%) scale(0);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 0 8px rgba(244, 124, 32, .6);
}

.logo-wrap:hover .logo-dot {
    transform: translateX(-50%) scale(1);
}

/* ── Page-load bounce-in (fires once) ── */
@keyframes logoBounceIn {
    0% {
        opacity: 0;
        transform: scale(.7) translateY(-8px);
    }

    65% {
        opacity: 1;
        transform: scale(1.08) translateY(0);
    }

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

.logo-wrap .logo-img,
.logo-wrap img {
    animation: logoBounceIn .7s .2s cubic-bezier(.34, 1.56, .64, 1) both;
}