/* ============================================================
 * TechNova-style theme overlay for D&D Technology
 * Loaded after main.min.css to re-skin existing markup with a
 * unified purple/violet design system. No HTML structure changes
 * required — purely visual overrides + reusable section classes
 * for new sections going forward.
 * ============================================================ */

:root {
    /* ----- Brand palette ----- */
    --tn-purple-50:  #f5f3ff;
    --tn-purple-100: #ede9fe;
    --tn-purple-200: #ddd6fe;
    --tn-purple-300: #c4b5fd;
    --tn-purple-400: #a78bfa;
    --tn-purple-500: #8b5cf6;
    --tn-purple-600: #7c3aed;
    --tn-purple-700: #6d28d9;
    --tn-purple-800: #5b21b6;
    --tn-purple-900: #4c1d95;

    --tn-violet-bright: #8E24AA;
    --tn-violet-deep:   #6A1B9A;
    --tn-blue-accent:   #1E88E5;

    --tn-grad-primary: linear-gradient(135deg, #8E24AA 0%, #6A1B9A 100%);
    --tn-grad-cool:    linear-gradient(135deg, #7c3aed 0%, #1E88E5 100%);
    --tn-grad-hero:    radial-gradient(at 30% 20%, #1a0b2e 0%, #0a0418 60%, #050210 100%);

    /* ----- Surfaces ----- */
    --tn-bg-light:     #ffffff;
    --tn-bg-soft:      #f8f7fc;
    --tn-bg-dark:      #0d0719;
    --tn-bg-darker:    #050210;
    --tn-bg-card:      #ffffff;
    --tn-bg-card-dark: #150b29;

    /* ----- Text ----- */
    --tn-text-ink:     #0f0a1f;
    --tn-text-body:    #4b5563;
    --tn-text-muted:   #94a3b8;
    --tn-text-on-dark: #e2e8f0;
    --tn-text-dim-dk:  #94a3b8;

    /* ----- Borders ----- */
    --tn-border:       #e7e2f0;
    --tn-border-dark:  rgba(255, 255, 255, 0.08);

    /* ----- Radius / shadow ----- */
    --tn-r-sm: 8px;
    --tn-r-md: 14px;
    --tn-r-lg: 22px;
    --tn-r-pill: 999px;
    --tn-shadow-sm: 0 2px 8px rgba(15, 10, 31, .06);
    --tn-shadow-md: 0 8px 24px rgba(76, 29, 149, .10);
    --tn-shadow-lg: 0 18px 48px rgba(76, 29, 149, .18);
    --tn-shadow-purple: 0 14px 40px rgba(142, 36, 170, .35);

    /* ----- Spacing scale ----- */
    --tn-sp-section: clamp(60px, 8vw, 110px);

    /* ----- Type ----- */
    --tn-font-display: "Satoshi", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --tn-font-body:    "Satoshi", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ============================================================
 * GLOBAL LAYER — body type, links
 * ============================================================ */
body {
    font-family: var(--tn-font-body);
    color: var(--tn-text-ink);
    background: var(--tn-bg-light);
    -webkit-font-smoothing: antialiased;
}
a { color: var(--tn-violet-bright); }
a:hover { color: var(--tn-violet-deep); }

/* ============================================================
 * TOP ANNOUNCEMENT BAR — already gradient; tighten polish
 * ============================================================ */
.dd-topbar { letter-spacing: .01em; }
.dd-topbar__cta {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(6px);
}

/* ============================================================
 * MAIN NAV / HEADER — TechNova-style: clean white, pill CTA
 * ============================================================ */
header.header {
    background: var(--tn-bg-light) !important;
    border-bottom: 1px solid var(--tn-border);
    box-shadow: 0 1px 0 rgba(15, 10, 31, .04);
}
header.header .header-nav {
    padding-top: 14px;
    padding-bottom: 14px;
}
.nav-menu__link {
    font-weight: 600 !important;
    font-size: 14.5px !important;
    color: var(--tn-text-ink) !important;
    position: relative;
    padding: 14px 0 !important;       /* override brand.min.css 24px → 14px for tighter header */
    transition: color .2s ease;
}
/* Override brand.min.css triangle caret + my underline cleanly */
.nav-menu__link::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 6px !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--tn-grad-primary) !important;
    border-radius: 2px !important;
    border: 0 !important;             /* kill inherited border-top triangle from brand.min.css */
    margin: 0 !important;
    transform: none !important;
    display: block !important;
    transition: width .25s ease, left .25s ease !important;
}
.nav-menu__link:hover { color: var(--tn-violet-bright) !important; }
.nav-menu__link:hover::after { width: 22px !important; left: calc(50% - 11px) !important; }

/* Tighten the header overall height */
header.header .header-nav { padding-top: 8px !important; padding-bottom: 8px !important; }

/* Pill CTA buttons in header (Get Started / Get a Quote) */
header .btn-main,
header a[href*="get-a-quote"],
header a[href*="contact"]:not(.simple-dropdown__link):not(.dd-topbar__cta),
.header__action-btn {
    background: var(--tn-grad-primary) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: var(--tn-r-pill) !important;
    padding: 11px 22px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: var(--tn-shadow-purple);
    transition: transform .2s ease, box-shadow .2s ease;
}
header .btn-main:hover,
.header__action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(142, 36, 170, .45);
}

/* Hide the standalone gray contact strip — info moved into the purple topbar */
.top-header-bar { display: none !important; }

/* Topbar enhancements: 3-column flex (contact left | rotator | hours right) */
.dd-topbar__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    padding: 10px 16px !important;
    flex-wrap: nowrap;
}
.dd-topbar__contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    font-size: 12.5px;
    font-weight: 500;
}
.dd-topbar__contact--left { margin-right: auto; }
.dd-topbar__contact--right { margin-left: auto; }
.dd-topbar__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .92) !important;
    text-decoration: none !important;
    transition: color .15s;
}
.dd-topbar__contact-link:hover { color: #fff !important; }
.dd-topbar__contact-link i {
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
}
.dd-topbar__rotator { flex: 1; display: flex; justify-content: center; min-width: 0; }

@media (max-width: 991px) {
    .dd-topbar__contact--left .dd-topbar__contact-link:last-child,
    .dd-topbar__contact--right { display: none !important; }
    .dd-topbar__inner { gap: 12px !important; }
}
@media (max-width: 575px) {
    .dd-topbar__contact { display: none !important; }
}

/* Make the existing DB-driven "Contact Us" last nav item render as a pill */
.nav-menu .nav-menu__item:last-child > a.nav-menu__link[href*="/contact"],
.nav-menu .nav-menu__item:last-child > a.nav-menu__link[href$="contact"] {
    background: var(--tn-grad-primary) !important;
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: var(--tn-r-pill) !important;
    box-shadow: 0 8px 22px rgba(142,36,170,.35) !important;
    transition: transform .2s, box-shadow .2s !important;
}
.nav-menu .nav-menu__item:last-child > a.nav-menu__link[href*="/contact"]:hover,
.nav-menu .nav-menu__item:last-child > a.nav-menu__link[href$="contact"]:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(142,36,170,.5) !important;
}
.nav-menu .nav-menu__item:last-child > a.nav-menu__link[href*="/contact"]::after,
.nav-menu .nav-menu__item:last-child > a.nav-menu__link[href$="contact"]::after { display: none !important; }

/* Header nav layout: ensure 3-column grid stays balanced like TechNova mockup */
header.header .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
header.header .header-nav__center {
    flex-shrink: 0;
}
header.header .header-nav__center img { max-height: 60px; width: auto; }
header.header .header-nav__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* "Get A Quote" header CTA — gradient pill matching mockup */
header .btn-main[href*="get-a-quote"],
header a.btn-main[href*="get-a-quote"] {
    background: var(--tn-grad-primary) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: var(--tn-r-pill) !important;
    padding: 11px 22px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    box-shadow: 0 8px 22px rgba(142,36,170,.35) !important;
}

/* Tools / Language buttons — softer pill outline */
.tools-menu-btn,
.dd-lang-btn {
    border-radius: var(--tn-r-pill) !important;
    border: 1.5px solid #e7e2f0 !important;
    background: #fff !important;
    padding: 8px 14px !important;
    transition: border-color .2s, box-shadow .2s !important;
}
.tools-menu-btn:hover,
.dd-lang-btn:hover {
    border-color: var(--tn-violet-bright) !important;
    box-shadow: 0 0 0 3px rgba(142,36,170,.08) !important;
}

