/* =========================================================
   SEOVORO GLOBAL CUSTOM CSS
========================================================= */

.eyebrow,
.section-title {
    margin-bottom: var(--n-space-sm);
}

.hero,
.hero-content,
.hero-mock-card,
.hero-visual {
    position: relative;
}

.eyebrow,
.footer-Seovoro h6,
.tag-pill {
    text-transform: uppercase;
}

.blog-card-img,
.cta-section,
.hero,
.page-header,
.portfolio-card {
    overflow: hidden;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --n-primary: #155EEF;
    --n-primary-dark: #0E3FB0;
    --n-secondary: #6941C6;
    --n-navy: #0B1437;
    --n-success: #12B76A;
    --n-slate: #667085;
    --n-slate-light: #98A2B3;

    --n-bg: #F7F9FC;
    --n-bg-alt: #EEF2FF;
    --n-border: #E4E7EC;
    --n-white: #FFFFFF;

    --n-gradient-primary:
        linear-gradient(135deg, #155EEF 0%, #6941C6 100%);

    --n-gradient-soft:
        linear-gradient(135deg, #EEF2FF 0%, #F4F0FF 100%);

    --n-gradient-dark:
        linear-gradient(135deg, #0B1437 0%, #1A2456 100%);

    --n-font-display: 'Sora', sans-serif;
    --n-font-body: 'Inter', sans-serif;

    --n-space-xs: 0.5rem;
    --n-space-sm: 1rem;
    --n-space-md: 1.5rem;
    --n-space-lg: 2.5rem;
    --n-space-xl: 4rem;
    --n-space-2xl: 6rem;

    --n-radius-sm: 8px;
    --n-radius-md: 14px;
    --n-radius-lg: 20px;
    --n-radius-pill: 100px;

    --n-shadow-sm:
        0 2px 8px rgba(11, 20, 55, 0.06);

    --n-shadow-md:
        0 8px 24px rgba(11, 20, 55, 0.08);

    --n-shadow-lg:
        0 20px 48px rgba(11, 20, 55, 0.12);

    --n-shadow-primary:
        0 12px 28px rgba(21, 94, 239, 0.25);

    --bs-primary: #155EEF;
    --bs-primary-rgb: 21,94,239;
    --bs-body-font-family: var(--n-font-body);
    --bs-body-color: var(--n-slate);
    --bs-body-bg: var(--n-white);
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--n-font-body);
    color: var(--n-slate);
    background-color: var(--n-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.eyebrow,
.font-display,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--n-font-display);
    font-weight: 700;
}

.font-display,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--n-navy);
    letter-spacing: -.02em;
}

h1 {
    font-weight: 800;
}

p {
    line-height: 1.7;
}

a {
    text-decoration: none;
}


/* =========================================================
   TEXT / BACKGROUNDS
========================================================= */

.text-primary-custom {
    color: var(--n-primary) !important;
}

.text-slate {
    color: var(--n-slate) !important;
}

.text-navy {
    color: var(--n-navy) !important;
}

.bg-soft {
    background-color: var(--n-bg) !important;
}

.bg-soft-alt {
    background: var(--n-gradient-soft) !important;
}

.bg-navy {
    background-color: var(--n-navy) !important;
}

.bg-gradient-primary {
    background: var(--n-gradient-primary) !important;
}

.bg-gradient-dark {
    background: var(--n-gradient-dark) !important;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding-top: var(--n-space-2xl);
    padding-bottom: var(--n-space-2xl);
}

.section-sm {
    padding-top: var(--n-space-xl);
    padding-bottom: var(--n-space-xl);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;

    font-size: .75rem;
    letter-spacing: .12em;

    color: var(--n-primary);
    background: var(--n-bg-alt);

    padding: .4rem 1rem;
    border-radius: var(--n-radius-pill);
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--n-primary);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--n-slate);
    max-width: 620px;
}

