@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Theme Guide Color Palette */
    --bg: #F5F5F7;
    --surface: #FFFFFF;
    --ink: #1D1D1F;
    --ink-true: #000000;
    --muted: #86868B;
    --border: #D2D2D7;
    --brand: #06A3DA;
    --brand-hover: #058FC0;
    --brand-deep: #045E82;
    --brand-tint: #E4F5FB;

    /* Radii & Effects */
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --radius-pill: 999px;

    /* Main Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

    /* Mapping compatibility aliases */
    --bg-primary: var(--bg);
    --bg-secondary: var(--surface);
    --primary-gradient: linear-gradient(135deg, var(--brand) 0%, #0084BA 100%);
    --accent: var(--brand);
    --accent-2: var(--brand-deep);
    --card-border: var(--border);
    --glass-bg: rgba(255, 255, 255, 0.82);
    --text-main: var(--ink-true);
    --text-dim: var(--muted);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--ink-true);
    letter-spacing: -0.015em;
}

.text-dim {
    color: var(--text-dim) !important;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Utility */
.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

/* Buttons Theme Specs */
.btn-cyber {
    position: relative;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid transparent;
    cursor: pointer;
    overflow: hidden;
}

.btn-cyber-primary {
    background: var(--brand);
    color: #FFFFFF !important;
}

.btn-cyber-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    color: #FFFFFF !important;
    box-shadow: var(--shadow-md);
}

.btn-cyber-dark,
.btn-dark-theme {
    background: var(--ink-true);
    color: #FFFFFF !important;
}

.btn-cyber-dark:hover,
.btn-dark-theme:hover {
    background: #222225;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cyber-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--ink-true);
}

.btn-cyber-outline:hover {
    background: var(--surface);
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.btn-cyber-link {
    background: transparent;
    border: none;
    color: var(--brand);
    padding: 8px 12px;
}

.btn-cyber-link:hover {
    color: var(--brand-hover);
    text-decoration: underline;
}

.btn-cyber-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--ink);
}

.btn-cyber-secondary:hover {
    background: #FFFFFF;
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Navbar */
.navbar-cyber {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(245, 245, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(210, 210, 215, 0.5);
    transition: var(--transition-smooth);
}

.navbar-cyber.scrolled {
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink-true);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.logo-tag {
    font-size: 11px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 16px 0;
}

.nav-link-cyber {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 12px !important;
    border-radius: var(--radius-sm);
}

.nav-link-cyber:hover {
    color: var(--brand);
    background: var(--brand-tint);
}

.nav-link-cyber.active {
    color: var(--brand);
    font-weight: 600;
    background: var(--brand-tint);
}

.nav-link-cyber.active::after {
    display: none;
}

.nav-toggle {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

/* Bootstrap navbar link spacing */
.navbar-nav .nav-link-cyber {
    padding: 8px 14px;
}

@media (min-width: 992px) {
    .gap-lg-3 {
        gap: 0.5rem !important;
    }
}

/* Mega menu positioning */
.navbar>.container {
    position: relative;
}

.nav-item.dropdown {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: calc(100% - 2rem);
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
}

.dropdown-menu.mega-menu {
    display: none;
    border: none !important;
}

.dropdown-menu.mega-menu.show {
    display: block;
}

.mega-menu a {
    text-decoration: none;
    color: var(--ink);
}

.mega-menu a:hover {
    color: var(--brand);
}

.mega-col-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink-true);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-item {
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: var(--transition-smooth);
    display: flex !important;
    gap: 12px;
    align-items: center;
}

.mega-item:hover {
    background: var(--brand-tint);
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.mega-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--brand-tint);
    color: var(--brand);
    font-size: 16px;
    flex-shrink: 0;
}

.mega-item .fw-bold {
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--ink-true);
}

.mega-item .small {
    color: var(--muted);
    line-height: 1.4;
    font-size: 13px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }
}

.eyebrow-theme {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-tint);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.page-name-gradient {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
    color: var(--brand);
    background: var(--brand-tint);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 16px;
}

/* Modern Hero Section */
.hero-modern {
    padding: 140px 0 80px;
    position: relative;
    background: var(--bg);
}