/* Search icon button — circular outline */
.header-search-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1.5px solid #e7e2f0 !important;
    background: #fff !important;
    color: var(--tn-text-ink) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: border-color .2s, color .2s !important;
}
.header-search-btn:hover {
    border-color: var(--tn-violet-bright) !important;
    color: var(--tn-violet-bright) !important;
}

/* Simple dropdowns — subtle elevation, accent left border on hover */
.simple-dropdown {
    border-radius: var(--tn-r-md) !important;
    box-shadow: var(--tn-shadow-lg) !important;
    border: 1px solid var(--tn-border) !important;
    padding: 10px !important;
}
.simple-dropdown__link {
    border-radius: 10px !important;
    transition: background .15s ease, color .15s ease, padding-left .15s ease !important;
}
.simple-dropdown__link:hover {
    background: var(--tn-purple-50) !important;
    color: var(--tn-violet-deep) !important;
    padding-left: 18px !important;
}

/* ============================================================
 * MEGA MENU — TechNova-style: clean card grid + chevron items
 * ============================================================ */
.services-megamenu,
.products-megamenu {
    border-radius: 0 !important;
    box-shadow: 0 28px 60px rgba(15, 10, 31, .12) !important;
    border-top: 1px solid #ececf0 !important;
    background: #fff !important;
    padding: 22px max(40px, calc((100vw - 1480px) / 2)) !important;
    overflow: hidden;
}
.services-megamenu__inner {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 300px !important;
    gap: 6px !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
}
.products-megamenu__inner {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 300px !important;
    gap: 6px !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 1480px !important;
    margin: 0 auto !important;
}
/* Promo column on right side of products grid — fixed row, top-aligned */
.tn-products-mm__promo {
    grid-row: 1 / span 3 !important;
    grid-column: 5 !important;
    padding: 0 !important;
    border-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    align-self: start !important;
    width: 100% !important;
}
.services-megamenu__col,
.products-megamenu__col {
    background: #fff !important;
    border-right: 1px solid #f1f0f5;
    padding: 16px 14px !important;
    border-radius: 0 !important;
    position: relative;
}
.services-megamenu__col:last-child,
.products-megamenu__col:last-child { border-right: 0; }

.services-megamenu__cat-title,
.products-megamenu__cat-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    color: var(--tn-text-ink) !important;
    margin-bottom: 14px !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}
.services-megamenu__cat-title::before,
.products-megamenu__cat-title:not(.products-megamenu__cat-title--link)::before {
    content: '';
    display: inline-block;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--tn-purple-50);
    color: var(--tn-violet-bright);
    background-image: linear-gradient(135deg, rgba(142,36,170,.12), rgba(30,136,229,.08));
    flex-shrink: 0;
}
.products-megamenu__cat-title--link {
    color: var(--tn-text-ink) !important;
    text-decoration: none !important;
    padding-left: 0 !important;
}
.products-megamenu__cat-title--link i { color: var(--tn-violet-bright) !important; }

.services-megamenu__link,
.products-megamenu__link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 7px 0 !important;
    color: var(--tn-text-body) !important;
    font-size: 13px !important;
    text-decoration: none !important;
    border-radius: 6px;
    transition: color .15s, padding-left .15s, gap .15s !important;
    line-height: 1.4;
}
.services-megamenu__link::before,
.products-megamenu__link::before {
    content: '\203A';
    color: var(--tn-violet-bright);
    font-weight: 800;
    font-size: 14px;
    opacity: .55;
    transition: opacity .15s, transform .15s;
}
.services-megamenu__link:hover,
.products-megamenu__link:hover {
    color: var(--tn-violet-deep) !important;
    padding-left: 4px !important;
}
.services-megamenu__link:hover::before,
.products-megamenu__link:hover::before { opacity: 1; transform: translateX(2px); }

/* Products menu — text-only with chevron bullets (no icon boxes) */
.products-megamenu__link {
    /* Override brand.min.css `justify-content: space-between` which pushes text to the right */
    justify-content: flex-start !important;
}
.products-megamenu__link .products-megamenu__icon { display: none !important; }
.products-megamenu__name { color: inherit !important; font-weight: 500 !important; font-size: 13px !important; }

/* Services menu — KEEP icon boxes next to each link */
.services-megamenu__link {
    padding: 8px 6px !important;
    gap: 10px !important;
}
.services-megamenu__link::before { display: none !important; }
.services-megamenu__icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--tn-purple-50) !important;
    color: var(--tn-violet-bright) !important;
    font-size: 14px !important;
}
.services-megamenu__name {
    font-weight: 600 !important;
    font-size: 13.5px !important;
    color: var(--tn-text-ink) !important;
}
.services-megamenu__desc { display: none !important; }
.services-megamenu__link:hover { background: var(--tn-purple-50) !important; border-radius: 10px !important; padding-left: 6px !important; }
.services-megamenu__link:hover .services-megamenu__name { color: var(--tn-violet-deep) !important; }

/* "+N more" link at the end of each column */
.products-megamenu__more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: 10px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: var(--tn-violet-bright) !important;
    text-decoration: none !important;
}
.products-megamenu__more::after {
    content: '\2192';
    font-weight: 700;
    transition: transform .2s;
}
.products-megamenu__more:hover::after { transform: translateX(3px); }