.section-header {
    margin-bottom: var(--n-space-xl);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn,
.navbar-Seovoro .nav-link {
    font-family: var(--n-font-display);
    font-weight: 600;
    font-size: .95rem;
}

.btn {
    border-radius: var(--n-radius-sm);
    padding: .75rem 1.75rem;
    transition: .25s;
    border-width: 1.5px;
}

.btn-primary {
    background: var(--n-gradient-primary);
    border: none;
    box-shadow: var(--n-shadow-primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(21,94,239,.32);
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--n-primary);
    color: var(--n-primary);
    background: 0 0;
}

.btn-outline-primary:hover {
    background: var(--n-primary);
    border-color: var(--n-primary);
    transform: translateY(-2px);
}

.btn-light-custom {
    background: #fff;
    color: var(--n-navy);
    border: 1.5px solid var(--n-border);
}

.btn-light-custom:hover {
    background: var(--n-bg);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: rgba(255,255,255,.4);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}

.btn-lg-custom {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm-custom {
    padding: .5rem 1.25rem;
    font-size: .85rem;
}

.card-premium:hover,
.pricing-card:hover {
    transform: translateY(-6px);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar-Seovoro {
    padding: 1.25rem 0;
    transition: .3s;
    background: rgba(255,255,255,0);
}

.navbar-Seovoro.scrolled {
    padding: .75rem 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--n-shadow-sm);
}

.navbar-brand-custom {
    font-family: var(--n-font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--n-navy) !important;
    letter-spacing: -.02em;
}

.breadcrumb-custom .active,
.navbar-brand-custom span {
    color: var(--n-primary);
}

.navbar-Seovoro .nav-link {
    color: #987777 !important;
    padding: .5rem 1.1rem !important;
    border-radius: var(--n-radius-sm);
    transition: .2s;
}

.nav2 {
    color: #ff0 !important;
}

.navbar-Seovoro .nav-link.active,
.navbar-Seovoro .nav-link:hover {
    color: #0f0f40 !important;
    background: var(--n-bg-alt);
}

.navbar-toggler-custom {
    border: none;
    width: 44px;
    height: 44px;
    border-radius: var(--n-radius-sm);
    background: var(--n-bg-alt);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    padding: 0;
}

.navbar-toggler-custom .bar {
    width: 20px;
    height: 2px;
    background: var(--n-navy);
    border-radius: 2px;
    transition: .3s;
}

.navbar-toggler-custom.active .bar:first-child {
    transform: translateY(6px) rotate(45deg);
}

.navbar-toggler-custom.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-custom.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding-top: 9rem;
    padding-bottom: 5rem;
    background: var(--n-gradient-soft);
}

.hero::before,
.hero::after {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    content: '';
}

.hero::before {
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            rgba(105,65,198,.14) 0,
            rgba(21,94,239,.06) 60%,
            transparent 100%
        );
}

.hero::after {
    bottom: -200px;
    left: -150px;
    width: 450px;
    height: 450px;

    background:
        radial-gradient(
            circle,
            rgba(21,94,239,.1) 0,
            transparent 70%
        );
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.15;
}

.hero-visual {
    z-index: 1;
}

.hero-mock-card {
    background: #fff;
    border-radius: var(--n-radius-lg);
    box-shadow: var(--n-shadow-lg);
    padding: var(--n-space-md);
    border: 1px solid var(--n-border);
}

.hero-mock-card .mock-bar {
    height: 10px;
    border-radius: var(--n-radius-pill);
    background: var(--n-bg-alt);
    margin-bottom: .75rem;
}

.hero-float-badge {
    position: absolute;
    background: #fff;
    border-radius: var(--n-radius-md);
    padding: .9rem 1.25rem;

    display: flex;
    align-items: center;
    gap: .75rem;

    color: var(--n-navy);
    font-family: var(--n-font-display);
    font-weight: 700;
    font-size: .9rem;

    z-index: 3;
    box-shadow: var(--n-shadow-md);
}

.hero-float-badge.badge-1 {
    top: -1.5rem;
    left: -1.5rem;
}

.hero-float-badge.badge-2 {
    bottom: -1.5rem;
    right: -1.5rem;
}

.hero-float-badge .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


/* =========================================================
   STATS
========================================================= */

.stats-strip {
    border-top: 1px solid var(--n-border);
    border-bottom: 1px solid var(--n-border);
}

.stat-item .stat-number {
    font-family: var(--n-font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--n-navy);
}

.stat-item .stat-label {
    font-size: .9rem;
    color: var(--n-slate);
    font-weight: 500;
}


/* =========================================================
   ICON BOXES
========================================================= */

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--n-radius-sm);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-box-primary {
    background: var(--n-bg-alt);
    color: var(--n-primary);
}

