/* ============================================================
   QMINIMORE — APP.CSS
   Design System: Dark Navy + Electric Violet
   ============================================================ */

/* ─── 1. TOKENS & RESET ──────────────────────────────────── */
:root {
    --color-bg: #0D1117;
    --color-surface: #161B22;
    --color-surface-2: #1C2333;
    --color-accent: #7C3AED;
    --color-accent-light: #A78BFA;
    --color-accent-glow: rgba(124, 58, 237, 0.25);
    --color-teal: #0EA5E9;
    --color-green: #10B981;
    --color-text: #E6EDF3;
    --color-muted: #8B949E;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.16);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --navbar-h: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ─── 2. UTILITIES ───────────────────────────────────────── */
.container {
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 560px;
    margin-inline: auto;
}

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

/* ─── 3. BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.8rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(2px);
}

.btn-sm {
    padding: 0.5rem 1.35rem;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 0.95rem 2.4rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #152f67 50%, var(--color-teal) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-accent) 0%, #1c3d80 50%, var(--color-teal) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: rgba(124, 58, 237, 0.03);
    color: var(--color-accent-light);
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35), 0 0 12px rgba(124, 58, 237, 0.2);
    color: #ffffff;
}

/* ─── 4. NAVBAR ──────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo img {
    height: 90px;
    width: auto;
    display: block;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar__links a {
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

.navbar__links a.active {
    color: var(--color-accent-light);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    background: rgba(13, 17, 23, 0.97);
    border-top: 1px solid var(--color-border);
}

.mobile-nav a {
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav.open {
    display: flex;
}

/* ─── 5. HERO ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--navbar-h);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 5, 20, 0.72) 0%, rgba(13, 17, 23, 0.88) 60%),
        url('/images/hero-bg.webp') center center / cover no-repeat;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: rgba(124, 58, 237, 0.15);
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: rgba(14, 165, 233, 0.1);
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: rgba(16, 185, 129, 0.07);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-block: 6rem;
    max-width: 780px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent-light);
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.hero__title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-muted);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero__clients {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 6rem;
    /* Added margin to prevent overlap with scroll indicator */
}

.hero__clients>span {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.hero__client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--color-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* ─── 6. SERVICES ─────────────────────────────────────────── */
.services-section {
    position: relative;
    background:
        linear-gradient(180deg, rgba(13, 17, 23, 0.82) 0%, rgba(22, 27, 34, 0.92) 100%),
        url('/images/services-bg.webp') center center / cover no-repeat;
    background-attachment: fixed;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.services-grid .service-card {
    flex: 1 1 300px;
    /* Base width */
    max-width: calc(33.333% - 1rem);
    /* Max 3 per row */
}

@media (max-width: 992px) {
    .services-grid .service-card {
        max-width: calc(50% - 0.75rem);
        /* Max 2 per row */
    }
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--svc-color) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-color) 30%, transparent);
    display: grid;
    place-items: center;
    color: var(--svc-color);
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.service-card__tagline {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-accent-light);
}

.service-card__desc {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.service-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-muted);
}

.service-card__features svg {
    color: var(--color-green);
    flex-shrink: 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-top: auto;
    transition: gap var(--transition);
}

.service-card__link:hover {
    gap: 0.6rem;
}

/* ─── 7. STATS ────────────────────────────────────────────── */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(14, 165, 233, 0.06) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 500;
}

/* ─── 8. PORTFOLIO ────────────────────────────────────────── */
.portfolio-teaser-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.portfolio-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
}

.portfolio-card__header-flex {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.25rem;
}

.portfolio-card__logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.portfolio-card__header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-card__category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.portfolio-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.portfolio-card p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.portfolio-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    color: var(--color-accent-light);
}

.portfolio-card__result {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--color-green);
    font-weight: 600;
    margin-top: auto;
}

.portfolio-card__cta {
    align-self: flex-start;
}

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-muted);
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--color-text);
    border-color: var(--color-border-hover);
}