/* Featured / banner column — turn into TechNova gradient promo card */
.services-megamenu__col--banner {
    background: linear-gradient(135deg, #6A1B9A 0%, #1E88E5 100%) !important;
    border-radius: 14px !important;
    padding: 22px !important;
    border-right: 0 !important;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}
.services-megamenu__col--banner::after {
    content: '';
    position: absolute;
    right: -40px; bottom: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.services-megamenu__banner { background: transparent !important; min-height: auto !important; }
.services-megamenu__banner-caption {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* Mega menu footer (Products) — purple CTA banner row */
.products-megamenu__footer {
    margin-top: 14px !important;
    padding: 14px 18px !important;
    background: linear-gradient(120deg, rgba(142,36,170,.06), rgba(30,136,229,.04)) !important;
    border-radius: 12px !important;
    border: 1px solid #ececf0 !important;
}
.services-megamenu__viewall,
.services-megamenu__cta {
    border-radius: var(--tn-r-pill) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}
.services-megamenu__cta {
    background: var(--tn-grad-primary) !important;
    color: #fff !important;
    padding: 9px 18px !important;
    box-shadow: 0 8px 18px rgba(142,36,170,.3) !important;
}

/* Responsive: 4 → 2 → 1 columns */
@media (max-width: 1100px) {
    .services-megamenu__inner,
    .products-megamenu__inner { grid-template-columns: repeat(2, 1fr) !important; }
    .services-megamenu__col { border-right: 0; border-bottom: 1px solid #f1f0f5; }
}
@media (max-width: 700px) {
    .services-megamenu__inner,
    .products-megamenu__inner { grid-template-columns: 1fr !important; }
}

/* ============================================================
 * REUSABLE SECTION SYSTEM — drop-in classes for any page
 * ============================================================ */
.tn-section { padding: var(--tn-sp-section) 0; position: relative; }
.tn-section--soft  { background: var(--tn-bg-soft); }
.tn-section--dark  { background: var(--tn-bg-dark); color: var(--tn-text-on-dark); }
.tn-section--dark-grad {
    background: linear-gradient(135deg, #0d0719 0%, #1a0b2e 50%, #050210 100%);
    color: var(--tn-text-on-dark);
    position: relative;
    overflow: hidden;
}
.tn-section--dark-grad::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(142, 36, 170, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 136, 229, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    pointer-events: none;
}
.tn-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    font-size: 12px;
    color: var(--tn-violet-bright);
    margin-bottom: 12px;
}
.tn-section--dark .tn-eyebrow,
.tn-section--dark-grad .tn-eyebrow { color: var(--tn-purple-300); }
.tn-section-title {
    font-family: var(--tn-font-display);
    font-weight: 800;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--tn-text-ink);
    margin: 0 0 12px;
}
.tn-section--dark .tn-section-title,
.tn-section--dark-grad .tn-section-title { color: #fff; }
.tn-section-title em {
    font-style: normal;
    background: var(--tn-grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tn-section-sub {
    color: var(--tn-text-body);
    max-width: 620px;
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 1.65;
}
.tn-section--dark .tn-section-sub,
.tn-section--dark-grad .tn-section-sub { color: var(--tn-text-dim-dk); }
.tn-section-head--center { text-align: center; margin-bottom: 48px; }

/* Cards */
.tn-card {
    background: var(--tn-bg-card);
    border: 1px solid var(--tn-border);
    border-radius: var(--tn-r-md);
    padding: 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tn-shadow-md);
    border-color: var(--tn-purple-200);
}
.tn-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tn-purple-50);
    color: var(--tn-violet-bright);
    font-size: 24px;
    margin-bottom: 18px;
}
.tn-card__title {
    font-weight: 800;
    font-size: 16px;
    color: var(--tn-text-ink);
    margin: 0 0 8px;
}
.tn-card__body {
    color: var(--tn-text-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.tn-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--tn-violet-bright);
    text-decoration: none;
}
.tn-card__link:hover { color: var(--tn-violet-deep); gap: 10px; }

/* Buttons */
.tn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--tn-r-pill);
    padding: 13px 26px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.tn-btn--primary {
    background: var(--tn-grad-primary);
    color: #fff;
    box-shadow: var(--tn-shadow-purple);
}
.tn-btn--primary:hover { transform: translateY(-2px); color: #fff; }
.tn-btn--ghost {
    background: transparent;
    color: var(--tn-text-ink);
    border: 1.5px solid var(--tn-border);
}
.tn-btn--ghost:hover { border-color: var(--tn-violet-bright); color: var(--tn-violet-bright); }
.tn-btn--on-dark.tn-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.tn-btn--on-dark.tn-btn--ghost:hover { border-color: #fff; }

/* Stat strip */
.tn-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    padding: 38px 36px;
    border-radius: var(--tn-r-lg);
    background: var(--tn-grad-primary);
    color: #fff;
    box-shadow: var(--tn-shadow-purple);
}
.tn-stat { display: flex; gap: 14px; align-items: center; }
.tn-stat__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.16);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.tn-stat__num { font-weight: 800; font-size: 28px; line-height: 1; }
.tn-stat__label { font-size: 13px; opacity: .85; margin-top: 4px; }

/* Trusted-by brand strip */
.tn-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding: 32px 0;
}
.tn-brands img,
.tn-brands svg { height: 28px; opacity: .68; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.tn-brands img:hover,
.tn-brands svg:hover { opacity: 1; filter: none; }
.tn-brands__label {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--tn-text-muted);
    margin-bottom: 10px;
}

/* CTA banner */
.tn-cta-banner {
    border-radius: var(--tn-r-lg);
    background: linear-gradient(120deg, #6A1B9A 0%, #8E24AA 60%, #4c1d95 100%);
    color: #fff;
    padding: 44px 52px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tn-shadow-purple);
}
.tn-cta-banner::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
    border-radius: 50%;
}
.tn-cta-banner h3 {
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
    margin: 6px 0 4px;
}
.tn-cta-banner p { margin: 0; opacity: .9; font-size: 14.5px; }
.tn-cta-banner__eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255,255,255,.8);
}
.tn-cta-banner .tn-btn--primary {
    background: #fff;
    color: var(--tn-violet-deep);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* ============================================================
 * FOOTER — dark TechNova style
 * ============================================================ */
.footer,
footer.footer,
.dd-footer,
section.dd-footer {
    background: var(--tn-bg-darker) !important;
    color: var(--tn-text-on-dark) !important;
}
.footer a,
.dd-footer a {
    color: var(--tn-text-dim-dk) !important;
    transition: color .2s, padding-left .2s !important;
}
.footer a:hover,
.dd-footer a:hover {
    color: #fff !important;
    padding-left: 4px;
}
.footer h4, .footer h5, .footer h6,
.dd-footer h4, .dd-footer h5, .dd-footer h6 {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-bottom: 18px !important;
    letter-spacing: .01em;
}
.footer .container,
.dd-footer .container { padding-top: 24px; padding-bottom: 24px; }

/* Social icons in footer — pill, dark surface */
.footer .social-link,
.dd-footer .social-link,
footer a[href*="facebook"],
footer a[href*="twitter"],
footer a[href*="instagram"],
footer a[href*="linkedin"],
footer a[href*="youtube"] {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .2s, transform .2s !important;
}
.footer .social-link:hover,
.dd-footer .social-link:hover {
    background: var(--tn-grad-primary) !important;
    transform: translateY(-2px);
}

/* Newsletter input/button (auto-styles if footer has .newsletter-form / input + button) */
.footer .newsletter input[type="email"],
.dd-footer .newsletter input[type="email"],
.footer input[type="email"],
.dd-footer input[type="email"] {
    background: rgba(255,255,255,.06) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #fff !important;
    border-radius: var(--tn-r-pill) !important;
    padding: 12px 18px !important;
}
.footer .newsletter input[type="email"]::placeholder,
.dd-footer input[type="email"]::placeholder { color: var(--tn-text-dim-dk) !important; }
.footer .newsletter button,
.dd-footer .newsletter button {
    background: var(--tn-grad-primary) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: var(--tn-r-pill) !important;
    padding: 12px 22px !important;
    font-weight: 700 !important;
}

/* Copyright bar */
.footer__bottom,
.dd-footer__bottom,
.copyright-bar {
    border-top: 1px solid var(--tn-border-dark) !important;
    color: var(--tn-text-dim-dk) !important;
    font-size: 13px !important;
    padding: 18px 0 !important;
}

/* ============================================================
 * HERO ACCENTS — used on home page (Phase 2)
 * ============================================================ */
.tn-hero {
    background: linear-gradient(135deg, #0d0719 0%, #1a0b2e 55%, #050210 100%);
    color: #fff;
    padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 110px);
    position: relative;
    overflow: hidden;
}
.tn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(142, 36, 170, .10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 136, 229, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 30% 30%, #000 0%, transparent 75%);
    pointer-events: none;
}
.tn-hero__title {
    font-family: var(--tn-font-display);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.025em;
    margin: 0 0 22px;
}
.tn-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #c084fc 0%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tn-hero__lead {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--tn-text-dim-dk);
    max-width: 520px;
    margin: 0 0 30px;
}

/* Floating stat badges over the hero image */
.tn-hero__media { position: relative; }
.tn-hero__badge {
    position: absolute;
    background: rgba(15, 10, 31, .82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
}
.tn-hero__badge--tl { top: 18px; left: -10px; }
.tn-hero__badge--br { right: -10px; bottom: 32px; }
.tn-hero__badge strong { display: block; font-size: 22px; font-weight: 800; }
.tn-hero__badge span   { font-size: 12px; opacity: .8; }

/* ============================================================
 * SIMPLE DROPDOWN (About Us etc.) — TechNova icon-card list
 * Applies to BOTH admin-defined simple dropdowns and legacy ones.
 * ============================================================ */
.simple-dropdown,
.simple-dropdown.tn-about-dd {
    padding: 14px !important;
    min-width: 340px !important;
    border-radius: 18px !important;
    box-shadow: 0 28px 60px rgba(15,10,31,.12) !important;
    border: 1px solid #ececf0 !important;
    background: #fff !important;
}
.simple-dropdown__link {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: var(--tn-text-ink) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background .15s, padding-left .15s !important;
}
.simple-dropdown__link:hover {
    background: var(--tn-purple-50) !important;
    color: var(--tn-violet-deep) !important;
    padding-left: 14px !important;
}
.simple-dropdown__link > i {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(142,36,170,.12), rgba(30,136,229,.08));
    color: var(--tn-violet-bright) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 17px !important;
    border: 1px solid rgba(142,36,170,.10);
}

/* When legacy About Us provides description, render title + desc stacked */
.tn-about-dd__item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: background .15s, padding-left .15s !important;
}
.tn-about-dd__item:hover { background: var(--tn-purple-50) !important; padding-left: 14px !important; }
.tn-about-dd__icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(142,36,170,.12), rgba(30,136,229,.08));
    color: var(--tn-violet-bright);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(142,36,170,.10);
}
.tn-about-dd__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tn-about-dd__copy strong { font-weight: 700; font-size: 14px; color: var(--tn-text-ink); line-height: 1.3; }
.tn-about-dd__copy small { font-size: 12.5px; color: var(--tn-text-body); line-height: 1.4; font-weight: 400; }

/* ============================================================
 * SERVICES MEGA MENU — TechNova "Build your custom digital solution" promo column
 * ============================================================ */