.icon-box-secondary {
    background: #f4f0ff;
    color: var(--n-secondary);
}

.icon-box-success {
    background: #e7f9f0;
    color: var(--n-success);
}

.icon-box-lg {
    width: 72px;
    height: 72px;
    font-size: 2rem;
    border-radius: var(--n-radius-md);
}

.icon-box-white {
    background: rgba(255,255,255,.12);
    color: #fff;
}


/* =========================================================
   PREMIUM CARDS
========================================================= */

.card-premium,
.pricing-card {
    background: #fff;
    padding: var(--n-space-lg);
    box-shadow: var(--n-shadow-sm);
    height: 100%;
}

.card-premium {
    border: 1px solid var(--n-border);
    border-radius: var(--n-radius-md);
    transition: .3s;
}

.card-premium:hover {
    border-color: transparent;
    box-shadow: var(--n-shadow-md);
}

.card-premium .card-title {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.card-link-arrow {
    font-family: var(--n-font-display);
    font-weight: 700;
    font-size: .9rem;
    color: var(--n-primary);

    display: inline-flex;
    align-items: center;
    gap: .4rem;

    transition: gap .2s;
}

.card-link-arrow:hover {
    gap: .7rem;
    color: var(--n-primary-dark);
}


/* =========================================================
   PRICING
========================================================= */

.pricing-card {
    border: 1px solid var(--n-border);
    border-radius: var(--n-radius-lg);
    transition: .3s;
    position: relative;
}

.pricing-card.featured {
    background: var(--n-gradient-dark);
    border: none;
    color: #fff;
    box-shadow: var(--n-shadow-lg);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    right: 2rem;

    background: var(--n-gradient-primary);
    color: #fff;

    font-family: var(--n-font-display);
    font-weight: 700;
    font-size: .75rem;

    padding: .4rem 1rem;
    border-radius: var(--n-radius-pill);
    letter-spacing: .05em;
}

.price {
    font-family: var(--n-font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--n-navy);
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--n-slate);
}

.pricing-divider {
    border-color: var(--n-border);
    margin: var(--n-space-md) 0;
}

.pricing-card.featured .price,
.pricing-card.featured h3 {
    color: #fff;
}

.pricing-card.featured .text-slate {
    color: rgba(255,255,255,.65) !important;
}

.pricing-card.featured ul li {
    color: rgba(255,255,255,.85);
}

.pricing-card.featured .pricing-divider {
    border-color: rgba(255,255,255,.12);
}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;

    margin-bottom: .75rem;

    font-size: .95rem;
    color: var(--n-slate);
}

.feature-list li i {
    color: var(--n-success);
    margin-top: .2rem;
    flex-shrink: 0;
}

.feature-list li.disabled {
    opacity: .45;
}

.feature-list li.disabled i {
    color: var(--n-slate-light);
}


/* =========================================================
   BLOG
========================================================= */

.blog-card-img {
    border-radius: var(--n-radius-md) var(--n-radius-md) 0 0;
    aspect-ratio: 16/10;
}

.blog-card-img img {
    transition: transform .4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-premium:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: var(--n-space-md) var(--n-space-md) 0;
}

.tag-pill {
    display: inline-block;

    font-family: var(--n-font-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;

    color: var(--n-primary);
    background: var(--n-bg-alt);

    padding: .3rem .8rem;
    border-radius: var(--n-radius-pill);

    margin-bottom: .75rem;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;

    font-size: .85rem;
    color: var(--n-slate-light);

    margin-top: 1rem;
    padding-top: 1rem;

    border-top: 1px solid var(--n-border);
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--n-radius-md);
    box-shadow: var(--n-shadow-sm);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(11,20,55,0) 30%,
            rgba(11,20,55,.88) 100%
        );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: var(--n-space-md);

    opacity: 0;
    transition: opacity .35s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay h5 {
    color: #fff;
    margin-bottom: .25rem;
}