.hero-glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.breadcrumb-modern {
    background: var(--bg);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    display: inline-block;
}

.breadcrumb-modern .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--muted);
    padding: 0 10px;
}

.breadcrumb-modern a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.breadcrumb-modern a:hover {
    color: var(--brand);
}

.breadcrumb-modern .active {
    color: var(--ink-true);
    font-weight: 600;
    font-size: 13px;
}

.hero-title-modern {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink-true);
}

.hero-sub-modern {
    font-size: 18px;
    color: var(--muted);
    max-width: 660px;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-badge-modern {
    background: var(--brand-tint);
    color: var(--brand);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
}

.hero-badge {
    background: var(--brand-tint);
    color: var(--brand);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink-true);
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 640px;
    line-height: 1.6;
}

/* Marquee Tech Stack Animation */
.marquee-cyber {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content-cyber {
    display: inline-block;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-content-cyber span {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 48px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.marquee-content-cyber span:hover {
    color: var(--brand);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Dashboard Panel */
.dashboard-panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--surface);
    border: 1px solid var(--border);
}

.panel-header {
    background: var(--bg);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.panel-tabs {
    display: flex;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.panel-tab {
    flex: 1;
    min-width: 100px;
    padding: 12px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--muted);
    transition: var(--transition-smooth);
}

.panel-tab.active {
    color: var(--brand);
    background: var(--surface);
    border-bottom: 2px solid var(--brand);
}

.panel-content {
    padding: 24px;
}

.cyber-input,
.cyber-select {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    color: var(--ink-true) !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.cyber-input:focus,
.cyber-select:focus {
    box-shadow: 0 0 0 3px var(--brand-tint) !important;
    border-color: var(--brand) !important;
}

/* Cards */
.cyber-card {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.cyber-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

/* Cursor Glow */
.cursor-glow {
    display: none;
}

/* Footer */
footer {
    padding: 64px 0 40px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

footer h6 {
    color: var(--ink-true);
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 15px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

footer ul li a:hover {
    color: var(--brand);
}

/* Helpers */
.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink-true);
}

.smaller {
    font-size: 13px;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        text-align: center;
        padding-top: 140px;
        min-height: 84vh;
    }

    .hero-modern {
        padding: 140px 0 60px;
    }

    .hero-glass-card {
        border-radius: 32px;
        padding: 30px 20px !important;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links {
        justify-content: center;
        padding: 16px 0 8px;
    }

    .nav-link-cyber.active::after {
        display: none;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 24px;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(24px);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        padding: 15px;
        box-shadow: none;
        background: transparent;
        backdrop-filter: none;
        border: none;
    }
}

/* Tab content */
.tab-content.d-none {
    display: none !important;
}

/* Portfolio & Case Study Showcase */
.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}

.portfolio-screen {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #E8ECEF;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.portfolio-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), object-position 4s ease-in-out;
}

.portfolio-card:hover .portfolio-screen img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 94, 130, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(2px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--brand-tint);
    color: var(--brand);
    border: 1px solid rgba(6, 163, 218, 0.2);
}

.portfolio-filter-btn {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--ink-true);
    color: #FFFFFF;
    border-color: var(--ink-true);
}

/* Product Showcase & Live Badges */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    background: rgba(39, 201, 63, 0.12);
    color: #1a8a2d;
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #27C93F;
    box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(39, 201, 63, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
    }
}

.product-flagship-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-flagship-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}

.product-screen-thumb {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #E8ECEF;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.product-screen-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-flagship-card:hover .product-screen-thumb img {
    transform: scale(1.03);
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--ink);
    margin-bottom: 8px;
}

.product-feature-list li i {
    color: var(--brand);
    font-size: 14px;
}

/* Client Logos Infinite Scrolling Carousel */
.clients-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.clients-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 20px;
    animation: clientsInfiniteScroll 30s linear infinite;
}

.clients-marquee-wrapper:hover .clients-marquee-track {
    animation-play-state: paused;
}