.services-megamenu__col--banner {
    grid-row: 1 / -1 !important;
    grid-column: 5 !important;
    padding: 0 !important;
    background: transparent !important;
    border-right: 0 !important;
    min-height: auto !important;
    display: flex !important;
}
.services-megamenu__col--banner::before,
.services-megamenu__col--banner::after { display: none !important; }
.services-megamenu__col--banner .services-megamenu__cat-title { display: none !important; }

.services-megamenu__col--banner .services-megamenu__banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    background: linear-gradient(155deg, #ede5ff 0%, #f3eaff 45%, #fbe9f7 100%) !important;
    border-radius: 16px !important;
    padding: 26px 22px !important;
    color: var(--tn-text-ink) !important;
    width: 100%;
    min-height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    border: 1px solid rgba(142, 36, 170, .12);
}

.services-megamenu__col--banner .tn-banner-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #8E24AA, #6A1B9A);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 28px rgba(142,36,170,.35);
    margin-bottom: 18px;
}

.services-megamenu__col--banner .services-megamenu__banner-caption {
    position: static !important;
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
    color: var(--tn-text-ink) !important;
    text-shadow: none !important;
    max-width: 100%;
}

.services-megamenu__col--banner .tn-banner-desc {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: var(--tn-text-body);
    margin: 0 0 20px;
}

.services-megamenu__col--banner .tn-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tn-grad-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 11px 20px;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(142,36,170,.35);
    margin-top: auto;
    transition: transform .2s, gap .2s;
}
.services-megamenu__col--banner .services-megamenu__banner:hover .tn-banner-cta {
    transform: translateY(-1px);
    gap: 10px;
}

.services-megamenu__col--banner .services-megamenu__banner img {
    position: absolute !important;
    right: -10px;
    bottom: 60px;
    width: 110px !important;
    height: 110px !important;
    object-fit: contain !important;
    opacity: .35 !important;
    pointer-events: none;
}

/* ============================================================
 * PRODUCTS MEGA MENU — 2 stacked TechNova promo cards (right col)
 * ============================================================ */
.tn-pmm-card {
    display: block !important;
    padding: 22px 20px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
    /* Lock the shape — prevent any inherited transform / clip-path / border-radius oval */
    clip-path: none !important;
    width: 100%;
    box-sizing: border-box;
}
.tn-pmm-card:hover { transform: translateY(-3px); }
.tn-pmm-card h5 { font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
.tn-pmm-card p { font-size: 12.5px; line-height: 1.55; margin: 0 0 16px; opacity: .85; }
.tn-pmm-card__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    background: #fff;
    color: var(--tn-violet-deep);
    border-radius: var(--tn-r-pill);
    font-size: 12.5px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
    transition: transform .2s, gap .2s;
}
.tn-pmm-card:hover .tn-pmm-card__btn { gap: 10px; }

/* Card 1: gradient FEATURED — strictly rectangular, no decorative blob */
.tn-products-mm__promo a.tn-pmm-card.tn-pmm-card--featured,
.tn-pmm-card--featured {
    background: linear-gradient(155deg, #4c1d95 0%, #6A1B9A 55%, #1a0b2e 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(76, 29, 149, .32) !important;
    border-radius: 16px !important;
    border: 0 !important;
    clip-path: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    transform: none !important;
    aspect-ratio: auto !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
}
.tn-pmm-card--featured::before,
.tn-pmm-card--featured::after { content: none !important; display: none !important; background: none !important; }
.tn-pmm-card--featured h5 { color: #fff; }
.tn-pmm-card--featured p { color: rgba(255,255,255,.85); }
.tn-pmm-card__tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}
.tn-pmm-card__tag i { font-size: 12px; color: #f5d0fe; }

/* Card 2: ghost / light */
.tn-pmm-card--explore {
    background: #faf8ff;
    border: 1px solid #ece3f7;
    color: var(--tn-text-ink);
}
.tn-pmm-card--explore h5 { color: var(--tn-text-ink); }
.tn-pmm-card--explore p { color: var(--tn-text-body); }
.tn-pmm-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(142,36,170,.15), rgba(30,136,229,.10));
    color: var(--tn-violet-bright);
    font-size: 20px;
    margin-bottom: 14px;
}
.tn-pmm-card__btn--ghost {
    background: #fff !important;
    color: var(--tn-violet-bright) !important;
    border: 1.5px solid var(--tn-purple-200);
    box-shadow: none !important;
}
.tn-pmm-card--explore:hover .tn-pmm-card__btn--ghost {
    background: var(--tn-grad-primary) !important;
    color: #fff !important;
    border-color: transparent;
}

/* Hide the old footer bar on Products mega when promo column present */
.tn-products-mm .products-megamenu__footer { display: none !important; }

@media (max-width: 1300px) {
    .tn-products-mm { min-width: auto !important; }
    .tn-products-mm__grid,
    .services-megamenu__inner,
    .products-megamenu__inner { grid-template-columns: repeat(3, 1fr) !important; }
    .tn-products-mm__promo { grid-column: span 3 !important; flex-direction: row !important; }
}
@media (max-width: 900px) {
    .tn-products-mm__grid,
    .services-megamenu__inner,
    .products-megamenu__inner { grid-template-columns: repeat(2, 1fr) !important; }
    .tn-products-mm__promo { flex-direction: column !important; grid-column: span 2 !important; }
}

/* ============================================================
 * HERO — TechNova lavender style
 * ============================================================ */
.hero-home {
    background: linear-gradient(135deg, #f5edff 0%, #ece1ff 50%, #e6d9fa 100%) !important;
    padding: 56px 0 80px !important;
    position: relative;
    overflow: hidden;
}
.hero-home::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(192,132,252,.22), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(30,136,229,.18), transparent 55%);
    pointer-events: none;
}
.hero-home > .container { position: relative; z-index: 2; }
.hero-home .hero-sub-label { display: none !important; }

/* Two pill badges at the top */
.tn-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.tn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--tn-r-pill);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .04em;
    line-height: 1;
}
.tn-hero-badge--solid {
    background: rgba(142, 36, 170, .12);
    border: 1px solid rgba(142, 36, 170, .22);
    color: var(--tn-violet-deep);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.tn-hero-badge--solid i { color: var(--tn-violet-bright); font-size: 14px; }
.tn-hero-badge--ghost {
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(142, 36, 170, .14);
    color: var(--tn-violet-deep);
}
.tn-hero-badge--ghost i { color: var(--tn-violet-bright); font-size: 14px; }

/* Headline — balanced sizing; gradient on the rotating mid line */
.hero-home .hero-title {
    font-size: clamp(1.8rem, 3.4vw, 2.75rem) !important;
    font-weight: 900 !important;
    color: #0f0a1f !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 18px !important;
}
.hero-home .hero-title__top {
    display: block;
    font-size: 0.82em;
    color: #0f0a1f;
    font-weight: 800;
}
.hero-home .hero-title__mid {
    display: block;
    margin-top: 4px;
    font-size: 1.18em;
    background: linear-gradient(120deg, #8E24AA 0%, #6A1B9A 40%, #1E88E5 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    line-height: 1.05;
}
.hero-home .hero-title__bot {
    display: block;
    margin-top: 8px;
    font-size: 0.5em;
    color: #4b5563;
    font-weight: 700;
    letter-spacing: -.005em;
}

/* Description */
.hero-home .hero-subtitle {
    color: #4b5563 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    max-width: 540px !important;
    margin-bottom: 32px !important;
}

/* CTA buttons — Start Your Project + Explore Services */
.hero-home .btn-main.hover-style-one {
    background: linear-gradient(135deg, #8E24AA 0%, #6A1B9A 100%) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 16px 38px rgba(142, 36, 170, .42) !important;
}
.hero-home .btn-main.hover-style-one .button__label::before {
    content: '\f25f';
    font-family: 'Phosphor-Bold';
    margin-right: 10px;
    font-size: 16px;
}
.hero-home .btn-main-two.hover-style-two {
    background: rgba(255, 255, 255, .85) !important;
    backdrop-filter: blur(8px);
    color: var(--tn-text-ink) !important;
    border: 1.5px solid rgba(142, 36, 170, .22) !important;
}
.hero-home .btn-main-two.hover-style-two:hover {
    background: #fff !important;
    border-color: var(--tn-violet-bright) !important;
}

/* 4-column stats with circle icons (TechNova mockup) */
.tn-hero-stats {
    margin-top: 36px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 20px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    box-shadow: 0 18px 44px rgba(76, 29, 149, .12);
}
.tn-hero-stat {
    display: flex; align-items: center; gap: 12px;
}
.tn-hero-stat__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142,36,170,.14), rgba(30,136,229,.10));
    color: var(--tn-violet-bright);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(142,36,170,.12);
}
.tn-hero-stat .num {
    font-weight: 900;
    font-size: 20px;
    color: var(--tn-text-ink);
    line-height: 1.1;
}
.tn-hero-stat .label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