.portfolio-overlay span {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-card {
    background: #fff;
    border: 1px solid var(--n-border);
    padding: var(--n-space-lg);
    height: 100%;
    border-radius: var(--n-radius-md);
    box-shadow: var(--n-shadow-sm);
}

.testimonial-card .stars {
    color: #ffb400;
    letter-spacing: .15em;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-top: var(--n-space-md);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .name {
    font-family: var(--n-font-display);
    font-weight: 700;
    color: var(--n-navy);
    font-size: .95rem;
}

.testimonial-author .role {
    font-size: .8rem;
    color: var(--n-slate-light);
}


/* =========================================================
   PROCESS
========================================================= */

.process-step {
    position: relative;
    padding-left: 0;
}

.process-number {
    font-size: 3rem;
    color: var(--n-navy) !important;
    -webkit-text-fill-color: var(--n-navy) !important;
    background: 0 0 !important;
    -webkit-background-clip: initial;

    line-height: 1;
    margin-bottom: 1rem;
    display: block;

    font-weight: 800;
    font-family: var(--n-font-display);
}


/* =========================================================
   LOGO CLOUD
========================================================= */

.logo-cloud-item {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.25rem;
    color: var(--n-slate-light);
    opacity: .7;

    transition: opacity .2s;

    font-weight: 800;
    font-family: var(--n-font-display);
}

.logo-cloud-item:hover {
    opacity: 1;
    color: var(--n-navy);
}


/* =========================================================
   FORMS
========================================================= */

.form-control,
.form-select {
    border: 1.5px solid var(--n-border);
    border-radius: var(--n-radius-sm);

    padding: .85rem 1.1rem;

    font-size: .95rem;

    background-color: var(--n-bg);

    transition: .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--n-primary);

    box-shadow:
        0 0 0 4px rgba(21,94,239,.1);

    background-color: #fff;
}

.form-label {
    font-family: var(--n-font-display);
    font-weight: 600;
    font-size: .9rem;
    color: var(--n-navy);
    margin-bottom: .5rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--n-success);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    background: var(--n-gradient-dark);
    border-radius: var(--n-radius-lg);

    padding:
        var(--n-space-2xl)
        var(--n-space-lg);

    position: relative;
}

.cta-section::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,94,239,.25) 0,
            transparent 70%
        );
}

.cta-section h2,
.cta-section p {
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255,255,255,.7);
}


/* =========================================================
   OLD FOOTER SUPPORT
========================================================= */

.footer-Seovoro {
    background: var(--n-navy);
    color: rgba(255,255,255,.65);
    padding-top: var(--n-space-2xl);
}

.footer-Seovoro h6 {
    color: #fff;
    font-size: .85rem;
    letter-spacing: .08em;
    margin-bottom: var(--n-space-md);
}

.footer-Seovoro a {
    color: rgba(255,255,255,.6);
    transition: color .2s;
    display: block;
    margin-bottom: .65rem;
    font-size: .95rem;
}

.footer-Seovoro a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: var(--n-space-xl);
    padding: var(--n-space-md) 0;
    font-size: .85rem;
}

.social-icon {
    display: flex;
    align-items: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    justify-content: center;

    color: #fff !important;

    transition: .2s;
    margin-bottom: 0 !important;
}

.social-icon:hover {
    background: var(--n-primary);
    transform: translateY(-3px);
}


/* =========================================================
   PAGE HEADER
========================================================= */

.page-header {
    background: var(--n-gradient-dark);
    padding: 8rem 0 4rem;

    position: relative;
    text-align: center;
}

.page-header::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,94,239,.25) 0,
            transparent 70%
        );
}

.page-header h1 {
    color: #fff;
}

.breadcrumb-custom {
    display: inline-flex;
    gap: .5rem;

    color: rgba(255,255,255,.6);

    font-size: .9rem;
    font-weight: 500;
}

.breadcrumb-custom a {
    color: rgba(255,255,255,.6);
}

.breadcrumb-custom .active {
    color: #fff;
}

.breadcrumb-custom a:hover {
    color: #fff;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .6s,
        transform .6s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   DARK MODE
========================================================= */

.theme-toggle {
    border: none;
    background: 0 0;
    font-size: 22px;
    cursor: pointer;
}

body.dark-mode {
    background: #111;
    color: #fff;
}

body.dark-mode .navbar,
body.dark-mode footer,
body.dark-mode section {
    background: #111 !important;
    color: #fff;
}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
    position: fixed;

    width: 58px;
    height: 58px;

    right: 24px;
    bottom: 24px;

    background: #25d366;
    color: #fff !important;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    text-decoration: none !important;

    z-index: 99999;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);

    transition:
        transform .25s,
        box-shadow .25s;
}

