:root {
    --brand-purple: #4c4495;
    --brand-purple-light: #6b63c7;
    --brand-purple-dim: rgba(76, 68, 149, 0.15);
    --brand-purple-border: rgba(76, 68, 149, 0.25);
    --bg-dark: #07060f;
    --bg-card: #0f0e1a;
    --bg-card2: #13121f;
    --neutral-gray: #f5f5f7;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --shadow-card: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    --shadow-purple: 0 0 40px rgba(76, 68, 149, 0.3), 0 0 80px rgba(76, 68, 149, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* ─── ANIMATIONS ─── */
@keyframes blur-in {
    0% {
        filter: blur(12px);
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        filter: blur(0);
        opacity: 1;
        transform: translateY(0);
    }
}

.blur-in {
    animation: blur-in 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes nav-in {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.4;
        transform: scaleY(0.6);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-up {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.reveal {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

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

/* ─── LAYOUT UTILITIES ─── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

.section-pad {
    padding: 96px 0;
}

.card-shadow {
    box-shadow: var(--shadow-card);
}

.rounded-card {
    border-radius: 24px;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 16px;
    left: 24px;
    right: 24px;
    width: auto;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 68px;
    background: rgba(7, 6, 15, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(76, 68, 149, 0.15);
    z-index: 1000;
    animation: nav-in 0.6s ease-out 0.1s both;
    padding: 8px 24px;
}

#navbar .container-fluid {
    padding: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#navbar .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    white-space: nowrap;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus {
    color: #fff;
}

#navbarNav.collapse:not(.show) {
    display: none;
}

@media (max-width: 991.98px) {
    #navbar {
        top: 12px;
        left: 12px;
        right: 12px;
        padding: 12px 16px;
    }

    #navbarNav {
        background: rgba(15, 14, 26, 0.98);
        margin-top: 12px;
        border-radius: 16px;
        padding: 0 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.nav-cta {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s ease-out;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(76, 68, 149, 0.5);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
    background: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 20px;
    height: 16px;
    background-image: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(76, 68, 149, 0.4) 0%, transparent 70%), var(--bg-dark);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.06;
}

.hero-bg-pattern svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 68, 149, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 100px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-purple-dim);
    border: 1px solid var(--brand-purple-border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9d98e0;
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-purple-light);
    animation: pulse-line 2s infinite;
}

.hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-wrap: balance;
}

.hero-headline em {
    font-style: italic;
    background: linear-gradient(135deg, #9d98e0, #6b63c7, var(--brand-purple));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.3s ease-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 24px rgba(76, 68, 149, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(76, 68, 149, 0.6);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 16px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.3s ease-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--brand-purple), transparent);
    animation: pulse-line 2s ease-in-out infinite;
}

/* ─── TRUST BADGES ─── */
#trust {
    padding: 0 0 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease-out;
}

.trust-card:hover {
    border-color: var(--brand-purple-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 0 20px rgba(76, 68, 149, 0.15);
}

.trust-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.trust-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.trust-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── FEATURES BENTO ─── */
#features {
    padding: 96px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #9d98e0;
    margin-bottom: 16px;
    opacity: 0;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance;
    line-height: 1.1;
    opacity: 0;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
    opacity: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 56px;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 280px 280px;
    }
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease-out;
}

.bento-card:hover {
    border-color: var(--brand-purple-border);
    transform: scale(1.02);
    box-shadow: var(--shadow-card), 0 0 30px rgba(76, 68, 149, 0.2);
}

@media (min-width: 768px) {
    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

.bento-card-inner {
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-purple-dim);
    border: 1px solid var(--brand-purple-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #9d98e0;
}

.bento-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bento-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-large-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1830 0%, #0f0e1a 100%);
}

.bento-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 14, 26, 0.95) 30%, rgba(15, 14, 26, 0.3) 100%);
}

.bento-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(76, 68, 149, 0.3) 30px, rgba(76, 68, 149, 0.3) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(76, 68, 149, 0.3) 30px, rgba(76, 68, 149, 0.3) 31px);
}

.bento-accent-circle {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 68, 149, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-purple-dim);
    border: 1px solid var(--brand-purple-border);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #9d98e0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* mini dashboard in large bento */
.mini-dashboard {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 28px;
    gap: 10px;
}

.dash-bar {
    height: 8px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-light));
    opacity: 0.7;
}

.dash-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.dash-metric-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.dash-metric-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #9d98e0;
}

/* ─── SERVICES GRID ─── */
#services {
    padding: 96px 0;
    background: linear-gradient(to bottom, transparent, rgba(76, 68, 149, 0.04), transparent);
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 6px;
    box-shadow: var(--shadow-card);
    width: fit-content;
    position: relative;
}

.filter-pill {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s ease-out;
    background: none;
    border: none;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    font-family: 'Manrope', sans-serif;
}

.filter-pill:hover {
    color: #fff;
}

.filter-pill.active {
    color: #fff;
}

.filter-slider {
    position: absolute;
    top: 6px;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 0 16px rgba(76, 68, 149, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: var(--brand-purple-border);
    box-shadow: var(--shadow-card), 0 16px 40px rgba(76, 68, 149, 0.2);
}

.service-card.hidden {
    display: none;
}

.service-card-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-card2), #1a1830);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon {
    font-size: 2.5rem;
    opacity: 0.6;
    transition: all 0.3s;
}

.service-card:hover .service-card-icon {
    opacity: 1;
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    color: #fff;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-add-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease-out;
    border: none;
    cursor: pointer;
}