/* Slide nav arrows */
.tn-hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(142, 36, 170, .25);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    color: var(--tn-violet-deep);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background .2s, transform .2s, border-color .2s;
}
.tn-hero-nav:hover {
    background: var(--tn-grad-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}
.tn-hero-nav--prev { left: 18px; }
.tn-hero-nav--next { right: 18px; }

/* Slide dots */
.tn-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.tn-hero-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(142,36,170,.25);
    transition: width .25s, background .25s;
}
.tn-hero-dots .is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--tn-grad-primary);
}

/* Hero visual container */
.hero-home .tn-hero-visual { position: relative; padding-right: 14px; min-height: 540px; }
.hero-home .hero-visual { position: relative; }

/* =================================================================
 * TN-DASH — CSS-built Enterprise Dashboard mockup
 * Replaces the old <img> slider with a dark glassmorphic dashboard.
 * ================================================================= */
.tn-dash {
    position: relative;
    background: linear-gradient(155deg, #1a1133 0%, #0f0826 55%, #1f1340 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 0 0 1px rgba(192, 132, 252, .25) inset,
        0 32px 70px rgba(76, 29, 149, .35),
        0 0 60px rgba(142, 36, 170, .20);
    overflow: hidden;
    z-index: 3;
    color: #fff;
    transition: transform .4s ease, box-shadow .4s ease;
}
.tn-dash::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(192,132,252,.18), transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(34,211,238,.10), transparent 50%);
    pointer-events: none;
}

/* Chrome / titlebar */
.tn-dash__chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
}
.tn-dash__logo {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #8E24AA, #6A1B9A);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(142,36,170,.4);
}
.tn-dash__title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
}
.tn-dash__icons {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}
.tn-dash__avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    display: inline-block;
    margin-left: 4px;
    border: 1.5px solid rgba(255,255,255,.2);
}

/* Body: sidebar + grid */
.tn-dash__body {
    display: flex;
    min-height: 360px;
}
.tn-dash__sidebar {
    width: 44px;
    padding: 14px 0;
    border-right: 1px solid rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.4);
    font-size: 16px;
    flex-shrink: 0;
}
.tn-dash__sidebar i:first-child { color: #c084fc; }
.tn-dash__sidebar i { transition: color .2s; cursor: default; }
.tn-dash__sidebar i:hover { color: #fff; }

.tn-dash__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    padding: 14px;
}

/* Metric card */
.tn-dash__card {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background .2s, border-color .2s;
}
.tn-dash__card:hover {
    background: rgba(192,132,252,.08);
    border-color: rgba(192,132,252,.25);
}
.tn-dash__label {
    font-size: 10.5px;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: .01em;
}
.tn-dash__num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.tn-dash__sub {
    font-size: 10px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}
.tn-dash__tag {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .18);
    color: #4ade80;
    letter-spacing: .02em;
}
.tn-dash__tag--up { background: rgba(34, 197, 94, .15); color: #4ade80; }

/* Chart variants */
.tn-dash__chart {
    width: 100%;
    height: 38px;
    margin-top: auto;
}
.tn-dash__chart--small { height: 22px; }

/* Bars */
.tn-dash__bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    margin-top: auto;
}
.tn-dash__bars i {
    flex: 1;
    background: linear-gradient(180deg, #c084fc, #6A1B9A);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 8px rgba(192,132,252,.4);
}

/* Ring (System Health) */
.tn-dash__ring {
    position: relative;
    width: 56px; height: 56px;
    margin: 4px auto 0;
}
.tn-dash__ring svg { width: 100%; height: 100%; }
.tn-dash__ring i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(34,211,238,.6);
}
.tn-dash__card--ring { align-items: stretch; }
.tn-dash__card--ring .tn-dash__num { text-align: left; }

/* Progress bar */
.tn-dash__progress {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    margin-top: auto;
}
.tn-dash__progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #c084fc, #22d3ee);
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(192,132,252,.6);
}

/* Spans 2 cols for the line chart */
.tn-dash__card--chart { grid-column: span 1; }

/* === TechNova right-side floating cards stack === */
.tn-hero-side {
    position: absolute;
    right: -12px;
    top: 14%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 4;
}
.tn-hero-side__card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(142, 36, 170, .14);
    box-shadow: 0 14px 32px rgba(76, 29, 149, .15);
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 180px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tn-hero-side__card:hover {
    transform: translateY(-2px) translateX(-4px);
    box-shadow: 0 20px 44px rgba(76, 29, 149, .22);
}
.tn-hero-side__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(142,36,170,.14), rgba(30,136,229,.10));
    color: var(--tn-violet-bright);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(142,36,170,.12);
}
.tn-hero-side__card strong {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--tn-text-ink);
    line-height: 1.2;
}
.tn-hero-side__card span {
    display: block;
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

/* === Purple podium glow underneath the dashboard === */
.tn-hero-podium {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 90px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(192,132,252,.55) 0%,
        rgba(142,36,170,.35) 30%,
        rgba(30,136,229,.20) 55%,
        transparent 75%);
    filter: blur(20px);
    z-index: 2;
    pointer-events: none;
    animation: tnPodiumPulse 4s ease-in-out infinite;
}
@keyframes tnPodiumPulse {
    0%, 100% { opacity: .85; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.06); }
}

/* === TechNova bottom service tile row — neon purple cubes === */
.tn-hero-tiles {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: -22px;
    position: relative;
    z-index: 4;
    padding: 0 8px;
}
.tn-hero-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 6px 12px;
    background: linear-gradient(165deg, #2a1856 0%, #1a0b2e 100%);
    border: 1px solid rgba(192, 132, 252, .35);
    border-radius: 14px;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow:
        0 0 0 1px rgba(192,132,252,.10) inset,
        0 12px 28px rgba(76, 29, 149, .35),
        0 0 24px rgba(192, 132, 252, .20);
    position: relative;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    overflow: hidden;
}
.tn-hero-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(192,132,252,.22), transparent 60%);
    pointer-events: none;
}
.tn-hero-tile:hover {
    transform: translateY(-4px);
    border-color: #c084fc;
    box-shadow:
        0 0 0 1px rgba(192,132,252,.30) inset,
        0 18px 36px rgba(76, 29, 149, .50),
        0 0 32px rgba(192, 132, 252, .40);
}
.tn-hero-tile i {
    font-size: 22px;
    color: #c084fc;
    text-shadow: 0 0 12px rgba(192, 132, 252, .8);
    transition: transform .2s, color .2s;
    position: relative;
    z-index: 1;
}
.tn-hero-tile:hover i { transform: scale(1.12); color: #e9d5ff; }
.tn-hero-tile span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    letter-spacing: .01em;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .tn-hero-side { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 14px; }
    .tn-hero-side__card { min-width: auto; flex: 1 1 calc(50% - 8px); }
    .tn-hero-tiles { grid-template-columns: repeat(3, 1fr); margin-top: 14px; }
}
@media (max-width: 575px) {
    .tn-hero-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .tn-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .tn-hero-nav { display: none; }
}
@media (max-width: 600px) {
    .tn-hero-badges { gap: 8px; }
    .tn-hero-badge { padding: 8px 14px; font-size: 11.5px; }
    .hero-home { padding: 36px 0 60px !important; }
}

/* ============================================================
 * HOME — Stats section re-skin to TechNova purple bar (centered + spaced)
 * ============================================================ */
.stats-section {
    background: transparent !important;
    padding: 40px 0 !important;
    margin: 16px 0;
}
.stats-section .container {
    background: linear-gradient(120deg, #6A1B9A 0%, #8E24AA 55%, #4c1d95 100%);
    border-radius: var(--tn-r-lg);
    padding: 42px 36px !important;
    box-shadow: var(--tn-shadow-purple);
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.stats-section .container > div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    flex-wrap: wrap !important;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.stats-section .container::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,.06), transparent 50%);
    pointer-events: none;
}
.stats-section .stat-item {
    color: #fff !important;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 140px;
}
.stats-section .stat-number,
.stats-section .stat-item .counter {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: clamp(28px, 3.4vw, 42px) !important;
    line-height: 1.05 !important;
}
.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: .02em !important;
    margin-top: 6px !important;
}
.stats-section .stat-divider {
    background: rgba(255,255,255,.14) !important;
    width: 1px !important;
}