.filter-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* ─── 9. WHY US ───────────────────────────────────────────── */
.whyus-section {
    background: var(--color-surface);
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.whyus__text .section-label {
    margin-bottom: 0.75rem;
}

.whyus__text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.whyus__text>p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.whyus__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pillar {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.pillar svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.pillar div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.pillar strong {
    font-size: 0.88rem;
    color: var(--color-text);
}

.pillar span {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.whyus__visual {
    position: relative;
}

.visual-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.visual-metric {
    text-align: center;
    margin-bottom: 2rem;
}

.metric-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 500;
}

.metric-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.metric-bar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.metric-bar>div,
.metric-bar span:first-child {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.metric-bar {
    position: relative;
}

.metric-bar span:first-child {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.metric-bar span:last-child {
    font-size: 0.8rem;
    color: var(--color-text);
    font-weight: 600;
}

.metric-bar::after {
    content: '';
    display: block;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.metric-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: var(--pct);
    background: linear-gradient(90deg, var(--color-accent), var(--color-teal));
    border-radius: 2px;
    z-index: 1;
}

/* ─── 10. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
}

.cta-banner__text {
    flex: 1;
}

.cta-banner__text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-banner__text p {
    color: var(--color-muted);
}

/* ─── 11. PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
    position: relative;
    padding-top: var(--navbar-h);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

/* Per-page hero backgrounds */
body.page-services .page-hero {
    background:
        linear-gradient(180deg, rgba(8, 4, 20, 0.80) 0%, rgba(13, 17, 23, 0.94) 100%),
        url('/images/services-page-bg.webp') center top / cover no-repeat;
}

body.page-portfolio .page-hero {
    background:
        linear-gradient(180deg, rgba(4, 14, 18, 0.80) 0%, rgba(13, 17, 23, 0.94) 100%),
        url('/images/portfolio-page-bg.webp') center center / cover no-repeat;
}

body.page-contact .page-hero {
    background:
        linear-gradient(180deg, rgba(6, 8, 22, 0.80) 0%, rgba(13, 17, 23, 0.94) 100%),
        url('/images/contact-page-bg.webp') center center / cover no-repeat;
}

body.page-pricing .page-hero {
    background:
        linear-gradient(180deg, rgba(10, 6, 25, 0.80) 0%, rgba(13, 17, 23, 0.94) 100%),
        url('/images/pricing-page-bg.webp') center top / cover no-repeat;
}

body.page-blogs .page-hero {
    background:
        linear-gradient(180deg, rgba(8, 12, 30, 0.80) 0%, rgba(13, 17, 23, 0.94) 100%),
        url('/images/blogs-page-bg.webp') center center / cover no-repeat;
}

.page-hero .section-label {
    margin-bottom: 1rem;
}

.page-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 560px;
    margin-inline: auto;
}

/* Back Navigation (detail pages) */
.back-nav {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0.5rem;
    margin-left: -200px;
    margin-top: -50px;
}

.back-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    text-decoration: none;
}

.back-nav__link:hover {
    color: #fff;
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.35);
    transform: translateX(-3px);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.15);
}

.back-nav__link svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.back-nav__link:hover svg {
    transform: translateX(-2px);
}


/* ─── 12. SERVICES DETAIL ────────────────────────────────── */
.service-detail {
    padding: clamp(4rem, 8vw, 6rem) 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail--alt {
    background: var(--color-surface);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 5rem;
    align-items: center;
}

.service-detail--alt .service-detail__grid {
    grid-template-columns: 1.8fr 1fr;
}

.service-detail--alt .service-detail__visual {
    order: 2;
}

.service-detail--alt .service-detail__content {
    order: 1;
}

.service-detail__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.service-detail__icon-wrap {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    background: color-mix(in srgb, var(--svc-color) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-color) 25%, transparent);
    display: grid;
    place-items: center;
    color: var(--svc-color);
    position: relative;
    z-index: 1;
}

.service-detail__icon-wrap svg {
    width: 48px;
    height: 48px;
}

.service-detail__glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.service-detail__num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent-light);
    display: block;
    margin-bottom: 0.75rem;
}