.service-card:hover .service-add-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-card-info {
    padding: 16px 18px 20px;
}

.service-name {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.service-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #9d98e0;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
    padding: 96px 0;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    height: 600px;
    position: relative;
}

.testimonials-col {
    overflow: hidden;
    position: relative;
    height: 600px;
}

.testimonials-col::before,
.testimonials-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-col::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
}

.testimonials-col::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.col-down .testimonials-scroll {
    animation: scroll-down 30s linear infinite;
}

.col-up .testimonials-scroll {
    animation: scroll-up 30s linear infinite;
}

.testimonials-col:hover .testimonials-scroll {
    animation-duration: 60s;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars span {
    color: #f5c842;
    font-size: 0.8rem;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

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

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-city {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.testimonial-service-tag {
    margin-top: 14px;
    display: inline-flex;
    background: var(--brand-purple-dim);
    border: 1px solid var(--brand-purple-border);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 0.65rem;
    color: #9d98e0;
    font-weight: 600;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .testimonials-track {
        grid-template-columns: 1fr;
        height: auto;
    }

    .testimonials-col:nth-child(2),
    .testimonials-col:nth-child(3) {
        display: none;
    }

    .testimonials-col {
        height: 400px;
    }

    .col-down .testimonials-scroll {
        animation: scroll-down 20s linear infinite;
    }
}

/* ─── CTA BANNER ─── */
#cta-banner {
    padding: 96px 0;
}

.cta-banner-inner {
    border-radius: 28px;
    min-height: 400px;
    background: linear-gradient(135deg, #1a1830 0%, #0d0c1a 50%, #1a1030 100%);
    border: 1px solid var(--brand-purple-border);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    box-shadow: var(--shadow-card), 0 0 60px rgba(76, 68, 149, 0.2);
    transition: all 0.6s ease-out;
}

.cta-banner-inner.reveal {
    transform: scale(0.96);
}

.cta-banner-inner.reveal.visible {
    transform: scale(1);
}

.cta-banner-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 68, 149, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-glow2 {
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 99, 199, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 280px;
}

.cta-banner-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.cta-value-props {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-value-prop {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-value-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-purple-dim);
    border: 1px solid var(--brand-purple-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-value-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-banner-action {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}

/* ─── NEWSLETTER ─── */
#newsletter {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--brand-purple) 0%, #3a3480 50%, #2a2460 100%);
    position: relative;
    overflow: hidden;
}

#newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 41px);
    pointer-events: none;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    min-width: 280px;
}

.newsletter-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.newsletter-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    min-width: 280px;
}

#newsletter-form-el {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    color: #fff;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background: #fff;
    color: var(--brand-purple);
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-success {
    display: none;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.newsletter-success-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ─── FOOTER ─── */
footer {
    position: relative;
    padding: 80px 0 32px;
    background: #030208;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-watermark {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 18vw, 260px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 40px;
    }
}

.footer-brand {
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.8rem;
    font-weight: 700;
}

.social-link:hover {
    background: var(--brand-purple-dim);
    border-color: var(--brand-purple-border);
    color: #9d98e0;
    transform: scale(1.1);
}

.footer-col-title {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
}

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

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-policies {
    display: flex;
    gap: 20px;
}

.footer-policies a {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: var(--text-secondary);
}

/* ─── SCROLL CTA FLOATING ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    color: #fff;
}

/* ─── SECTION HEADING WRAPPER ─── */
.section-heading {
    margin-bottom: 20px;
}

.section-heading-centered {
    text-align: center;
}

.section-heading-centered .section-sub {
    margin: 16px auto 0;
}

/* ─── GEOMETRIC PATTERN SVG (hero bg) ─── */
.geo-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ─── RESPONSIVE REFINEMENTS ─── */
@media (max-width: 1199.98px) {
    #navbar {
        top: 12px;
        left: 12px;
        right: 12px;
        padding: 12px 16px;
    }

    .mobile-nav-dropdown .dropdown-menu {
        min-width: min(300px, calc(100vw - 24px));
        width: min(340px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
    }
}

@media (max-width: 991.98px) {

    #hero {
        min-height: auto;
        padding: 140px 0 88px;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 0;
    }

    .hero-scroll {
        display: none;
    }

    .cta-banner-inner {
        padding: 40px 28px;
        gap: 32px;
    }

    .cta-banner-action {
        width: 100%;
    }

    .cta-banner-action .btn-primary,
    .cta-banner-action .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .newsletter-inner {
        gap: 32px;
    }

    .footer-watermark {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 16px;
    }

    .section-pad,
    #features,
    #services,
    #testimonials,
    #cta-banner,
    #newsletter {
        padding: 72px 0;
    }

    #trust {
        padding-bottom: 56px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .bento-card-inner {
        padding: 22px;
    }

    .bento-large {
        min-height: 560px;
    }

    .mini-dashboard {
        padding: 20px;
    }

    .filter-bar {
        width: 100%;
        border-radius: 24px;
        justify-content: center;
    }

    .filter-pill {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
        padding: 10px 16px;
    }

    .filter-slider {
        display: none;
    }

    .filter-pill.active {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-light));
    }

    .testimonials-col {
        height: 360px;
    }

    #newsletter-form-el {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }

    .footer-bottom,
    .footer-policies {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 20px;
    }
}

@media (max-width: 420px) {
    .mobile-nav-dropdown .dropdown-menu {
        min-width: calc(100vw - 24px);
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }
}