/* ============================================================
 * HOME — Tighter section titles + service card icons
 * ============================================================ */
.section-title {
    font-size: clamp(1.55rem, 2.6vw, 2.1rem) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.015em !important;
    color: var(--tn-text-ink) !important;
}
.section-subtitle {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: var(--tn-text-body) !important;
    max-width: 580px !important;
}
.section-badge {
    font-size: 12px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
}

.service-card {
    position: relative;
    background: #fff !important;
    border-radius: 16px !important;
    border: 1px solid var(--tn-border) !important;
    padding: 22px 22px 56px !important; /* bottom space for Explore link */
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tn-shadow-md);
    border-color: var(--tn-purple-200);
}
/* Remove any stray top accent line from inherited CSS or AOS */
.service-card::before { display: none !important; content: none !important; }
/* "Explore more →" link — auto-injected at bottom of every service card */
.service-card::after {
    content: 'Explore more \2192';
    position: absolute;
    left: 22px;
    bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--tn-violet-bright);
    letter-spacing: .01em;
    transition: gap .2s, color .2s, letter-spacing .2s;
}
.service-card:hover::after { color: var(--tn-violet-deep); letter-spacing: .04em; }
/* Force the icon box to show properly — fixed size, centered icon */
.service-card .service-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    line-height: 1 !important;
    margin-bottom: 16px !important;
    flex-shrink: 0 !important;
}
.service-card .service-icon i {
    font-size: 26px !important;
    line-height: 1 !important;
    color: inherit !important;
}
.service-card h5 {
    font-weight: 800 !important;
    font-size: 17px !important;
    color: var(--tn-text-ink) !important;
    margin: 0 0 8px !important;
}
.service-card p {
    color: var(--tn-text-body) !important;
    line-height: 1.55 !important;
    font-size: 13.5px !important;
    margin: 0 0 14px !important;
}
.service-card .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-card .service-tags span {
    background: var(--tn-purple-50) !important;
    color: var(--tn-violet-deep) !important;
    border-radius: 999px !important;
    padding: 4px 10px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    display: inline-block;
}

/* ============================================================
 * HOME — Hero floating badges in TechNova-style positioning
 * (existing .hero-float-card markup, just better shadows + ring)
 * ============================================================ */
.hero-float-card {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 36, 170, .12) !important;
    box-shadow: 0 12px 32px rgba(76, 29, 149, .15) !important;
    border-radius: 14px !important;
}
.hero-stats .hero-stat .num {
    background: var(--tn-grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* ============================================================
 * ABOUT SECTION — Dark TechNova "Transforming Ideas" panel
 * ============================================================ */
.about-section {
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0719 55%, #1f1340 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 24px;
    margin: 32px 16px;
}
.about-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(192,132,252,.20), transparent 50%),
        radial-gradient(circle at 82% 80%, rgba(34,211,238,.12), transparent 55%),
        linear-gradient(rgba(192,132,252,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30,136,229,.04) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 80%);
    pointer-events: none;
}
.about-section > .container { position: relative; z-index: 1; }

/* Badge */
.about-section .section-badge {
    background: rgba(255,255,255,.08) !important;
    color: var(--tn-purple-300) !important;
    border: 1px solid rgba(192,132,252,.30) !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}
.about-section .section-badge i { color: var(--tn-purple-300) !important; }

/* Section title — white with gradient on second line */
.about-section .section-title {
    color: #fff !important;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem) !important;
}
.about-section .section-title br + * { display: inline; }
.about-section h2.section-title {
    font-weight: 800 !important;
    line-height: 1.15 !important;
}
.about-section h2.section-title::after {
    /* Apply gradient to text via background-clip — works on the second line */
}
.about-section .section-subtitle {
    color: rgba(255,255,255,.78) !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
}

/* Override Bootstrap bg-main-600 / bg-main-two-600 ONLY on the LEFT quadrant cards (not the section badge) */
.about-section .row.g-3 > [class*="col-"] > .bg-main-600,
.about-section .row.g-3 > [class*="col-"] > .bg-main-two-600 {
    background: linear-gradient(155deg, rgba(142,36,170,.22), rgba(76,29,149,.12)) !important;
    border: 1px solid rgba(192,132,252,.28) !important;
    box-shadow: 0 0 0 1px rgba(192,132,252,.10) inset, 0 18px 38px rgba(76,29,149,.40);
    backdrop-filter: blur(8px);
}
/* Section badge — explicit override so the broad selector above never applies */
.about-section .section-badge.bg-main-50 {
    background: rgba(255,255,255,.08) !important;
    color: var(--tn-purple-300) !important;
    border: 1px solid rgba(192,132,252,.30) !important;
    padding: 6px 14px !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    box-shadow: none !important;
}
.about-section .section-badge.bg-main-50.text-main-600 { color: var(--tn-purple-300) !important; }
.about-section .row.g-3 > [class*="col-"] > div {
    border-radius: 18px !important;
    transition: transform .25s, box-shadow .25s;
}
.about-section .row.g-3 > [class*="col-"] > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(192,132,252,.20) inset, 0 24px 48px rgba(76,29,149,.55);
}
/* The image quadrant (AI photo) — frame with neon ring */
.about-section .tw-rounded-3xl.overflow-hidden img { filter: brightness(.92); }
.about-section .row.g-3 > [class*="col-"] .tw-rounded-3xl.overflow-hidden {
    border: 1px solid rgba(192,132,252,.30) !important;
    box-shadow: 0 0 30px rgba(192,132,252,.20);
    position: relative;
}