.whatsapp-float:hover {
    color: #fff !important;

    transform:
        translateY(-4px)
        scale(1.05);

    box-shadow:
        0 12px 30px rgba(37,211,102,.35);
}


/* =========================================================
   =========================================================
   FUTURISTIC SEOVORO FOOTER
   =========================================================
========================================================= */

.footer {
    position: relative;
    overflow: hidden;

    margin-top: 100px;
    padding: 90px 0 0;

    color: #fff;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(124,58,237,.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(168,85,247,.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(91,33,182,.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #030207 0%,
            #09040f 45%,
            #040208 100%
        );

    border-top:
        1px solid rgba(168,85,247,.25);
}


/* =========================================================
   GRID
========================================================= */

.footer::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .75;

    background-image:
        linear-gradient(
            rgba(168,85,247,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(168,85,247,.045) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0,0,0,.65) 55%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0,0,0,.65) 55%,
            transparent 100%
        );
}


/* =========================================================
   NEON TOP LINE
========================================================= */

.footer::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: min(700px, 70%);
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #7c3aed,
            #c084fc,
            #a855f7,
            #7c3aed,
            transparent
        );

    box-shadow:
        0 0 10px rgba(168,85,247,.9),
        0 0 30px rgba(124,58,237,.6),
        0 0 70px rgba(124,58,237,.25);

    pointer-events: none;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.footer > .container {
    position: relative;
    z-index: 3;
}


/* =========================================================
   HUGE SEOVORO WATERMARK
========================================================= */

.footer > .container::before {
    content: "SEOVORO";

    position: absolute;

    left: 50%;
    bottom: 65px;

    width: 100%;

    transform: translateX(-50%);

    text-align: center;

    font-family: 'Sora', sans-serif;

    font-size: clamp(
        100px,
        17vw,
        245px
    );

    font-weight: 800;

    line-height: .8;

    letter-spacing: -12px;

    white-space: nowrap;

    color: rgba(168,85,247,.025);

    text-shadow:
        0 0 50px rgba(168,85,247,.08);

    pointer-events: none;
    user-select: none;

    z-index: 0;

    animation:
        footerWatermark 8s ease-in-out infinite;
}


/* =========================================================
   PURPLE ATMOSPHERE
========================================================= */

.footer > .container::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 80%;
    height: 260px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(124,58,237,.14),
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CONTENT ABOVE DECORATIONS
========================================================= */

.footer > .container > .row,
.footer > .container > .footer-bottom {
    position: relative;
    z-index: 5;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    position: relative;

    display: inline-block;

    font-family: 'Sora', sans-serif;

    font-size: clamp(
        48px,
        6vw,
        76px
    );

    font-weight: 800;

    line-height: .9;

    letter-spacing: -5px;

    color: #fff !important;

    text-decoration: none !important;

    transition:
        transform .35s ease,
        text-shadow .35s ease;
}

.footer-brand span {
    color: #a855f7;

    text-shadow:
        0 0 10px rgba(168,85,247,.9),
        0 0 25px rgba(124,58,237,.65),
        0 0 50px rgba(124,58,237,.35);
}