@keyframes clientsInfiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 84px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.client-logo-item:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.client-logo-item img {
    max-height: 48px;
    max-width: 135px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.client-logo-item:hover img {
    transform: scale(1.08);
}

/* 1st Responder Data Grid (ScanSecure) */
.responder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .responder-grid {
        grid-template-columns: 1fr;
    }
}

.responder-card-item {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition-smooth);
}

.responder-card-item:hover {
    background: #FFFFFF;
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.responder-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.icon-profile {
    background: rgba(6, 163, 218, 0.12);
    color: var(--brand);
}

.icon-vitals {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
}

.icon-sos {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

.icon-health {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.responder-info-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-true);
    margin-bottom: 2px;
}

.responder-info-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

/* Element Inspector Mockup Box */
.inspector-mockup {
    background: #0F172A;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    color: #F8FAFC;
}

.inspector-mockup-header {
    background: #1E293B;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inspector-tag-pill {
    font-family: 'SF Mono', Consolas, Monaco, monospace;
    font-size: 12px;
    background: rgba(6, 163, 218, 0.2);
    color: #38BDF8;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.inspector-prop-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.inspector-prop-name {
    color: #94A3B8;
    font-family: 'SF Mono', Consolas, monospace;
}

.inspector-prop-val {
    color: #F1F5F9;
    font-weight: 600;
    font-family: 'SF Mono', Consolas, monospace;
}

/* Startup Lab Venture Studio & Equity Model Styles */
.lab-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.25);
    color: var(--brand);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lab-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.lab-icon-idea {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
}

.lab-icon-revenue {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.lab-icon-dev {
    background: rgba(6, 163, 218, 0.12);
    color: #06A3DA;
}

.lab-icon-scale {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.lab-pillar-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    height: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.lab-pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.lab-pillar-card:hover .lab-icon-wrapper {
    transform: scale(1.1) rotate(4deg);
}

/* Equity Model Deal Card */
.equity-deal-container {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.equity-block {
    padding: 36px 30px;
    height: 100%;
}

.equity-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .equity-divider {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.equity-highlight-chip {
    display: inline-block;
    background: rgba(6, 163, 218, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38BDF8;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.equity-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #E2E8F0;
}

.equity-check-item i {
    color: #10B981;
    margin-top: 3px;
}

/* Venture Studio Showcase Cards */
.venture-showcase-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.venture-showcase-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: var(--shadow-lg);
}

.venture-thumb {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #0F172A;
    border-bottom: 1px solid var(--border);
}

.venture-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.venture-showcase-card:hover .venture-thumb img {
    transform: scale(1.04);
}

.venture-thumb-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.venture-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.revenue-model-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Modern Idea Generator Result Cards */
.idea-card-modern {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.idea-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 16px 32px rgba(6, 163, 218, 0.12);
}

.idea-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.idea-icon-ai {
    background: rgba(6, 163, 218, 0.12);
    color: #06A3DA;
}

.idea-icon-iot {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
}

.idea-icon-social {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.idea-icon-saas {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.idea-icon-commerce {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
}

.revenue-pill-tag {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.metric-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0;
}

@media (max-width: 480px) {
    .metric-grid-3 {
        grid-template-columns: 1fr;
    }
}

.metric-stat-box {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    text-align: center;
}

.metric-stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.metric-stat-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-true);
}

/* Startup Services Detailed Module Cards */
.service-module-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.service-module-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 16px 36px rgba(6, 163, 218, 0.12);
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-module-card:hover .service-icon-box {
    transform: scale(1.1) rotate(4deg);
}

.s-icon-1 {
    background: rgba(6, 163, 218, 0.12);
    color: #06A3DA;
}

.s-icon-2 {
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
}

.s-icon-3 {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
}

.s-icon-4 {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.s-icon-5 {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
}

.s-icon-6 {
    background: rgba(14, 165, 233, 0.12);
    color: #0EA5E9;
}

.deliverable-box {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin: 18px 0;
}

.deliverable-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 8px;
}

.deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverable-list li {
    font-size: 12.5px;
    color: var(--ink-true);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.deliverable-list li:last-child {
    margin-bottom: 0;
}

.deliverable-list li i {
    color: #10B981;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Comparison Table Card */
.compare-container {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-col-bad {
    background: #FFF5F5;
    padding: 32px 24px;
    border-right: 1px solid rgba(239, 68, 68, 0.15);
}

.compare-col-good {
    background: #F0FDF4;
    padding: 32px 24px;
}

@media (max-width: 991px) {
    .compare-col-bad {
        border-right: none;
        border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    }
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.5;
}

.compare-item:last-child {
    margin-bottom: 0;
}

/* FAQ Styling */
.faq-box-item {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
}

.faq-box-item:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-true);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* About Page Custom Component Styles */
.about-stat-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand);
    opacity: 0;
    transition: var(--transition-smooth);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.about-stat-card:hover::before {
    opacity: 1;
}

.about-value-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 16px 36px rgba(6, 163, 218, 0.1);
}

.about-process-step {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.about-process-step:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

.step-num-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-tint);
    color: var(--brand);
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tech-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-true);
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.tech-badge-pill:hover {
    border-color: var(--brand);
    background: var(--brand-tint);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tech-badge-pill i {
    font-size: 16px;
}

/* Technology Pill Marquee Carousel (Auto-Scroll in 1 Line) */
.tech-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 14px 0;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.tech-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 16px;
    animation: techPillScroll 30s linear infinite;
}

.tech-marquee-wrapper:hover .tech-marquee-track {
    animation-play-state: paused;
}

@keyframes techPillScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.quote-highlight-box {
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.06) 0%, rgba(4, 94, 130, 0.03) 100%);
    border-left: 4px solid var(--brand);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 20px 0;
}

/* Home Page Specific Enhancements */
.popular-idea-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-true);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.popular-idea-chip:hover {
    border-color: var(--brand);
    background: var(--brand-tint);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 163, 218, 0.12);
}