/* 88% stat card text */
.about-section .text-white,
.about-section h3.text-white,
.about-section p.text-white { color: #fff !important; }
.about-section h3.text-white {
    font-size: 38px !important;
    font-weight: 900 !important;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, #c084fc, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}
.about-section h3.text-white img { filter: brightness(0) saturate(100%) invert(70%) sepia(50%) saturate(2000%) hue-rotate(245deg) brightness(100%) contrast(105%); }

/* Circular progress (78%) card */
.about-section .radial-progress .complete { stroke: #c084fc !important; }
.about-section .radial-progress .incomplete { stroke: rgba(255,255,255,.12) !important; }
.about-section .radial-progress .percentage { fill: #fff !important; }

/* Tag chips card */
.about-section .rounded-pill[class*="bg-"] {
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(192,132,252,.25);
    color: #fff !important;
    backdrop-filter: blur(6px);
}

/* About features (3 stacked rows: Full-Stack, AI-First, Long-Term) — solid card style */
.about-section .about-feature {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 16px 18px !important;
    margin-bottom: 10px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(192,132,252,.18) !important;
    border-radius: 14px !important;
    transition: background .2s, border-color .2s, transform .2s;
}
.about-section .about-feature:hover {
    background: rgba(192,132,252,.10) !important;
    border-color: rgba(192,132,252,.35) !important;
    transform: translateY(-2px);
}
/* Force the icon box to stay small — override the inline #F3E5F5/#fef3c7/#ecfdf5 backgrounds so they don't bleed visually */
.about-section .about-feature .feat-icon,
.about-section .about-feature > div.feat-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.30);
    overflow: hidden;
}
.about-section .about-feature .feat-icon i { font-size: 20px !important; }
/* The TEXT column must take remaining width AND have visible white text */
.about-section .about-feature > div:not(.feat-icon) {
    flex: 1 1 auto !important;
    min-width: 0 !important;
}
.about-section .about-feature h6,
.about-section .about-feature > div h6 {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 15.5px !important;
    margin: 0 0 4px !important;
    line-height: 1.3 !important;
}
.about-section .about-feature p,
.about-section .about-feature > div p {
    color: rgba(255,255,255,.78) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* TAG CHIPS QUADRANT — the AI&ML / Cloud / DevOps / Shopify card */
/* The card has inline background:linear-gradient(135deg,#f0f4ff,#F3E5F5) — override with dark glass */
.about-section .row.g-3 > [class*="col-"] > div[style*="linear-gradient(135deg, #f0f4ff"],
.about-section .row.g-3 > [class*="col-"] > div[style*="f0f4ff"] {
    background: linear-gradient(155deg, rgba(142,36,170,.22), rgba(76,29,149,.12)) !important;
    border: 1px solid rgba(192,132,252,.28) !important;
    box-shadow: 0 0 0 1px rgba(192,132,252,.10) inset, 0 18px 38px rgba(76,29,149,.40);
    backdrop-filter: blur(8px);
}
/* The chips inside — force dark glass with white text regardless of bg-main-* class */
.about-section .rounded-pill {
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(192,132,252,.30) !important;
    color: #fff !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0,0,0,.20);
}

/* "Learn More About Us" button — solid purple gradient pill */
.about-section .btn-main-two,
.about-section a[href*="/about"] {
    background: linear-gradient(135deg, #8E24AA, #6A1B9A) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: var(--tn-r-pill) !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 14px 32px rgba(142,36,170,.45) !important;
}

/* ============================================================
 * PROCESS SECTION (From Idea to Launch — 4 steps)
 * ============================================================ */
.process-section { background: linear-gradient(180deg, #faf5ff 0%, #f3eaff 100%); padding: 90px 0 !important; position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 20%, rgba(192,132,252,.12), transparent 50%), radial-gradient(circle at 85% 80%, rgba(30,136,229,.08), transparent 55%); pointer-events: none; }
.process-section > .container { position: relative; z-index: 1; }
.process-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--tn-border);
    border-radius: 18px;
    padding: 28px 24px 24px;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    min-height: 240px;
}
.process-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(76,29,149,.18); border-color: var(--tn-purple-200); }
.process-card .process-num {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #8E24AA, #1E88E5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 14px;
}
.process-card .process-icon {
    width: 56px !important; height: 56px !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    margin-bottom: 16px !important;
}
.process-card h6 { font-size: 17px !important; font-weight: 800 !important; color: var(--tn-text-ink) !important; margin: 0 0 8px !important; }
.process-card p { font-size: 13.5px !important; color: var(--tn-text-body) !important; line-height: 1.55 !important; margin: 0 !important; }
/* Animated arrow connector between cards on desktop */
.process-card.process-connector::after {
    content: '\2192';
    position: absolute;
    right: -28px;
    top: 48px;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--tn-purple-300);
    font-weight: 700;
    z-index: 1;
}
@media (max-width: 991px) { .process-card.process-connector::after { display: none; } }

/* ============================================================
 * SHOPIFY SECTION (Built to Sell — green theme)
 * ============================================================ */
.shopify-section { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); padding: 90px 0 !important; position: relative; }
.shopify-section .shopify-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(16,185,129,.12); color: #047857;
    padding: 6px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.shopify-section .shopify-badge i { color: #10b981; }
.shopify-card {
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 14px;
    padding: 20px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    height: 100%;
}
.shopify-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(16,185,129,.15); border-color: #10b981; }
.shopify-card .shop-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(16,185,129,.30);
}
.shopify-card h6 { font-weight: 800 !important; font-size: 14.5px !important; color: var(--tn-text-ink) !important; margin: 0 0 6px !important; }
.shopify-card p { font-size: 12.5px !important; color: var(--tn-text-body) !important; line-height: 1.55 !important; margin: 0 !important; }

/* ============================================================
 * TECH STACK SECTION
 * ============================================================ */
.tech-stack-section { background: #fff; padding: 90px 0 !important; }
.tech-item {
    background: #fff;
    border: 1px solid var(--tn-border);
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.tech-item:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(76,29,149,.12); border-color: var(--tn-purple-200); }
.tech-item .tech-icon { font-size: 32px !important; line-height: 1 !important; }
.tech-item span { font-size: 12px; font-weight: 700; color: var(--tn-text-ink); }

/* ============================================================
 * PORTFOLIO SECTION (Dark)
 * ============================================================ */
.portfolio-section {
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0719 60%, #1f1340 100%) !important;
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 0 16px;
}
.portfolio-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(192,132,252,.16), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34,211,238,.10), transparent 55%);
    pointer-events: none;
}
.portfolio-section > .container { position: relative; z-index: 1; }
.portfolio-section .section-title { color: #fff !important; }
.portfolio-section .section-badge {
    background: rgba(255,255,255,.08) !important;
    color: var(--tn-purple-300) !important;
    border: 1px solid rgba(192,132,252,.25);
}
.portfolio-section .group-item .position-relative > a:first-child {
    border-radius: 18px !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.32);
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255,255,255,.06);
}
.portfolio-section .group-item h5 { font-weight: 800 !important; }
.portfolio-section .group-item h5 a { font-size: 16px !important; }

/* ============================================================
 * TESTIMONIALS SECTION
 * ============================================================ */