.service-detail__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-detail__tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: 1rem;
}

.service-detail__desc {
    color: var(--color-muted);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ─── 12b. SERVICES PAGE — MODERN SVC CARDS ─────────────────── */
.svc-cards-section {
    padding: clamp(5rem, 10vw, 8rem) 0;
}

.svc-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: 3rem;
    background: var(--color-surface);
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.svc-card:hover {
    border-color: color-mix(in srgb, var(--svc-color) 40%, transparent);
    box-shadow: 0 20px 60px -15px color-mix(in srgb, var(--svc-color) 20%, transparent);
}

.svc-card--flip {
    grid-template-columns: 1fr 420px;
}

/* Visual Panel */
.svc-card__visual {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    padding: 3rem 2.5rem;
    background: color-mix(in srgb, var(--svc-color) 6%, var(--color-bg));
    border-right: 1px solid var(--color-border);
}

.svc-card--flip .svc-card__visual {
    order: 2;
    border-right: none;
    border-left: 1px solid var(--color-border);
}

.svc-card--flip .svc-card__content {
    order: 1;
}

.svc-card__visual-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--svc-color) 18%, transparent) 0%, transparent 70%);
    pointer-events: none;
}

.svc-card__icon-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--svc-color) 12%, transparent);
    border: 2px solid color-mix(in srgb, var(--svc-color) 30%, transparent);
    display: grid;
    place-items: center;
    color: var(--svc-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px -8px color-mix(in srgb, var(--svc-color) 40%, transparent);
}

.svc-card__icon-ring svg {
    width: 44px;
    height: 44px;
}

.svc-card__num {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: color-mix(in srgb, var(--svc-color) 10%, transparent);
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

.svc-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.svc-chip {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    background: color-mix(in srgb, var(--svc-color) 12%, var(--color-bg));
    border: 1px solid color-mix(in srgb, var(--svc-color) 25%, transparent);
    color: color-mix(in srgb, var(--svc-color) 90%, #fff);
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.svc-card:hover .svc-chip {
    background: color-mix(in srgb, var(--svc-color) 20%, var(--color-bg));
    transform: translateY(-1px);
}

/* Content Panel */
.svc-card__content {
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--svc-color);
    background: color-mix(in srgb, var(--svc-color) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-color) 20%, transparent);
    padding: 0.25rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.svc-card__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.svc-card__desc {
    font-size: 0.97rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 580px;
}

.svc-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    margin-bottom: 2rem;
}

.svc-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
}

.svc-feature-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--svc-color);
    box-shadow: 0 0 6px color-mix(in srgb, var(--svc-color) 60%, transparent);
}

.svc-card__btn {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--svc-color) 0%, color-mix(in srgb, var(--svc-color) 70%, #000) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--svc-color) 25%, transparent), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.svc-card__btn:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--svc-color) 90%, #fff) 0%, color-mix(in srgb, var(--svc-color) 80%, #000) 100%);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--svc-color) 45%, transparent);
}

/* Service-specific button gradients for rich depth */
#software .svc-card__btn {
    background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 50%, #3B82F6 100%);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

#software .svc-card__btn:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #60A5FA 100%);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

#ai .svc-card__btn {
    background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 50%, #7C3AED 100%);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