.home-idea-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.home-idea-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 16px 32px rgba(6, 163, 218, 0.12);
}

.home-process-step {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    height: 100%;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
}

.home-process-step:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}

/* Ultra-Clean Animated Smart Form Inputs */
.cyber-smart-input-box {
    position: relative;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 0 16px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.cyber-smart-input-box:hover {
    border-color: #CBD5E1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.cyber-smart-input-box:focus-within {
    background: #FFFFFF;
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(6, 163, 218, 0.12), 0 0 0 3.5px rgba(6, 163, 218, 0.16);
}

.smart-input-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #F1F5F9;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.cyber-smart-input-box:hover .smart-input-icon {
    color: var(--brand);
    background: var(--brand-tint);
}

.cyber-smart-input-box:focus-within .smart-input-icon {
    color: #FFFFFF;
    background: var(--brand);
    transform: scale(1.08) rotate(3deg);
}

.smart-input-field {
    width: 100%;
    height: 100%;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--ink-true) !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.smart-input-field::placeholder {
    color: #94A3B8 !important;
    font-weight: 400 !important;
}

/* Shimmer Animated Submit Button */
.btn-shimmer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand) 0%, #0084BA 100%);
    border: none;
    color: #FFFFFF !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px rgba(6, 163, 218, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(25deg);
    animation: button-shimmer 4s infinite ease-in-out;
}

@keyframes button-shimmer {
    0% {
        left: -60%;
    }

    40% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.btn-shimmer:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(6, 163, 218, 0.35);
}

.btn-shimmer:active {
    transform: translateY(0);
}


/* Structured Startup Idea Specification Grid */
.idea-spec-grid {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 16px;
}

.idea-spec-item {
    display: flex;
    flex-direction: column;
}

.idea-spec-item.full-width {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(210, 210, 215, 0.6);
    padding-top: 8px;
    margin-top: 2px;
}

.spec-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spec-value {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink-true);
    line-height: 1.35;
}

.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

/* =========================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVENESS SUITE
   ========================================================= */