.testimonials-section-new { background: linear-gradient(180deg, #fff 0%, #faf5ff 100%); padding: 90px 0 !important; }
.testimonial-card-new {
    background: #fff;
    border: 1px solid var(--tn-border);
    border-radius: 18px;
    padding: 26px 22px;
    height: 100%;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
}
.testimonial-card-new::before {
    content: '\201C';
    position: absolute;
    top: 14px; right: 22px;
    font-size: 60px;
    font-family: Georgia, serif;
    line-height: 1;
    color: var(--tn-purple-200);
    opacity: .8;
}
.testimonial-card-new:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(76,29,149,.14); border-color: var(--tn-purple-200); }
.testimonial-card-new .stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; display: flex; gap: 2px; }
.testimonial-card-new .quote { font-size: 14px !important; line-height: 1.65 !important; color: var(--tn-text-body) !important; margin: 0 0 18px !important; font-style: normal; }
.testimonial-card-new .client-info { display: flex !important; align-items: center !important; gap: 12px !important; padding-top: 14px; border-top: 1px solid var(--tn-border); }
.testimonial-card-new .client-info > div:first-child { width: 42px !important; height: 42px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; color: #fff !important; font-weight: 800 !important; font-size: 14px !important; flex-shrink: 0; }
.testimonial-card-new .client-info h6 { font-weight: 800 !important; font-size: 13.5px !important; color: var(--tn-text-ink) !important; margin: 0 !important; }
.testimonial-card-new .client-info p { font-size: 11.5px !important; color: var(--tn-mute) !important; margin: 0 !important; }

/* ============================================================
 * BLOG / LATEST INSIGHTS SECTION
 * ============================================================ */
.blog-section { padding: 90px 0 !important; background: #fff; }
.blog-card,
.latest-blog-card,
section[class*="blog"] .card,
section.blog-section article {
    border-radius: 18px !important;
    border: 1px solid var(--tn-border) !important;
    overflow: hidden !important;
    transition: transform .25s, box-shadow .25s, border-color .25s !important;
    background: #fff !important;
}
.blog-card:hover,
.latest-blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(76,29,149,.14); border-color: var(--tn-purple-200); }

/* ============================================================
 * SECTION POLISH PASS — Matching TechNova mockups closely
 * ============================================================ */

/* HOW WE WORK — 6-step process cards with colored bottom accents */
.tn-process { padding: 90px 0 !important; background: linear-gradient(180deg, #fff 0%, #faf7ff 100%); }
.tn-process__step {
    background: #fff !important;
    border: 1px solid #ece3f7 !important;
    border-radius: 18px !important;
    padding: 22px 18px 24px !important;
    position: relative;
    overflow: hidden;
}
.tn-process__step::before {
    content: '';
    position: absolute;
    left: 18px; right: 18px; bottom: 14px;
    height: 3px; border-radius: 2px;
}
.tn-process__step:nth-child(1)::before { background: linear-gradient(90deg, #8E24AA, #c084fc); }
.tn-process__step:nth-child(2)::before { background: linear-gradient(90deg, #ec4899, #f9a8d4); }
.tn-process__step:nth-child(3)::before { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.tn-process__step:nth-child(4)::before { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
.tn-process__step:nth-child(5)::before { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.tn-process__step:nth-child(6)::before { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }
.tn-process__step-head { justify-content: center !important; margin-bottom: 16px !important; position: relative; }
.tn-process__icon {
    width: 64px !important; height: 64px !important;
    border-radius: 18px !important;
    font-size: 28px !important;
    background: linear-gradient(135deg, rgba(192,132,252,.18), rgba(142,36,170,.06)) !important;
}
.tn-process__step:nth-child(2) .tn-process__icon { background: linear-gradient(135deg, rgba(244,114,182,.18), rgba(236,72,153,.06)) !important; color: #ec4899 !important; }
.tn-process__step:nth-child(3) .tn-process__icon { background: linear-gradient(135deg, rgba(252,211,77,.22), rgba(245,158,11,.06)) !important; color: #d97706 !important; }
.tn-process__step:nth-child(4) .tn-process__icon { background: linear-gradient(135deg, rgba(147,197,253,.22), rgba(59,130,246,.06)) !important; color: #3b82f6 !important; }
.tn-process__step:nth-child(5) .tn-process__icon { background: linear-gradient(135deg, rgba(110,231,183,.22), rgba(16,185,129,.06)) !important; color: #10b981 !important; }
.tn-process__num {
    position: absolute;
    top: -16px; left: 50%; transform: translateX(-50%);
    background: #fff;
    color: #8E24AA !important;
    width: 50px; height: 32px;
    border: 1.5px solid #ece3f7;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px !important;
    font-weight: 800 !important;
    margin-bottom: 0 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 6px 14px rgba(76,29,149,.10);
}
.tn-process__step:nth-child(2) .tn-process__num { color: #ec4899 !important; }
.tn-process__step:nth-child(3) .tn-process__num { color: #d97706 !important; }
.tn-process__step:nth-child(4) .tn-process__num { color: #3b82f6 !important; }
.tn-process__step:nth-child(5) .tn-process__num { color: #10b981 !important; }
.tn-process__title { text-align: center !important; font-size: 16px !important; }
.tn-process__desc { text-align: center !important; padding-bottom: 16px; }
.tn-process__arrow { right: -22px !important; top: 52px !important; color: #c4b5fd !important; }

/* Trust pill at bottom of How We Work */
.tn-process::after {
    content: '\f25e  Transparent communication. Timely delivery. Lasting impact.';
    font-family: 'Phosphor', sans-serif;
    display: block;
    text-align: center;
    margin: 36px auto 0;
    width: max-content;
    max-width: 90%;
    padding: 12px 24px;
    background: rgba(192, 132, 252, .10);
    border: 1px solid rgba(192, 132, 252, .25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-violet-deep);
}

/* FROM IDEA TO LAUNCH — Dark game-themed (process-section) */
.process-section {
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0719 55%, #1f1340 100%) !important;
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 32px 16px;
    color: #fff;
}
.process-section::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(192,132,252,.18), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(34,211,238,.10), transparent 55%);
    pointer-events: none;
}
.process-section > .container { position: relative; z-index: 1; }
.process-section .section-title { color: #fff !important; }
.process-section .section-title::before {
    content: 'YOUR JOURNEY';
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--tn-purple-300);
    letter-spacing: .14em;
    margin-bottom: 14px;
}
.process-section .section-badge { display: none !important; }
.process-section .section-subtitle { color: rgba(255,255,255,.78) !important; }
.process-section .process-card {
    background: rgba(192,132,252,.06) !important;
    border: 1px solid rgba(192,132,252,.22) !important;
    box-shadow: 0 0 0 1px rgba(192,132,252,.06) inset, 0 18px 38px rgba(76,29,149,.30);
    backdrop-filter: blur(8px);
    color: #fff;
}
.process-section .process-card .process-num {
    background: linear-gradient(135deg, #c084fc, #8E24AA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.process-section .process-card h6 { color: #fff !important; }
.process-section .process-card p { color: rgba(255,255,255,.75) !important; }
.process-section .process-card.process-connector::after { color: var(--tn-purple-300) !important; }
/* Level progress bar */
.process-section .container::after {
    content: 'LEVEL PROGRESS \2022 100% Unlocked';
    display: block;
    margin: 36px auto 0;
    padding: 12px 28px;
    background: linear-gradient(90deg, rgba(192,132,252,.18), rgba(34,211,238,.12));
    border: 1px solid rgba(192,132,252,.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #fff;
    text-align: center;
    width: max-content;
    max-width: 95%;
    position: relative;
}

/* SHOPIFY SECTION — Mini stats with icon boxes + gradient CTA */
.shopify-section .d-flex.tw-gap-6 { display: flex !important; gap: 24px !important; margin-bottom: 28px !important; }
.shopify-section .d-flex.tw-gap-6 > div {
    text-align: center;
    flex: 1;
    padding: 14px;
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(16,185,129,.08);
}
.shopify-section .d-flex.tw-gap-6 .fw-bold { font-size: 26px !important; font-weight: 900 !important; }
.shopify-section a[class*="btn-main"] {
    background: linear-gradient(135deg, #10b981, #047857) !important;
    border: 0 !important;
    box-shadow: 0 14px 32px rgba(16,185,129,.35) !important;
}
.shopify-section .shopify-badge { background: rgba(16,185,129,.15) !important; color: #047857 !important; padding: 8px 16px !important; }

/* TECH STACK — Card grid with icon + name + role label */
.tech-stack-section { background: linear-gradient(180deg, #fff, #faf7ff) !important; }
.tech-item {
    background: #fff;
    border: 1px solid #ece3f7;
    border-radius: 14px;
    padding: 18px 16px !important;
    text-align: left !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 70px;
}
.tech-item .tech-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px;
    background: #faf7ff;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    flex-shrink: 0;
    border: 1px solid #ece3f7;
}
.tech-item span { font-size: 13.5px !important; font-weight: 800 !important; color: var(--tn-text-ink) !important; }

/* PORTFOLIO — Dark section title gradient + better card framing */
.portfolio-section .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
}
.portfolio-section .section-title br + *,
.portfolio-section .section-title { color: #fff !important; }
/* Add "Passion & Precision" gradient effect — applied to entire title for simplicity */
.portfolio-section h2.section-title {
    background: linear-gradient(120deg, #fff 0%, #fff 40%, #c084fc 65%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}
.portfolio-section .group-item .text-white { color: #fff !important; }
.portfolio-section .group-item h5 a { color: #fff !important; font-size: 17px !important; }
.portfolio-section a[href*="/portfolio"]:not(.group-item a) {
    background: linear-gradient(135deg, #8E24AA, #6A1B9A) !important;
    border: 0 !important;
    box-shadow: 0 12px 28px rgba(142,36,170,.40);
}

/* TESTIMONIALS — Highlight middle (featured) card */
.testimonials-section-new .row.g-4 > [class*="col-"]:nth-child(2) .testimonial-card-new {
    border: 2px solid var(--tn-violet-bright);
    box-shadow: 0 18px 44px rgba(142,36,170,.20);
    position: relative;
}
.testimonials-section-new .row.g-4 > [class*="col-"]:nth-child(2) .testimonial-card-new::after {
    content: '\2728 FEATURED';
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #8E24AA, #6A1B9A);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: .08em;
    box-shadow: 0 8px 18px rgba(142,36,170,.40);
}

/* BLOG / LATEST INSIGHTS — Card with image + category + Read More */
.blog-section, section[class*="blog-section"] { padding: 90px 0 !important; background: linear-gradient(180deg, #fff, #faf7ff) !important; }
.blog-section .section-title em,
.blog-section h2 em { color: var(--tn-violet-bright); font-style: normal; }

/* CTA SECTION — Dark purple banner with stats + feature pills */
.cta-section .tn-cta-banner {
    background: linear-gradient(135deg, #2a1856 0%, #4c1d95 50%, #1a0b2e 100%) !important;
    padding: 56px 56px 38px !important;
    box-shadow: 0 30px 80px rgba(76,29,149,.40) !important;
}
.cta-section .tn-cta-banner__eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.cta-section .tn-cta-banner h3 {
    font-size: clamp(28px, 3vw, 40px) !important;
    line-height: 1.1 !important;
}
.cta-section .tn-cta-banner h3 strong,
.cta-section .tn-cta-banner h3 em {
    background: linear-gradient(120deg, #c084fc, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* Hover + accessibility tweak */
.tn-process__step:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(76,29,149,.18); border-color: rgba(142,36,170,.30) !important; }
.process-section .process-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(192,132,252,.25) inset, 0 28px 56px rgba(76,29,149,.50); }

/* ============================================================
 * RESPONSIVE NICETIES
 * ============================================================ */
@media (max-width: 768px) {
    :root { --tn-sp-section: 56px; }
    .tn-stats { padding: 28px 22px; }
    .tn-cta-banner { padding: 30px 26px; }
    .tn-hero__badge--tl,
    .tn-hero__badge--br { position: static; display: inline-block; margin: 8px 8px 0 0; }
}