#ai .svc-card__btn:hover {
    background: linear-gradient(135deg, #38BDF8 0%, #3B82F6 50%, #8B5CF6 100%);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

#marketing .svc-card__btn {
    background: linear-gradient(135deg, #10B981 0%, #0D9488 50%, #0F766E 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

#marketing .svc-card__btn:hover {
    background: linear-gradient(135deg, #34D399 0%, #14B8A6 50%, #0D9488 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

#accounting .svc-card__btn {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 50%, #C2410C 100%);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

#accounting .svc-card__btn:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 50%, #EA580C 100%);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

/* ─ Responsive ─ */
@media (max-width: 1024px) {

    .svc-card,
    .svc-card--flip {
        grid-template-columns: 1fr;
    }

    .svc-card__visual {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        min-height: 280px;
        padding: 2.5rem 2rem;
    }

    .svc-card--flip .svc-card__visual {
        order: 0;
        border-left: none;
        border-bottom: 1px solid var(--color-border);
    }

    .svc-card--flip .svc-card__content {
        order: 0;
    }

    .svc-card__content {
        padding: 2.5rem 2rem;
    }

    .svc-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .svc-card__num {
        font-size: 2.5rem;
    }

    .svc-card__content {
        padding: 2rem 1.5rem;
    }

    .svc-card__title {
        font-size: 1.4rem;
    }
}


/* ─── 12c. TRUST SECTION ─────────────────────────────────── */
.trust-section {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* The 5th card spans full 4 columns */
.trust-card--wide {
    grid-column: 1 / -1;
}

.trust-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tc, #7C3AED), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.trust-card:hover {
    border-color: color-mix(in srgb, var(--tc, #7C3AED) 35%, transparent);
    box-shadow: 0 16px 48px -12px color-mix(in srgb, var(--tc, #7C3AED) 18%, transparent);
    transform: translateY(-4px);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--tc, #7C3AED) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--tc, #7C3AED) 25%, transparent);
    display: grid;
    place-items: center;
    color: var(--tc, #7C3AED);
    flex-shrink: 0;
}

.trust-card__icon-wrap svg {
    width: 24px;
    height: 24px;
}

.trust-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.trust-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.trust-card__body p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.7;
    flex: 1;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    background: color-mix(in srgb, var(--tc, #7C3AED) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--tc, #7C3AED) 22%, transparent);
    color: var(--tc, #7C3AED);
    align-self: flex-start;
    margin-top: auto;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.trust-badge--link:hover {
    background: color-mix(in srgb, var(--tc, #7C3AED) 18%, transparent);
    transform: translateX(2px);
}

.trust-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.trust-pill {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    background: color-mix(in srgb, var(--tc, #7C3AED) 10%, var(--color-bg));
    border: 1px solid color-mix(in srgb, var(--tc, #7C3AED) 25%, transparent);
    color: color-mix(in srgb, var(--tc, #7C3AED) 90%, #fff);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ─── 13. PROCESS ─────────────────────────────────────────── */
.process-section {
    background: var(--color-surface);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3) 20%, rgba(124, 58, 237, 0.3) 80%, transparent);
    z-index: 0;
}

.process-step {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
}

.process-step__num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    background: var(--color-accent);
    color: #fff;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.process-step svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-light);
}

.process-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ─── 14. ENGAGEMENT ──────────────────────────────────────── */
.engagement-section {
    background: var(--color-surface);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.engagement-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.engagement-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
}

.engagement-card svg {
    width: 36px;
    height: 36px;
    color: var(--color-accent-light);
}

.engagement-card h3 {
    font-size: 1rem;
    font-weight: 700;
}

.engagement-card p {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* ─── 15. CONTACT ─────────────────────────────────────────── */
.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-info>p {
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.contact-item__icon i,
.contact-item__icon svg {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-item strong {
    font-size: 0.82rem;
    color: var(--color-muted);
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-accent-light);
}

.contact-social {
    display: flex;
    gap: 0.75rem;
}

.social-link,
.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    display: grid;
    place-items: center;
    color: var(--color-muted);
    transition: var(--transition);
}

.social-link svg,
.contact-social a svg {
    width: 18px;
    height: 18px;
}

.social-link:hover,
.contact-social a:hover {
    transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
}

.required {
    color: var(--color-accent-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
}

.form-group select option {
    background: var(--color-surface);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-error {
    border-color: #EF4444 !important;
}

.form-error {
    font-size: 0.78rem;
    color: #F87171;
    min-height: 1rem;
}

.form-toast {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
}

.form-toast.show {
    display: block;
}

.form-toast--success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.form-toast--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #F87171;
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-top: 1rem;
}

.form-privacy a {
    color: var(--color-accent-light);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.form-privacy a:hover {
    color: var(--color-primary);
}

/* ─── 16. PRICING ──────────────────────────────────────────── */

/* Toggle Switch */
.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-toggle-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: var(--transition);
}

.pricing-toggle-label.active {
    color: var(--color-text);
    font-weight: 700;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-surface-2);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--color-border);
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-accent-light);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.pricing-slider {
    background-color: var(--color-accent);
}

input:checked+.pricing-slider:before {
    transform: translateX(26px);
    background-color: #fff;
}

.save-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: 600;
    vertical-align: middle;
}

/* Pricing Grid & Card */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    text-align: left;
}

.pricing-card:hover {
    border-color: var(--color-accent-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card--recommended {
    background: linear-gradient(180deg, var(--color-surface-2), var(--color-surface));
    border-color: var(--color-accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.pricing-card--recommended:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.custom-badge {
    background: linear-gradient(135deg, var(--color-teal), var(--color-green)) !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 2rem;
}

.pricing-card__header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card__header p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.pricing-card__price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-card__price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.pricing-card__price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.pricing-card__price .period {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 500;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    padding: 0;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.pricing-card__features li svg {
    color: var(--color-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-card__footer {
    margin-top: auto;
}

.pricing-card__footer .btn {
    width: 100%;
}

/* ─── 17. FOOTER ──────────────────────────────────────────── */
.footer {
    padding: 5rem 0 2rem;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand .navbar__logo {
    margin-top: -1.25rem;
    margin-bottom: 1rem;
}

.footer__brand p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    display: grid;
    place-items: center;
    color: var(--color-muted);
    transition: var(--transition);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

.footer__social a:hover {
    transform: translateY(-2px);
}

.footer__social a[aria-label="LinkedIn"]:hover,
.social-link[aria-label="LinkedIn"]:hover,
.contact-social a[aria-label="LinkedIn"]:hover {
    color: #0A66C2;
    border-color: rgba(10, 102, 194, 0.4);
    background: rgba(10, 102, 194, 0.1);
}

.footer__social a[aria-label="Facebook"]:hover,
.social-link[aria-label="Facebook"]:hover,
.contact-social a[aria-label="Facebook"]:hover {
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.4);
    background: rgba(24, 119, 242, 0.1);
}

.footer__social a[aria-label="Instagram"]:hover,
.social-link[aria-label="Instagram"]:hover,
.contact-social a[aria-label="Instagram"]:hover {
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.4);
    background: rgba(225, 48, 108, 0.1);
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.footer__col a,
.footer__col span {
    font-size: 0.85rem;
    color: var(--color-muted);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--color-text);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* ─── 17. ANIMATIONS ──────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ─── 18. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .whyus-grid {
        grid-template-columns: 1fr;
    }

    .whyus__visual {
        order: -1;
    }

    .service-detail__grid,
    .service-detail--alt .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .service-detail--alt .service-detail__visual {
        order: 0;
    }

    .service-detail--alt .service-detail__content {
        order: 0;
    }

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

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

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

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar__links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .services-grid {
        flex-direction: column;
    }

    .services-grid .service-card {
        max-width: 100%;
    }

    .portfolio-teaser-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .hero__actions {
        flex-direction: column;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }
}

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

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

/* ============================================================
   10. PORTFOLIO CASE STUDY DETAIL
   ============================================================ */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--color-accent-light);
    transform: translateX(-4px);
}

.portfolio-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.info-meta-card {
    position: relative;
    display: flex;
    gap: 3rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

.info-meta-card .meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-meta-card .meta-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-meta-card .meta-value {
    font-weight: 600;
    color: var(--color-text);
}

.detail-section {
    margin-bottom: 3rem;
}

.detail-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.detail-section p {
    font-size: 1.05rem;
    color: var(--color-text);
    opacity: 0.9;
    line-height: 1.75;
}

.section-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-subtitle-wrap h2 {
    margin-bottom: 0;
}

.icon-danger {
    color: #ff477e;
    filter: drop-shadow(0 0 8px rgba(255, 71, 126, 0.4));
}

.icon-success {
    color: #00f2fe;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}

.tag--large {
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.1);
    color: #e2d3fd;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: var(--transition);
}

.tag--large:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    margin-top: 3.5rem;
    border-radius: var(--radius-lg);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    font-size: 5rem;
    font-family: serif;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--color-text);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Testimonials Marquee */
.testimonials-marquee-wrap {
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3rem;
    padding: 1rem 0;
}

.testimonials-marquee-wrap::before,
.testimonials-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10vw;
    max-width: 150px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.testimonials-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 90s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-group {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.testimonials-group .testimonial-card {
    width: 380px;
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 280px;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Feature & Technology Lists */
.detail-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.detail-section .feature-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.detail-section .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.7;
}

.icon-accent {
    color: var(--color-accent-light);
}

.portfolio-detail__visual {
    position: sticky;
    top: calc(var(--navbar-h) + 2rem);
}

.device-mockup-wrapper {
    position: relative;
    width: 100%;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 1.5rem;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .btn-back {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 2rem;
    }
}

.device-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

/* Removed category-specific aspect ratio overrides since we are just showing the image naturally */
.page-portfolio-detail .device-frame {
    transition: var(--transition);
}

/* Mobile app screenshots stay narrower to look like phone screens */
.device-frame--mobile-app {
    max-width: 75%;
}

.device-screen {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--color-surface);
}

.screenshot-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    min-height: 480px;
}

.placeholder-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    filter: blur(60px);
    opacity: 0.3;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

.placeholder-content {
    position: relative;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.placeholder-content .logo-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding: 10px;
}

.placeholder-content .logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.placeholder-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.placeholder-badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-border);
    border-radius: 20px;
    display: inline-block;
    color: var(--color-muted);
}

.placeholder-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-accent-light);
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--color-accent-glow);
    border-radius: var(--radius-sm);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.result-metric-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.result-metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
}

.result-icon-box {
    width: 48px;
    height: 48px;
    background: var(--color-accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.result-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 !important;
}

.cta-banner--detail {
    border-radius: var(--radius-xl);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .portfolio-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-detail__visual {
        position: static;
        order: -1;
    }

    .device-frame {
        max-width: 320px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   11. BLOGS / INSIGHTS
   ============================================================ */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    padding: 0;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
}

.blog-card-image {
    height: 300px;
    background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-glow), transparent);
    opacity: 0.5;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image::before {
    opacity: 1;
}

.blog-card-image svg {
    color: var(--color-accent-light);
    opacity: 0.6;
    transition: var(--transition);
    z-index: 1;
}

.blog-card:hover .blog-card-image svg {
    opacity: 1;
    transform: scale(1.1);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.blog-category {
    color: var(--color-accent-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.blog-title {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-excerpt {
    color: var(--color-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--color-border);
    padding-top: 1.2rem;
}

.read-more {
    color: var(--color-accent-light);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-card:hover .read-more {
    gap: 0.75rem;
    color: var(--color-teal);
}

/* Blog Detail Page */
.blog-header {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-header-nav a {
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
}

.blog-header-nav a:hover {
    color: var(--color-accent-light);
}

.blog-header-nav .separator {
    color: var(--color-border);
}

.blog-hero-title {
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.blog-hero-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-surface) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.blog-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--color-accent-glow), transparent);
    opacity: 0.5;
}

.blog-hero-image svg {
    color: var(--color-accent-light);
    opacity: 0.6;
    position: relative;
    z-index: 1;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    opacity: 0.9;
}

.blog-content h2,
.blog-content h3 {
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--color-text);
    opacity: 0.9;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content strong {
    color: #fff;
}

.blog-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--color-accent-glow), transparent);
    opacity: 0.2;
}

.blog-cta-inner {
    position: relative;
    z-index: 1;
}

.blog-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-cta p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.recent-insights {
    background: var(--color-surface-2);
    border-top: 1px solid var(--color-border);
    padding: 5rem 0;
}

.recent-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .blog-hero-image {
        height: 250px;
    }
}

/* ─── 18. PRIVACY POLICY ──────────────────────────────────── */
.privacy-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.privacy-sidebar {
    position: sticky;
    top: 100px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.privacy-sidebar h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-toc-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-toc-links a {
    font-size: 0.88rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}

.privacy-toc-links a:hover {
    color: var(--color-accent-light);
    transform: translateX(4px);
}

.privacy-toc-links a.active {
    color: var(--color-accent-light);
    font-weight: 600;
}

.privacy-body {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-md);
}

.privacy-body section {
    margin-bottom: 3.5rem;
}

.privacy-body section:last-child {
    margin-bottom: 0;
}

.privacy-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-body h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(to bottom, var(--color-accent-light), var(--color-teal));
    border-radius: 2px;
    flex-shrink: 0;
}

.privacy-body p {
    color: var(--color-text);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.privacy-body strong {
    color: #fff;
}

.privacy-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.privacy-body li {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-sidebar {
        position: static;
    }
}

/* ─── 19. COOKIE CONSENT BANNER ────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-banner__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(167, 139, 250, 0.1);
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-banner__icon svg {
    width: 20px;
    height: 20px;
}

.cookie-banner__text p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.cookie-banner__text a {
    color: var(--color-accent-light);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.cookie-banner__actions .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        padding: 1.25rem;
    }
}

/* ============ ANNOUNCEMENT BANNER ============ */
.announcement-banner {
    background: linear-gradient(90deg, #7C3AED, #0EA5E9);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1000;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.announcement-banner__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.announcement-banner__link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.announcement-banner__link:hover {
    color: #f3f4f6;
}

/* ============ FLOATING VOXY WIDGET ============ */
.voxy-widget {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    max-width: 320px;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.voxy-widget.show {
    transform: translateY(0);
    opacity: 1;
}

.voxy-widget__close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--color-muted);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
}

.voxy-widget__close:hover {
    color: var(--color-text);
}

.voxy-widget__body {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.voxy-widget__icon-pulse {
    background: linear-gradient(135deg, #7C3AED, #0EA5E9);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(12, 165, 233, 0.3);
    position: relative;
}

.voxy-widget__icon-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #0EA5E9;
    animation: widgetPulse 2s infinite;
    box-sizing: border-box;
}

@keyframes widgetPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

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

.voxy-widget__text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.voxy-widget__text p {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.voxy-widget__link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent-light);
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
}

.voxy-widget__link:hover {
    text-decoration: underline;
}

/* ============ AI CALLOUT SECTION ============ */
.ai-callout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.pulse-phone-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.pulse-ring {
    border: 2px solid #0EA5E9;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    animation: pulseRing 2s infinite ease-out;
    opacity: 0;
    box-sizing: border-box;
}

.pulse-ring.delay-ring {
    animation-delay: 0.6s;
    border-color: #7C3AED;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

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

.pulse-center {
    background: linear-gradient(135deg, #7C3AED, #0EA5E9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 35px rgba(12, 165, 233, 0.45);
    animation: centerBounce 2s infinite ease-in-out;
}

@keyframes centerBounce {

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

    50% {
        transform: translateY(-8px);
    }
}

.sound-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2rem;
    height: 30px;
}

.wave-bar {
    width: 4px;
    height: 10px;
    background: linear-gradient(to top, #7C3AED, #0EA5E9);
    border-radius: 2px;
    animation: danceWave 1.2s infinite ease-in-out;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.2s;
    height: 18px;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.4s;
    height: 26px;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.1s;
    height: 15px;
}

.wave-bar:nth-child(5) {
    animation-delay: 0.3s;
    height: 22px;
}

.wave-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 12px;
}

.wave-bar:nth-child(7) {
    animation-delay: 0.25s;
    height: 19px;
}

@keyframes danceWave {

    0%,
    100% {
        transform: scaleY(0.4);
    }

    50% {
        transform: scaleY(1);
    }
}

.ai-callout__actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .ai-callout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .ai-callout__actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .voxy-widget {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}