/* Global Overflow & Container Safety */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Tablet Optimizations (768px - 991px) */
@media (max-width: 991px) {
    .hero-modern {
        padding: 120px 0 50px;
    }

    .hero-title-modern,
    .hero-title {
        font-size: clamp(28px, 5.5vw, 42px) !important;
        line-height: 1.15;
    }

    .section-title {
        font-size: clamp(24px, 4.5vw, 34px) !important;
        line-height: 1.2;
    }

    .section-padding {
        padding: 48px 0;
    }

    .hero-sub-modern,
    .hero-sub {
        font-size: 16px;
        line-height: 1.55;
    }

    .wrap {
        padding: 0 20px !important;
    }

    .col-lg-2-4 {
        width: 50%;
    }

    .service-module-card,
    .about-value-card,
    .home-idea-card {
        padding: 24px 20px;
    }

    .nav-links {
        gap: 8px;
    }
}

/* Mobile Optimizations (< 768px) */
@media (max-width: 767px) {
    .hero-modern {
        padding: 105px 0 35px;
    }

    .hero-glass-card {
        padding: 24px 16px !important;
        border-radius: 20px;
    }

    .hero-title-modern,
    .hero-title {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero-sub-modern,
    .hero-sub {
        font-size: 14.5px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .section-padding {
        padding: 38px 0;
    }

    .wrap {
        padding: 0 16px !important;
    }

    .btn-cyber {
        width: 100%;
        padding: 12px 20px;
        font-size: 14.5px;
    }

    .dashboard-panel {
        border-radius: 16px;
    }

    .panel-header {
        padding: 10px 14px;
    }

    .panel-tab {
        padding: 10px 8px;
        font-size: 12px;
    }

    .panel-content {
        padding: 16px 14px;
    }

    .cyber-smart-input-box {
        height: 50px;
        padding: 0 12px;
    }

    .smart-input-field {
        font-size: 14.5px !important;
    }

    .smart-input-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .idea-spec-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 12px;
    }

    .idea-spec-item.full-width {
        border-top: 1px solid rgba(210, 210, 215, 0.4);
        padding-top: 6px;
    }

    .col-lg-2-4 {
        width: 100%;
    }

    .home-process-step {
        padding: 18px 14px;
    }

    .product-screen-thumb {
        height: 180px !important;
    }

    .compare-col-bad,
    .compare-col-good {
        padding: 22px 16px;
    }

    .faq-box-item {
        padding: 16px;
    }

    .faq-q {
        font-size: 14.5px;
    }

    .faq-a {
        font-size: 13px;
    }

    .clients-marquee-wrapper {
        padding: 10px 0;
    }

    .marquee-content-cyber span {
        font-size: 18px;
        margin-right: 28px;
    }

    footer {
        padding: 40px 0 24px;
    }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 400px) {
    .hero-title-modern {
        font-size: 22px !important;
    }

    .panel-tab {
        font-size: 11px;
        padding: 8px 4px;
    }

    .popular-idea-chip {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ========================================================
   HOSTINGER PARTNER BADGE & INFRASTRUCTURE CARDS
   ======================================================== */
.hostinger-partner-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* padding: 8px 14px; */
    background: var(--surface);
    border: 1px solid rgba(108, 71, 255, 0.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.hostinger-partner-badge-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 71, 255, 0.15);
    border-color: #6C47FF;
}

.hostinger-partner-badge-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hostinger-partner-banner-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F3FF 100%);
    border: 1.5px solid rgba(108, 71, 255, 0.22);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: 0 10px 30px rgba(108, 71, 255, 0.07);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hostinger-partner-banner-card:hover {
    border-color: #6C47FF;
    box-shadow: 0 16px 40px rgba(108, 71, 255, 0.14);
    transform: translateY(-3px);
}

.hostinger-partner-banner-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(108, 71, 255, 0.12) 0%, rgba(108, 71, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hostinger-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6C47FF;
    background: rgba(108, 71, 255, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(108, 71, 255, 0.2);
}

.hostinger-footer-badge-box {
    background: rgba(108, 71, 255, 0.04);
    border: 1px solid rgba(108, 71, 255, 0.18);
    border-radius: 12px;
    /* padding: 12px 16px; */
    display: inline-block;
    transition: var(--transition-smooth);
}

.hostinger-footer-badge-box:hover {
    background: #FFFFFF;
    border-color: #6C47FF;
    box-shadow: 0 4px 16px rgba(108, 71, 255, 0.12);
    transform: translateY(-2px);
}