.footer-brand:hover {
    transform: translateY(-4px);

    text-shadow:
        0 0 15px rgba(168,85,247,.3),
        0 0 35px rgba(168,85,247,.3);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer .col-lg-4 > p {
    max-width: 390px !important;

    margin-top: 24px !important;

    color: rgba(226,218,235,.68) !important;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer h5 {
    position: relative;

    margin: 8px 0 25px;

    color: #fff !important;

    font-family: 'Sora', sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.footer h5::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 10px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc
        );

    box-shadow:
        0 0 8px rgba(168,85,247,.8),
        0 0 18px rgba(124,58,237,.4);

    transition: width .35s ease;
}

.footer .col-lg-2:hover h5::after {
    width: 55px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer .col-lg-2 a:not(.social) {
    position: relative;

    display: block;

    width: fit-content;

    margin-bottom: 14px;

    color: rgba(202,193,211,.62);

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease,
        padding-left .3s ease;
}

.footer .col-lg-2 a:not(.social)::before {
    content: "→";

    position: absolute;

    left: -18px;
    top: 0;

    color: #c084fc;

    opacity: 0;

    transform: translateX(-6px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.footer .col-lg-2 a:not(.social)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc
        );

    box-shadow:
        0 0 8px rgba(168,85,247,.7);

    transition: width .35s ease;
}

.footer .col-lg-2 a:not(.social):hover {
    color: #fff !important;

    transform: translateX(4px);

    padding-left: 7px;
}

.footer .col-lg-2 a:not(.social):hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer .col-lg-2 a:not(.social):hover::after {
    width: 100%;
}


/* =========================================================
   SOCIAL BUTTONS
========================================================= */

.footer .social {
    position: relative;

    width: 44px;
    height: 44px;

    margin-right: 7px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #b8aec4 !important;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    overflow: hidden;

    transition:
        transform .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.footer .social::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 0;
    height: 0;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(168,85,247,.55),
            transparent 70%
        );

    transition:
        width .45s ease,
        height .45s ease;
}

.footer .social i {
    position: relative;

    z-index: 2;

    font-size: 16px;

    transition:
        transform .3s ease;
}

.footer .social:hover {
    color: #fff !important;

    background:
        rgba(124,58,237,.10);

    border-color:
        rgba(168,85,247,.65);

    transform:
        translateY(-6px);

    box-shadow:
        0 10px 30px rgba(124,58,237,.25),
        0 0 25px rgba(168,85,247,.15);
}

.footer .social:hover::before {
    width: 100px;
    height: 100px;
}

.footer .social:hover i {
    transform: scale(1.15);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    position: relative;

    margin-top: 75px;

    padding: 25px 0;

    border-top:
        1px solid rgba(255,255,255,.08);

    color:
        rgba(177,166,190,.48);

    font-size: 11px;

    letter-spacing: .4px;
}


/* =========================================================
   MOVING NEON LINE
========================================================= */

.footer-bottom::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 0;

    width: 120px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc,
            transparent
        );

    box-shadow:
        0 0 12px rgba(168,85,247,.8),
        0 0 25px rgba(124,58,237,.4);

    animation:
        footerLine 4s ease-in-out infinite;
}


/* =========================================================
   FOOTER ANIMATIONS
========================================================= */

@keyframes footerWatermark {

    0%,
    100% {
        opacity: .65;

        transform:
            translateX(-50%)
            scale(1);
    }

    50% {
        opacity: 1;

        transform:
            translateX(-50%)
            scale(1.02);
    }
}

@keyframes footerLine {

    0% {
        left: 0;
        opacity: .45;
    }

    50% {
        left: calc(100% - 120px);
        opacity: 1;
    }

    100% {
        left: 0;
        opacity: .45;
    }
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-visual::before,
.product-visual::after {
    display: none !important;
    content: none !important;
}

.product-card {
    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}


/* =========================================================
   PRODUCT VISUAL
========================================================= */

.product-visual {
    position: relative !important;
    overflow: hidden !important;
}


/* =========================================================
   BOT IMAGE CONTAINER
========================================================= */

.product-visual .bot-image {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
    translate: none !important;

    transition: none !important;

    display: block;
}


/* =========================================================
   ACTUAL BOT IMAGE
========================================================= */

.product-visual .bot-image img {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    object-fit: cover !important;

    transform: none !important;
    translate: none !important;

    transition: none !important;

    scale: 1 !important;
}


/* =========================================================
   PREVENT PRODUCT IMAGE HOVER EFFECT
========================================================= */

.product-card:hover .product-visual,
.product-card:hover .bot-image,
.product-card:hover .bot-image img,
.product-card:hover img {
    transform: none !important;
    translate: none !important;
    scale: 1 !important;
}


/* =========================================================
   CATEGORY BADGE
========================================================= */

.product-category {
    position: absolute;
    z-index: 10;
}

.bot-image {
    z-index: 1;
}


/* =========================================================
   PRODUCTS INFO
========================================================= */

.products-info {
    max-width: 900px;

    margin:
        70px auto 0;

    text-align: center;

    padding:
        50px 35px;
}

.products-info .products-label {
    justify-content: center;
}

.products-info h2 {
    margin-top: 12px;
}

.products-info p {
    margin-top: 20px;

    line-height: 1.8;

    color: #667085;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .hero {
        padding-top: 7rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer {
        margin-top: 80px;
        padding-top: 75px;
    }

    .footer-brand {
        font-size: 60px;
    }

    .footer-bottom {
        margin-top: 55px;
    }

    .footer > .container::before {
        font-size: 18vw;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .section {
        padding-top: var(--n-space-xl);
        padding-bottom: var(--n-space-xl);
    }

    .section-sm {
        padding-top: var(--n-space-lg);
        padding-bottom: var(--n-space-lg);
    }

    .hero-float-badge {
        padding: .6rem .9rem;
        font-size: .75rem;
    }

    .hero-float-badge.badge-1 {
        top: -1rem;
        left: -.5rem;
    }

    .hero-float-badge.badge-2 {
        bottom: -1rem;
        right: -.5rem;
    }
}


@media (max-width: 575.98px) {

    .hero h1 {
        font-size: 2rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 16px;
        bottom: 16px;

        font-size: 27px;
    }
}


/* =========================================================
   FUTURISTIC FOOTER MOBILE
========================================================= */

@media (max-width: 576px) {

    .footer {
        margin-top: 65px;
        padding-top: 60px;
    }

    .footer-brand {
        font-size: 50px;
        letter-spacing: -4px;
    }

    .footer .col-lg-4 > p {
        font-size: 13px;
        line-height: 1.75;
    }

    .footer h5 {
        margin-top: 18px;
        margin-bottom: 20px;
    }

    .footer .col-lg-2 a:not(.social) {
        font-size: 12px;
    }

    .footer > .container::before {
        font-size: 21vw;
        letter-spacing: -5px;
        bottom: 75px;
    }

    .footer-bottom {
        margin-top: 45px;

        gap: 10px;

        text-align: center;

        align-items: center;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .btn:hover,
    .card-premium:hover,
    .portfolio-card img,
    .pricing-card:hover,
    .reveal {
        transform: none;
    }

    .reveal {
        opacity: 1;
        transition: none;
    }

    .footer > .container::before,
    .footer-bottom::before {
        animation: none;
    }

    .footer a,
    .footer .social,
    .footer-brand {
        transition: none;
    }
}
/* =========================================================
   SEOVORO GLOBAL FOOTER — UNIVERSAL
   SAME SIZE ON EVERY PAGE
========================================================= */

.footer {
    position: relative;
    overflow: hidden;

    width: 100%;
    margin-top: 80px;

    padding: 72px 0 0;

    color: #fff;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(124,58,237,.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(168,85,247,.15),
            transparent 27%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(91,33,182,.18),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #030207 0%,
            #09040f 45%,
            #040208 100%
        );

    border-top: 1px solid rgba(168,85,247,.25);

    box-sizing: border-box;
}


/* =========================================================
   TOP NEON LINE
========================================================= */

.footer::after {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(700px, 70%);
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            #7c3aed,
            #c084fc,
            #a855f7,
            #7c3aed,
            transparent
        );

    box-shadow:
        0 0 10px rgba(168,85,247,.9),
        0 0 30px rgba(124,58,237,.6),
        0 0 70px rgba(124,58,237,.25);

    pointer-events: none;
}


/* =========================================================
   GRID BACKGROUND
========================================================= */

.footer::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .75;

    background-image:
        linear-gradient(
            rgba(168,85,247,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(168,85,247,.045) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0,0,0,.65) 55%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black 0%,
            rgba(0,0,0,.65) 55%,
            transparent 100%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.footer > .container {
    position: relative;
    z-index: 3;
}


/* =========================================================
   WATERMARK
========================================================= */

.footer > .container::before {
    content: "SEOVORO";

    position: absolute;

    left: 50%;
    bottom: 65px;

    width: 100%;

    transform: translateX(-50%);

    text-align: center;

    font-family: 'Sora', sans-serif;

    font-size: clamp(
        100px,
        17vw,
        245px
    );

    font-weight: 800;

    line-height: .8;

    letter-spacing: -12px;

    white-space: nowrap;

    color: rgba(168,85,247,.025);

    pointer-events: none;
    user-select: none;

    z-index: 0;
}


/* =========================================================
   PURPLE GLOW
========================================================= */

.footer > .container::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 80%;
    height: 260px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(124,58,237,.14),
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CONTENT LAYER
========================================================= */

.footer > .container > .row,
.footer > .container > .footer-bottom {
    position: relative;
    z-index: 5;
}


/* =========================================================
   SEOVORO BRAND
========================================================= */

.footer-brand {
    position: relative;

    display: inline-block;

    font-family: 'Sora', sans-serif;

    /*
       SAME BRAND SIZE EVERY PAGE
    */
    font-size: 64px;

    font-weight: 800;

    line-height: .9;

    letter-spacing: -5px;

    color: #fff !important;

    text-decoration: none !important;

    transition:
        transform .35s ease,
        text-shadow .35s ease;
}

.footer-brand span {
    color: #a855f7;

    text-shadow:
        0 0 10px rgba(168,85,247,.9),
        0 0 25px rgba(124,58,237,.65),
        0 0 50px rgba(124,58,237,.35);
}

.footer-brand:hover {
    transform: translateY(-4px);

    text-shadow:
        0 0 15px rgba(168,85,247,.3),
        0 0 35px rgba(168,85,247,.3);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.footer .col-lg-4 > p,
.footer-description {
    max-width: 390px !important;

    margin-top: 24px !important;
    margin-bottom: 0 !important;

    color: rgba(226,218,235,.68) !important;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer h5 {
    position: relative;

    margin: 8px 0 25px;

    color: #fff !important;

    font-family: 'Sora', sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.footer h5::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 10px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc
        );

    box-shadow:
        0 0 8px rgba(168,85,247,.8),
        0 0 18px rgba(124,58,237,.4);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer .col-lg-2 a:not(.social) {
    position: relative;

    display: block;

    width: fit-content;

    margin-bottom: 14px;

    color: rgba(202,193,211,.62);

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease,
        padding-left .3s ease;
}

.footer .col-lg-2 a:not(.social)::before {
    content: "→";

    position: absolute;

    left: -18px;
    top: 0;

    color: #c084fc;

    opacity: 0;

    transition: opacity .3s ease;
}

.footer .col-lg-2 a:not(.social)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #c084fc
        );

    transition: width .35s ease;
}

.footer .col-lg-2 a:not(.social):hover {
    color: #fff !important;

    transform: translateX(4px);

    padding-left: 7px;
}

.footer .col-lg-2 a:not(.social):hover::before {
    opacity: 1;
}

.footer .col-lg-2 a:not(.social):hover::after {
    width: 100%;
}


/* =========================================================
   SOCIAL BUTTONS
========================================================= */

.footer-socials {
    display: flex;
    align-items: center;

    margin-top: 24px;
}

.footer .social {
    position: relative;

    width: 44px;
    height: 44px;

    margin-right: 7px;
    margin-bottom: 0 !important;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #b8aec4 !important;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    text-decoration: none;

    transition:
        transform .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.footer .social i {
    font-size: 16px;
}

.footer .social:hover {
    color: #fff !important;

    background: rgba(124,58,237,.10);

    border-color: rgba(168,85,247,.65);

    transform: translateY(-5px);

    box-shadow:
        0 10px 30px rgba(124,58,237,.25),
        0 0 25px rgba(168,85,247,.15);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    position: relative;

    margin-top: 65px;

    padding: 24px 0;

    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(177,166,190,.48);

    font-size: 11px;

    letter-spacing: .4px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .footer {
        margin-top: 70px;
        padding-top: 65px;
    }

    .footer-brand {
        font-size: 58px;
    }

    .footer-bottom {
        margin-top: 50px;
    }
}


@media (max-width: 767.98px) {

    .footer {
        margin-top: 60px;
        padding-top: 55px;
    }

    .footer-brand {
        font-size: 50px;
        letter-spacing: -4px;
    }

    .footer h5 {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 45px;

        gap: 10px;

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

    .footer > .container::before {
        font-size: 21vw;
        letter-spacing: -5px;
        bottom: 75px;
    }
}


@media (max-width: 575.98px) {

    .footer {
        margin-top: 50px;
        padding-top: 50px;
    }

    .footer-brand {
        font-size: 44px;
    }

    .footer .col-lg-4 > p,
    .footer-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .footer .col-lg-2 a:not(.social) {
        font-size: 12px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}