:root {
    /* Enterprise Light Theme Palette */
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-color: #1a1a1a;
    --text-secondary: #000000;

    /* Accents */
    --accent-color: #2563eb;
    /* Professional Blue */
    --accent-hover: #1d4ed8;
    --accent-light: #eff6ff;

    /* Glassmorphism & UI */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    /* Layout */
    --spacing-container: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --z-header: 1000;
    --z-modal: 2000;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    /* More modern heading font */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-secondary);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

/* Utilities */
.mobile-only {
    display: none !important;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 24px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    /* Pill shape for modern feel */
    cursor: pointer;
    border: 1px solid var(--accent-color);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    /* Subtle shadow */
    text-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
    /* Text depth */
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #d0d5dd;
    /* Slate-300 */
    color: #344054;
    /* Slate-700 */
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.btn-outline:hover {
    border-color: #d0d5dd;
    color: #101828;
    background: #f9fafb;
}

.btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: white;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);

    cursor: pointer;
    border: 1px solid var(--accent-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.btn2:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(37, 99, 235, 0.2);
}

.btn2-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-color);
    box-shadow: none;
}

.btn2-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: var(--accent-light);
}



.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-enter {
    animation: fadeInUp 0.6s ease forwards;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
}

form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235f6368' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px var(--accent-light);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    /* Slightly taller for presence */
    background: #ffffff;
    /* Solid corporate white, less "glassy" gadgety check */
    border-bottom: 1px solid #eaecf0;
    /* Subtle border */
    z-index: var(--z-header);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    height: 72px;
    /* Compact on scroll */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.header-container {
    height: 100%;
}

.header-spacer {
    display: none;
    height: 90px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

@media (max-width: 992px) {
    .nav-actions {
        display: none !important;
    }

    /* --- Mobile Header Height --- */
    header {
        height: 58px;
    }

    header.scrolled {
        height: 52px;
    }

    .header-spacer {
        height: 58px;
    }

    /* --- Mobile Logo Size --- */
    .logo {
        font-size: 1.6rem;
    }

    /* --- Mobile Hero --- */
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: -0.01em;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }

    /* Hero capsule/badge smaller */
    .hero-content .badge,
    .hero-content .badge-progress {
        font-size: 0.65rem;
        padding: 3px 10px;
        margin-bottom: 16px;
    }

    /* Hero sub-paragraph smaller */
    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
        line-height: 1.6 !important;
    }

    /* Hero button row */
    .hero-content>div[style*="gap: 16px"] {
        margin-bottom: 24px !important;
    }

    /* Trust pills smaller on mobile */
    .trust-pill {
        padding: 9px 16px !important;
        gap: 8px !important;
    }

    .trust-pill-score {
        font-size: 0.8rem !important;
    }

    .trust-pill-stars {
        font-size: 0.75rem !important;
    }
}


.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.03em;
    z-index: 1001;
}

/* Main Navigation */
.nav-links {
    display: flex;
    gap: 40px;
    /* More breathing room */
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
    padding: 28px 0;
    /* Full height hit area */
}

.nav-links>li>a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475467;
    /* Slate-600 for softer text */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.nav-links>li>a:hover {
    color: var(--accent-color);
}

.nav-links>li>a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-links .fa-chevron-down {
    font-size: 0.7rem;
    color: #98a2b3;
    /* Lighter chevron */
    transition: transform 0.3s ease;
}

.nav-links>li:hover .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--accent-color);
}

/* Mega Menu Dropdown Standard */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 680px;
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-out;
    z-index: 1100;
    padding: 32px;
    margin-top: 0;
}

.nav-links>li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mega-column h3 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #98a2b3;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.mega-column a {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    color: #101828 !important;
    transition: background 0.2s ease;
    margin-bottom: 4px;
    text-decoration: none;
    border: 1px solid transparent;
}

.mega-column a:hover {
    background: #f9fafb;
}

.mega-column a .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 8px;
    color: #475467;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mega-column a:hover .menu-icon {
    background: #eff6ff;
    color: var(--accent-color);
}

.mega-column a svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.6;
}

.mega-column a strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.mega-column a span {
    display: block;
    font-size: 0.875rem;
    color: #667085;
    line-height: 1.4;
}

/* ============================================================
   INDUSTRIAL MEGA MENU (Enterprise 3-Pane Tabbed Architecture)
   ============================================================ */
.dropdown-industrial {
    position: static !important;
}

.mega-menu.stx-industrial-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 1080px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    box-shadow: 0 20px 45px -8px rgba(16, 24, 40, 0.1), 0 4px 12px -2px rgba(16, 24, 40, 0.03);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease-out, transform 0.22s ease-out, visibility 0.22s ease-out;
    z-index: 1200;
    overflow: hidden;
}

.nav-links > li:hover .mega-menu.stx-industrial-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.stx-mega-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr 270px;
    min-height: 480px;
}

/* Premium Dropdown Panel for Resources / Company */
.stx-dropdown-panel {
    width: 360px !important;
    padding: 16px 18px 14px 18px !important;
    background: #ffffff !important;
    border: 1px solid #eaecf0 !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px -8px rgba(16, 24, 40, 0.1), 0 4px 12px -2px rgba(16, 24, 40, 0.03) !important;
}

.stx-dropdown-panel--2col {
    width: 620px !important;
    max-width: calc(100vw - 32px) !important;
}

.stx-dropdown-2col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stx-dropdown-col {
    display: flex;
    flex-direction: column;
}

.stx-dropdown-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 10px;
    padding-left: 6px;
}

.stx-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stx-dropdown-item {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    background: #ffffff;
    transition: all 0.18s ease;
}

.stx-dropdown-item:hover {
    background: #f8fafc;
    border-color: #f1f5f9;
    transform: translateY(-1px);
}

.stx-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.18s ease;
}

.stx-dropdown-icon svg {
    width: 20px;
    height: 20px;
}

.stx-dropdown-item:hover .stx-dropdown-icon {
    color: var(--accent-hover);
    transform: scale(1.1);
}

.stx-dropdown-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.stx-dropdown-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stx-dropdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

.stx-dropdown-item:hover .stx-dropdown-title {
    color: var(--accent-color);
}

.stx-dropdown-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

.stx-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 9px 12px;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #64748b;
}

.stx-dropdown-footer a {
    color: var(--accent-color) !important;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.18s ease;
}

.stx-dropdown-footer a:hover {
    color: var(--accent-hover) !important;
    text-decoration: underline;
}

/* 1. LEFT COLUMN: CATEGORIES / DIRECTIONS */
.stx-mega-sidebar {
    background: #f8fafc;
    border-right: 1px solid #eaecf0;
    padding: 22px 14px 22px 18px;
    display: flex;
    flex-direction: column;
}

.stx-mega-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 12px;
    padding-left: 10px;
}

.stx-mega-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stx-mega-tab-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s ease;
    font-family: inherit;
    outline: none;
}

.stx-mega-tab-btn:hover {
    background: #ffffff;
    border-color: #e2e8f0;
}

.stx-mega-tab-btn.active {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
}

.stx-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #64748b;
    flex-shrink: 0;
    transition: color 0.18s ease, transform 0.18s ease;
}

.stx-tab-icon svg {
    width: 20px;
    height: 20px;
}

.stx-mega-tab-btn:hover .stx-tab-icon {
    color: var(--accent-color);
}

.stx-mega-tab-btn.active .stx-tab-icon {
    color: var(--accent-color);
    transform: scale(1.08);
}

.stx-tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.stx-tab-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.25;
}

.stx-tab-sub {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stx-mega-tab-btn.active .stx-tab-title {
    color: var(--accent-color);
}

/* Pointer Caret for Active Tab */
.stx-tab-caret {
    display: none;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #cbd5e1;
    z-index: 10;
}

.stx-mega-tab-btn.active .stx-tab-caret {
    display: block;
}

/* 2. MIDDLE COLUMN: SOLUTIONS CONTENT PANE */
.stx-mega-main {
    padding: 22px 26px 18px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.stx-tab-panel {
    display: none;
}

.stx-tab-panel.active {
    display: block;
    animation: stxTabFade 0.2s ease forwards;
}

@keyframes stxTabFade {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.stx-mega-panel-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 14px;
}

.stx-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
}

.stx-mega-card {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    background: #ffffff;
    transition: all 0.18s ease;
}

.stx-mega-card:hover {
    background: #f8fafc;
    border-color: #f1f5f9;
    transform: translateY(-1px);
}

.stx-mega-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.18s ease;
}

.stx-mega-card-icon svg {
    width: 20px;
    height: 20px;
}

.stx-mega-card:hover .stx-mega-card-icon {
    color: var(--accent-hover);
    transform: scale(1.1);
}

.stx-mega-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.stx-mega-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.stx-mega-card:hover .stx-mega-card-title {
    color: var(--accent-color);
}

.stx-mega-card-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
}

/* Micro Minimalist Badge Pills */
.stx-pill {
    display: inline-flex;
    align-items: center;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    background: #eff6ff;
    color: #2563eb;
    text-transform: capitalize;
}

/* Middle Pane Bottom Footer */
.stx-mega-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    border-radius: 10px;
}

.stx-mega-footer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stx-mega-footer-info strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
}

.stx-mega-footer-info span {
    font-size: 0.75rem;
    color: #64748b;
}

.stx-mega-sales-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a !important;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.18s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.stx-mega-sales-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* 3. RIGHT COLUMN: SPOTLIGHT CARD */
.stx-mega-spotlight {
    background: #ffffff;
    border-left: 1px solid #eaecf0;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
}

.stx-spotlight-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stx-spotlight-media {
    position: relative;
    height: 110px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stx-spotlight-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    color: #ffffff;
}

.stx-spotlight-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    padding-left: 2px;
    transition: transform 0.2s ease;
}

.stx-spotlight-card:hover .stx-spotlight-play {
    transform: scale(1.1);
}

.stx-spotlight-body {
    padding: 14px 14px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}

.stx-spotlight-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
}

.stx-spotlight-desc {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.35;
    margin: 0 0 4px 0;
}

.stx-spotlight-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stx-spotlight-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.72rem;
    color: #475467;
    line-height: 1.3;
}

.stx-spotlight-checklist svg {
    width: 14px;
    height: 14px;
    color: #059669;
    flex-shrink: 0;
    margin-top: 1px;
}

.stx-spotlight-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-color) !important;
    text-decoration: none;
    transition: gap 0.18s ease;
}

.stx-spotlight-link:hover {
    gap: 9px;
    color: var(--accent-hover) !important;
}

/* Mobile Nav Specifics */
.mobile-only-nav {
    display: none;
    margin-top: 24px;
    width: 100%;
    padding-top: 24px !important;
    border-top: 1px solid #eaecf0;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mobile-auth-buttons .btn {
    width: 100%;
    justify-content: center;
}

.nav-link-login-mobile {
    font-weight: 600;
    color: #475467;
    text-align: center;
    padding: 8px 0;
}

.nav-link-logout-mobile {
    color: #ef4444;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
}

/* Nav Actions (Right Side) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-login {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.nav-link-login:hover {
    color: var(--accent-color);
}

.nav-link-logout {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.nav-link-logout:hover {
    background: #f1f5f9;
    color: #ef4444;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    /* Slightly wider */
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-right: 4px;
    /* Safety margin */
    overflow: visible;
    /* Ensure content isn't clipped */
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    /* Rotate around center */
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 20px 40px;
        /* Adjusted padding */
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: none;
        /* Full screen doesn't need shadow */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links>li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f2f4f7;
    }

    .nav-links>li:first-child {
        border-top: 1px solid #f2f4f7;
    }

    .nav-links>li>a {
        padding: 20px 4px;
        /* Larger tap target */
        font-size: 1.1rem;
        font-weight: 600;
        color: #101828;
        justify-content: space-between;
        width: 100%;
    }

    .nav-links>li>a:hover {
        background: #f9fafb;
        color: var(--accent-color);
        padding-left: 12px;
        /* Slide effect */
    }

    /* Disable Desktop Hover on Mobile */
    .nav-links>li:hover .mega-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    /* Mobile Dropdown Logic */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        background: #eff6ff;
        /* Light blue accent background */
        padding: 0;
        border-radius: 12px;
        display: none;
        opacity: 1;
        visibility: visible;
        margin: 0 0 16px 0;
        overflow: hidden;
    }

    .mega-menu.mobile-active {
        display: block !important;
        animation: fadeIn 0.3s ease;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 8px;
    }

    .mega-column h3 {
        padding: 12px 12px 4px;
        margin: 0;
        font-size: 0.75rem;
        color: var(--accent-color);
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    .mega-column a {
        padding: 12px;
        border-radius: 8px;
        background: transparent !important;
        border: none !important;
        margin-bottom: 2px;
    }

    .mega-column a:hover {
        background: rgba(255, 255, 255, 0.6) !important;
    }

    .mega-column a i {
        background: #ffffff;
        /* White icon bg on blue menu */
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .mega-column a strong {
        font-size: 0.95rem;
    }

    .mega-column a span {
        font-size: 0.8rem;
    }

    .mega-column a:not(:last-child) {
        border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    }

    .nav-actions {
        display: none;
        /* Hide default actions in header */
    }

    .mobile-only-nav {
        display: block;
        /* Show on mobile */
    }


    /* Inject actions into mobile menu via JS or duplicate in PHP if needed, 
       but for now to handle layout shifts. */

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 993px) {
    .nav-links {
        height: auto;
        background: transparent;
    }
}

/* Dashboard Layout */
.dashboard-container {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 100vh;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

.sidebar-menu li {
    margin-bottom: 8px;
    list-style: none;
    /* Global removal */
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--accent-light);
    color: var(--accent-color);
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending {
    background: #fff7ed;
    color: #c2410c;
}

.badge-paid {
    background: #ecfdf5;
    color: #047857;
}

.badge-progress {
    background: #eff6ff;
    color: #1d4ed8;
}

/* Progress Bar */
.progress-track {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* --- HOMEPAGE SPECIFIC STYLES --- */

/* Sections */
.section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: #ffffff;
}

.section-small {
    padding: 60px 0;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    /* Prevent horizontal scroll from shapes */
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Ensure on top of shapes/glows */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-light);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 1;
    filter: grayscale(0%);
    transition: all 0.3s;
}

.trust-bar:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo {
    height: 1px;
    width: auto;
    object-fit: contain;
}

/* Services */
.service-card {
    background: #ffffff;
    padding: 5px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Portfolio */
.portfolio-item {
    margin-bottom: 80px;
}

.browser-frame {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-header {
    background: #f1f5f9;
    padding: 12px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Process Timeline (Responsive) */
.process-step {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--glass-border);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Animation base */
.process-step {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* initial states */
.process-step.top {
    transform: translateY(-60px);
    opacity: 0;
}

.process-step.bottom {
    transform: translateY(60px);
    opacity: 0;
}

/* visible */
.process-step.show {
    transform: translateY(0);
    opacity: 1;
}

/* hover */
.process-step:hover {
    transform: translateY(-8px);
}

/* =============================== */
/* WHY SECTION                     */
/* =============================== */

/* Why Choose Us Section */
.stx-why-section {
    background: #fff;
    padding: 64px 0;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(34, 34, 34, 0.08);
    max-width: 900px;
    margin: 48px auto;
}

.stx-why-container {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.stx-why-left {
    flex: 2;
}

.stx-why-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stx-why-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
}

.stx-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.stx-why-icon {
    font-size: 1.8rem;
    color: var(--stx-primary);
    background: #f7f9fa;
    border-radius: 8px;
    padding: 10px;
    min-width: 44px;
    text-align: center;
}

.stx-why-list strong {
    font-weight: 600;
    color: var(--stx-title);
}

.stx-why-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stx-why-stat {
    background: #f7f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34, 34, 34, 0.04);
    padding: 24px 18px;
    text-align: center;
}

.stx-why-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--stx-primary);
    display: block;
    margin-bottom: 6px;
}

.stx-why-stat-label {
    font-size: 1rem;
    color: var(--stx-subtitle);
}

@media (max-width: 900px) {
    .stx-stats-modern {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding: 12px 0 !important;
    }

    .stx-stat-item {
        width: 100% !important;
        margin: 0 auto 8px auto !important;
        display: flex;
        justify-content: center;
    }

    .stx-stat-circle {
        width: 90px !important;
        height: 90px !important;
        margin: 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .circular-chart {
        width: 90px !important;
        height: 90px !important;
        margin-bottom: 6px !important;
    }

    .stx-stat-content h2 {
        font-size: 1.1rem !important;
    }

    .stx-stat-content span {
        font-size: 0.9rem !important;
    }

    .stx-stat-divider {
        display: none !important;
    }
}

.stx-why-container {
    flex-direction: column;
    gap: 32px;
}

.stx-why-section {
    padding: 32px 0;
}

:root {
    --stx-dark: #f5f7fa;
    --stx-card-bg: #ffffff;
    --stx-primary: #1a73e8;
    --stx-accent: #212121;
    --stx-border: #e3e6ea;
    --stx-shadow: 0 4px 24px rgba(34, 34, 34, 0.08);
    --stx-title: #212121;
    --stx-subtitle: #5f6368;
    --stx-stat: #1a73e8;
    --stx-hero-bg: #f5f7fa;
    --stx-section-bg: #f7f9fa;
    --stx-btn-primary: #1a73e8;
    --stx-btn-primary-hover: #1761c0;
    --stx-btn-secondary: #fff;
    --stx-btn-secondary-border: #1a73e8;
    --stx-btn-secondary-hover: #f5f7fa;
}

/* Modern Creative Section */
:root {
    --stx-bg-dark: #0f172a;
    --stx-card-glass: rgba(255, 255, 255, 0.03);
    --stx-card-border: rgba(255, 255, 255, 0.05);
    --stx-text-main: #f8fafc;
    --stx-text-muted: #94a3b8;
    --stx-primary-glow: #3b82f6;
    --stx-accent-glow: #8b5cf6;
    --stx-gradient-text: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
}

.stx-creative-section {
    background-color: var(--stx-bg-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--stx-text-main);
    isolation: isolate;
}

/* Animated Background Blobs */
.stx-blob-bg,
.stx-blob-bg-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: blob-bounce 10s infinite ease-in-out alternate;
}

.stx-blob-bg {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--stx-primary-glow);
}

.stx-blob-bg-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--stx-accent-glow);
    animation-delay: -5s;
}

@keyframes blob-bounce {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 40px) scale(1.1);
    }
}

.stx-container-creative {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header */
.stx-head-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.stx-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stx-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stx-subtitle {
    font-size: 1.25rem;
    color: var(--stx-text-muted);
    line-height: 1.6;
}

/* Grid */
.stx-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

/* Glass Cards */
.stx-glass-card {
    background: var(--stx-card-glass);
    border: 1px solid var(--stx-card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stx-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.stx-glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.stx-glass-card:hover::before {
    opacity: 1;
}

.stx-glass-card.active-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stx-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #60a5fa;
    margin-bottom: 32px;
    transition: transform 0.3s ease;
}

.stx-glass-card:hover .stx-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--stx-gradient-text);
    color: white;
}

.stx-glass-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.stx-glass-card p {
    color: var(--stx-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.stx-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #60a5fa;
    text-decoration: none;
    transition: gap 0.3s;
}

.stx-card-link:hover {
    gap: 12px;
    color: #93c5fd;
}

/* Stats Section */
.stx-stats-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--stx-card-border);
    border-radius: 20px;
    padding: 40px 60px;
    backdrop-filter: blur(12px);
    max-width: 1000px;
    margin: 0 auto;
}

.stx-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stx-stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.stx-stat-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke: url(#gradient);
    stroke: #60a5fa;
    stroke-width: 2.5;
    stroke-linecap: round;
    /* stroke-dasharray set in HTML or JS for animation */
}

.stx-stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stx-stat-content .stx-counter {
    font-size: 1.4rem;
    margin: 0;
    color: white;
    line-height: 1.2;
}

.stx-stat-content span {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--stx-text-muted);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.stx-stat-text-layout {
    text-align: left;
}

.stx-stat-text-layout .stx-counter {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: var(--stx-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stx-stat-text-layout span {
    display: block;
    font-size: 0.875rem;
    color: var(--stx-text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.stx-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Responsive */
@media (max-width: 900px) {
    .stx-title {
        font-size: 2.5rem;
    }

    .stx-stats-modern {
        flex-direction: column;
        gap: 32px;
        padding: 40px 24px;
        align-items: center;
        text-align: center;
    }

    .stx-stat-item {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 16px;
    }

    .stx-stat-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
        margin: 8px 0;
    }

    .stx-stat-text-layout {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .stx-stat-text-layout .stx-counter {
        font-size: 2.2rem;
    }

    .stx-stat-text-layout span {
        font-size: 0.95rem;
    }

    /* Mobile Circle Fix */
    .stx-stat-circle {
        width: 160px;
        height: 160px;
    }

    .stx-stat-content .stx-counter {
        font-size: 1.25rem;
    }

    .stx-stat-content span {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }
}

/* Desktop: Hide Linear Bar */
.stx-stat-linear {
    display: none;
}

/* Mobile: Switch to Linear Progress Bar */
@media (max-width: 900px) {
    .stx-stat-circle {
        display: none;
    }

    .stx-stat-linear {
        display: block;
        width: 100%;
        max-width: 280px;
        margin-bottom: 8px;
    }

    .stx-linear-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 12px;
    }

    .stx-linear-header .stx-counter {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
        background: var(--stx-gradient-text);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .stx-linear-header span {
        font-size: 0.9rem;
        color: var(--stx-text-muted);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding-bottom: 4px;
    }

    .stx-progress-bar {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .stx-progress-fill {
        height: 100%;
        background: var(--stx-gradient-text);
        border-radius: 10px;
    }
}

/* Tech Stack */
.tech-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

@media (max-width: 768px) {

    .tech-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 16px;
        /* reduced gap */
        padding: 0 15px 5px 15px;
        /* side padding for breathing space */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        /* Hide Scrollbar */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .tech-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .tech-item {
        flex: 0 0 auto;
        min-width: 85px;
        /* reduce item width */
        padding: 12px 14px;
        /* compact spacing */
        scroll-snap-align: start;
    }
}

/* Tech Item */
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Icon */
.tech-icon {
    font-size: 2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Professional Hover Effect */
.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-item:hover .tech-icon {
    opacity: 1;
    color: var(--accent-color);
    transform: scale(1.15);
}

/* Mobile Tap Effect */
.tech-item:active {
    transform: scale(0.95);
}

.tech-icon {
    width: 40px;
    /* fixed size for brand logos */
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Professional Hover Effect */
.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tech-item:hover .tech-icon {
    opacity: 1;
    transform: scale(1.2);
    /* subtle zoom on logo */
}


/* Testimonials */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Adjustments */
@media (max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        overflow: hidden;
        /* Fix horizontal scroll caused by bg shapes */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center align all flex children (like buttons) */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Mobile Scrolling Trust Bar */
    .trust-bar {
        display: flex;
        gap: 40px;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .trust-bar::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .section {
        padding: 60px 0;
    }

    /* Mobile Dashboard Layout */
    .dashboard-container {
        padding: calc(var(--header-height) + 10px) 20px 40px 20px;
        /* Top, Right, Bottom, Left */
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Transform Sidebar to Horizontal Scroll */
    .sidebar {
        position: sticky;
        top: calc(var(--header-height) + 10px);
        width: 100vw;
        margin-left: -24px;
        padding: 0 24px;
        z-index: 99;
        margin-bottom: 20px;
        /* Allow sidebar to hold multiple items */
        background: transparent;
    }

    /* Make the nav box specifically the scrollable part */
    .sidebar-nav-box {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-radius: var(--radius-sm);
        margin-top: 10px;
        /* Space between profile and menu */
    }

    .sidebar-nav-box::-webkit-scrollbar {
        display: none;
    }

    /* Specifics for Profile Box on mobile */
    .sidebar-profile-box {
        padding: 20px !important;
        margin-bottom: 0 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%) !important;
        border: 1px solid rgba(37, 99, 235, 0.1) !important;
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.05) !important;
    }

    /* Ensure avatar in profile box contrasts well on mobile gradient */
    .sidebar-profile-box div:first-child {
        background: var(--accent-color) !important;
        color: white !important;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    }

    /* Menu Items */
    .sidebar-menu {
        display: flex;
        gap: 15px;
        margin-bottom: 0 !important;
        list-style: none !important;
        padding: 0;
        margin: 0;
    }

    .sidebar-menu li {
        margin-bottom: 0;
    }

    .sidebar-menu a {
        padding: 8px 12px;
        font-size: 0.85rem;
        border: 1px solid var(--glass-border);
        background: white;
    }

    .sidebar-menu a.active {
        background: var(--accent-color);
        color: white;
        border-color: var(--accent-color);
    }

    /* Hide Header/Footer elements in sidebar on mobile to save space */
    .sidebar .btn {
        display: none;
    }

    /* Ensure profile text is visible */
    .sidebar-profile-box h3,
    .sidebar-profile-box p {
        display: block !important;
    }

    /* Hide Header/Footer elements in sidebar on mobile to save space */
    .sidebar .btn {
        display: none;
    }

    /* Mobile Buttons Adjustments */
    .btn {
        padding: 10px 16px;
        /* Smaller padding */
        font-size: 0.8rem;
        /* Smaller font */
        white-space: nowrap;
        /* Prevent wrapping */
        width: auto;
        /* Allow natural width */
    }

    /* Responsive Utilities Mobile Overrides */
    .responsive-grid-2,
    .responsive-grid-3,
    .responsive-grid-4,
    .responsive-split-2-1,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }

    .responsive-flex {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Responsive Utilities (Desktop Defaults) */


.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.responsive-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.responsive-split-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.responsive-flex {
    display: flex;
    gap: 24px;
}

/* Responsive Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Order Card Specifics */
.order-card-flex {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.text-right-responsive {
    text-align: right;
    min-width: 150px;
}

.order-info-block {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .order-card-flex {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .text-right-responsive {
        text-align: left;
        /* Reset to left on mobile */
        margin-top: 10px;
        min-width: 100%;
    }

    .order-info-block {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .portfolio-responsive {
        flex-direction: column !important;
        gap: 25px !important;
    }
}

/* ===== Portfolio Slide-In Animation ===== */
.portfolio-item {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Left slide */
.portfolio-item.slide-left {
    transform: translateX(-60px);
}

/* Right slide */
.portfolio-item.slide-right {
    transform: translateX(60px);
}

/* Show state */
.portfolio-item.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Image hover zoom */
.browser-frame img {
    transition: transform 0.5s ease;
}

.portfolio-item:hover .browser-frame img {
    transform: scale(1.05);
}

.project-head3r {
    color: var(--text-secondary);
    font-size: 18px;
    /* Desktop size */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .project-head3r {
        font-size: 15px;
        /* Mobile size */
    }
}

/*engagement models*/
.stx3-section {
    padding: 30px 0;
    background: #f8fafc;
}

.stx3-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stx3-header {
    margin-bottom: 80px;
}

.stx3-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.stx3-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stx3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stx3-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stx3-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stx3-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Positioning Steps along the wave (SVG: 100, 300, 100) */
.stx3-wavy-step.step-1 {
    top: 20%;
    /* Near y=100 */
    left: 0;
}

.stx3-wavy-step.step-2 {
    top: 60%;
    /* Near y=300 */
    left: 40%;
}

.stx3-wavy-step.step-3 {
    top: 20%;
    /* Near y=100 */
    right: 0;
}

.stx3-wavy-dot {
    width: 24px;
    height: 24px;
    background: #e2e8f0;
    /* Gray dot default */
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px white;
    /* Gap effect */
    border: 2px solid white;
}

.stx3-content {
    position: relative;
    z-index: 2;
}

.stx3-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
}

.stx3-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.stx3-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.stx3-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.stx3-link:hover {
    gap: 12px;
}

/* Active Card Styles */
.stx3-card.stx3-active {
    border-top-color: white;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), white);
}

.stx3-card.stx3-active .stx3-icon {
    background: var(--accent-color);
}

.stx3-card.stx3-active .stx3-link {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .stx3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .stx3-grid {
        grid-template-columns: 1fr;
    }

    .stx3-title {
        font-size: 2rem;
    }

    .stx3-card {
        padding: 30px;
    }

    .stx3-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stx3-number {
        font-size: 2.5rem;
    }
}

/* testimonial */
/* --- Global Premium Tokens --- */
:root {
    --stx3-primary: #2563EB;
    --stx3-dark: #1A1A1A;
    --stx3-deep: #001122;
    --stx3-white: #FFFFFF;
    --stx3-text-main: var(--stx3-dark);
    --stx3-text-muted: #64748b;
    --stx3-card-bg: #ffffff;
    --stx3-card-border: #e2e8f0;
    --stx3-card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--stx3-text-main);
    background-color: var(--stx3-white);
    line-height: 1.6;
}

/* --- Professional Testimonials (stx3-tm-) --- */
.stx3-tm-section {
    padding: 20px 0;
    background-color: #f8fafc;
    overflow: hidden;
    width: 100%;
}

.stx3-tm-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 50px;
}

.stx3-tm-header {
    text-align: center;
    margin-bottom: 60px;
}

.stx3-tm-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #eff6ff;
    color: var(--stx3-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.stx3-tm-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--stx3-deep);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stx3-tm-subtitle {
    font-size: 1.1rem;
    color: var(--stx3-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.stx3-tm-slider-wrapper {
    position: relative;
    padding: 20px 0 40px;
}

.stx3-tm-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 20px 5px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stx3-tm-slider::-webkit-scrollbar {
    display: none;
}

.stx3-tm-card {
    flex: 0 0 550px;
    scroll-snap-align: center;
    background: var(--stx3-white);
    border: 1px solid var(--stx3-card-border);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: var(--stx3-card-shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    min-height: 250px;
}

.stx3-tm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

.stx3-tm-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.stx3-tm-text {
    font-size: 1.1rem;
    color: var(--stx3-text-main);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.stx3-tm-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.stx3-tm-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
}

.stx3-tm-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--stx3-deep);
}

.stx3-tm-role {
    font-size: 0.85rem;
    color: var(--stx3-text-muted);
}

/* --- Professional FAQ (stx3-faq-) --- */
.stx3-faq-section {
    padding: 100px 0;
    background-color: var(--stx3-white);
}

.stx3-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.stx3-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stx3-faq-item {
    background: var(--stx3-white);
    border: 1px solid var(--stx3-card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stx3-faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
}

.stx3-faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.stx3-faq-question span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--stx3-deep);
}

.stx3-faq-icon {
    font-size: 0.9rem;
    color: var(--stx3-text-muted);
    transition: transform 0.4s ease;
}

.stx3-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #f8fafc;
}

.stx3-faq-answer p {
    padding: 0 30px 24px;
    color: var(--stx3-text-muted);
    line-height: 1.7;
}

.stx3-faq-item.stx3-faq-active {
    border-color: var(--stx3-primary);
}

.stx3-faq-item.stx3-faq-active .stx3-faq-icon {
    transform: rotate(45deg);
    color: var(--stx3-primary);
}

.stx3-faq-item.stx3-faq-active .stx3-faq-answer {
    max-height: 500px;
}

/* --- Responsive --- */
/* --- Responsive --- */
@media (max-width: 1024px) {
    .stx3-tm-container {
        padding: 0 30px;
    }

    .stx3-tm-card {
        flex: 0 0 480px;
        padding: 25px 35px;
    }

    .stx3-tm-title,
    .stx3-faq-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {

    .stx3-tm-section,
    .stx3-faq-section {
        padding: 80px 0;
    }

    .stx3-tm-container {
        padding: 0 15px;
    }

    .stx3-tm-slider {
        gap: 15px;
        padding-bottom: 30px;
    }

    .stx3-tm-card {
        flex: 0 0 100%;
        padding: 20px 25px;
        min-height: auto;
    }

    .stx3-tm-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .stx3-tm-title,
    .stx3-faq-title {
        font-size: 1.8rem;
    }

    .stx3-faq-question {
        padding: 18px 20px;
    }

    .stx3-faq-question span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    .stx3-tm-section,
    .stx3-faq-section {
        padding: 60px 0;
    }

    .stx3-tm-card {
        padding: 18px;
    }

    .stx3-tm-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .stx3-tm-avatar {
        width: 40px;
        height: 40px;
    }

    .stx3-tm-name {
        font-size: 0.85rem;
    }

    .stx3-tm-role {
        font-size: 0.75rem;
    }
}

/* --- Professional Footer (stx3-ft-) --- */
.stx3-ft-footer {
    margin-top: 50px;
    padding: 10px 0 40px;
    background-color: var(--stx3-white);
}

.stx3-ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.stx3-ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 10px;
}

.stx3-ft-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--stx3-deep);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.stx3-ft-logo span {
    font-size: 0.8rem;
    color: var(--stx3-primary);
    text-transform: uppercase;
    vertical-align: top;
    margin-left: 3px;
    font-weight: 600;
}

.stx3-ft-description {
    color: var(--stx3-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.stx3-ft-social {
    display: flex;
    gap: 16px;
}

.stx3-ft-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: #f8fafc;
    color: var(--stx3-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid #f1f5f9;
}

.stx3-ft-social a:hover {
    background-color: var(--stx3-primary);
    color: var(--stx3-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    border-color: var(--stx3-primary);
}

.stx3-ft-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--stx3-deep);
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 12px;
}

.stx3-ft-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--stx3-primary);
    border-radius: 2px;
}

.stx3-ft-links,
.stx3-ft-contact {
    list-style: none;
    padding: 0;
}

.stx3-ft-links li {
    margin-bottom: 16px;
}

.stx3-ft-links a {
    color: var(--stx3-text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.stx3-ft-links a:hover {
    color: var(--stx3-primary);
    transform: translateX(4px);
}

.stx3-ft-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--stx3-text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.stx3-ft-contact i {
    color: var(--stx3-primary);
    font-size: 1.05rem;
    margin-top: 4px;
}

.stx3-ft-bottom {
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--stx3-text-muted);
    font-size: 0.95rem;
}

.stx3-ft-legal {
    display: flex;
    gap: 32px;
}

.stx3-ft-legal a {
    color: var(--stx3-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.stx3-ft-legal a:hover {
    color: var(--stx3-primary);
}

/* --- Mobile Specific Optimization --- */
@media (max-width: 1024px) {
    .stx3-ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .stx3-ft-footer {
        padding: 0px 0 40px;
    }

    .stx3-ft-container {
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    .stx3-ft-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .stx3-ft-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .stx3-ft-social {
        justify-content: center;
    }

    .stx3-ft-contact li {
        justify-content: center;
        text-align: center;
    }

    .stx3-ft-bottom {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
        padding-top: 50px;
    }

    .stx3-ft-legal {
        justify-content: center;
        width: 100%;
        gap: 20px;
        flex-wrap: wrap;
    }


    /* ==========================================================================
   MOBILE MENU OVERRIDES (CRITICAL FIXES)
   ========================================================================== */

    /* 1. Mobile Menu Toggle - Fixed Dimensions & Animation */
    .mobile-menu-btn {
        width: 44px !important;
        /* Larger touch target */
        height: 44px !important;
        padding: 10px !important;
        display: flex !important;
        /* Force display on mobile triggers */
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        background: transparent !important;
        border: none !important;
        z-index: 2000 !important;
        margin-right: 6px;
    }

    /* Hide on desktop */
    @media (min-width: 993px) {
        .mobile-menu-btn {
            display: none !important;
        }
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--text-color);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
        transform-origin: center;
        margin: 0 auto;
        /* Center spans */
    }

    /* Active State (X Icon) */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* 2. Mobile Nav Links Overlay */
    @media (max-width: 992px) {
        .nav-links {
            display: block !important;
            /* Override flex */
            position: fixed !important;
            top: 0 !important;
            right: 0 !important;
            width: 100% !important;
            /* Full width */
            max-width: 100% !important;
            height: 100vh !important;
            background: #ffffff !important;
            padding: 90px 24px 40px !important;
            overflow-y: auto !important;
            transition: transform 0.3s ease-in-out !important;
            transform: translateX(100%);
            z-index: 1000 !important;
            box-shadow: none !important;
        }

        .nav-links.active {
            transform: translateX(0);
            right: 0 !important;
        }

        /* Reset list styles */
        .nav-links>li {
            display: block !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            border-bottom: 1px solid #f2f4f7;
        }

        .nav-links>li>a {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 20px 0 !important;
            font-size: 1.1rem !important;
            font-weight: 600 !important;
            color: #101828 !important;
            width: 100% !important;
        }

        .nav-links .fa-chevron-down {
            transition: transform 0.3s ease;
        }

        /* 3. Mobile Mega Menu */
        .mega-menu {
            position: static !important;
            width: 100% !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            box-shadow: none !important;
            background: #eff6ff !important;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            /* JS toggles this */
            padding: 10px !important;
        }

        .mega-menu.mobile-open {
            display: block !important;
        }

        /* Mega Menu Content Layout */
        .mega-menu-content {
            display: flex !important;
            flex-direction: column !important;
            gap: 0 !important;
        }

        .mega-column {
            width: 100% !important;
        }

        .mega-column h3 {
            font-size: 0.75rem !important;
            letter-spacing: 0.05em !important;
            color: var(--accent-color) !important;
            margin: 15px 0 5px 5px !important;
            text-transform: uppercase;
        }

        .mega-column a {
            padding: 12px !important;
            background: transparent !important;
            border-radius: 8px !important;
            margin-bottom: 2px !important;
        }

        .mega-column a:hover {
            background: rgba(255, 255, 255, 0.5) !important;
        }

        /* Ensure icons in mega menu are sized right */
        .mega-column a i {
            background: #fff !important;
            width: 32px !important;
            height: 32px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 8px !important;
            font-size: 1rem !important;
        }

        /* Industrial Mega Menu on Mobile */
        .mega-menu.stx-industrial-menu {
            background: #ffffff !important;
            border: 1px solid #eaecf0 !important;
            padding: 8px !important;
        }

        .stx-mega-wrapper {
            display: flex !important;
            flex-direction: column !important;
            min-height: auto !important;
        }

        .stx-mega-sidebar {
            background: #f8fafc !important;
            border-right: none !important;
            border-bottom: 1px solid #e2e8f0 !important;
            padding: 10px 8px !important;
            border-radius: 8px;
        }

        .stx-mega-tabs {
            display: flex !important;
            flex-direction: row !important;
            overflow-x: auto !important;
            gap: 6px !important;
            padding-bottom: 4px !important;
            -webkit-overflow-scrolling: touch;
        }

        .stx-mega-tab-btn {
            flex-shrink: 0 !important;
            width: auto !important;
            padding: 6px 10px !important;
            gap: 6px !important;
            border-radius: 6px !important;
        }

        .stx-tab-icon {
            width: 28px !important;
            height: 28px !important;
        }

        .stx-tab-icon svg {
            width: 16px !important;
            height: 16px !important;
        }

        .stx-tab-title {
            font-size: 0.78rem !important;
            white-space: nowrap !important;
        }

        .stx-tab-sub, .stx-tab-caret {
            display: none !important;
        }

        .stx-mega-main {
            padding: 12px 4px !important;
        }

        .stx-mega-grid {
            grid-template-columns: 1fr !important;
            gap: 6px !important;
        }

        .stx-mega-card {
            padding: 8px !important;
        }

        .stx-mega-footer-bar {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 10px !important;
            padding: 10px !important;
        }

        .stx-mega-sales-btn {
            width: 100% !important;
            text-align: center !important;
        }

        .stx-mega-spotlight {
            border-left: none !important;
            border-top: 1px solid #eaecf0 !important;
            padding: 12px 4px 4px !important;
        }

        .stx-dropdown-panel,
        .stx-dropdown-panel--2col {
            width: 100% !important;
            max-width: 100% !important;
            padding: 12px !important;
            box-shadow: none !important;
            border: none !important;
            background: #eff6ff !important;
        }

        .stx-dropdown-2col-grid {
            grid-template-columns: 1fr !important;
            gap: 10px !important;
        }
    }
}

/* ==========================================================================
   DEVELOPER PAGE REDESIGN (CORPORATE)
   ========================================================================== */

/* --- Dev Hero Section --- */
.stx3-dev-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.stx3-dev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.stx3-dev-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stx3-dev-title span {
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
}

/* --- Browser Frame (Real Image) --- */
.stx3-browser-frame {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.stx3-browser-frame:hover {
    transform: translateY(-5px);
}

.browser-header {
    background: #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #cbd5e1;
    border-radius: 12px 12px 0 0;
    /* Match container radius */
}

/* Image Container utilities */
.browser-image-container {
    position: relative;
    line-height: 0;
}

.code-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.95);
    color: #10b981;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    z-index: 10;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.browser-bar {
    background: white;
    flex-grow: 1;
    height: 20px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.browser-content {
    background: white;
    padding: 24px;
    min-height: 300px;
    position: relative;
}

/* --- Tech Stack Ticker --- */
.stx3-tech-stack {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.stx3-tech-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Marquee wrapper with edge fade */
.stx3-tech-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Scrolling track */
.stx3-tech-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: techMarquee 25s linear infinite;
}

.stx3-tech-track:hover {
    animation-play-state: paused;
}

.stx3-tech-item {
    font-size: 1.5rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.stx3-tech-item:hover {
    opacity: 1;
}

.stx3-tech-item i {
    font-size: 1.8rem;
}

@keyframes techMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .stx3-tech-stack {
        padding: 30px 0;
    }

    .stx3-tech-label {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }

    .stx3-tech-track {
        gap: 32px;
        animation-duration: 18s;
    }

    .stx3-tech-item {
        font-size: 1.1rem;
    }

    .stx3-tech-item i {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   PROCESS TIMELINE â€” Scroll-Triggered Animated Section
   ========================================================================== */

.stx3-process-section {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative accent â€” no gradient, just a faint blue wash */
.stx3-process-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Section header */
.stx3-process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.stx3-process-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    border: 1px solid #dbeafe;
    margin-bottom: 20px;
}

.stx3-process-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #0f172a;
}

.stx3-process-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline container */
.stx3-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vertical line â€” solid, subtle */
.stx3-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

/* Timeline line "drawing" animation â€” clean solid blue */
.stx3-timeline-line-glow {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: #2563eb;
    transform: translateX(-50%);
    transition: height 0.8s ease-out;
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.15);
    z-index: 1;
}

/* Each timeline step */
.stx3-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;

    /* Scroll animation â€” starts hidden */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stx3-timeline-item:last-child {
    margin-bottom: 0;
}

/* Animate in when visible */
.stx3-timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating sides */
.stx3-timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.stx3-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

/* Numbered badge on the timeline â€” solid professional blue */
.stx3-timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 0 5px #eff6ff;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.stx3-timeline-item.active .stx3-timeline-badge {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 0 6px #dbeafe, 0 4px 16px rgba(37, 99, 235, 0.15);
}

/* Card â€” premium structured, no glassmorphism */
.stx3-timeline-card {
    width: 100%;
    padding: 28px 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.stx3-timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.04);
    border-color: #cbd5e1;
}

/* Icon + heading in a row */
.stx3-timeline-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

/* Icon box */
.stx3-timeline-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.stx3-timeline-icon svg {
    width: 22px;
    height: 22px;
}

/* Card heading â€” inline with icon */
.stx3-timeline-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* Card description */
.stx3-timeline-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Large watermark number */
.stx3-timeline-watermark {
    position: absolute;
    top: -8px;
    right: 16px;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* --- CTA at bottom of timeline --- */
.stx3-process-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.stx3-process-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.stx3-process-cta p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.stx3-process-cta .btn {
    background: #2563eb;
    border: none;
    color: white;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.stx3-process-cta .btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .stx3-process-section {
        padding: 10px 0;
    }

    .stx3-process-title {
        font-size: 1.8rem;
    }

    .stx3-process-subtitle {
        font-size: 0.95rem;
    }

    .stx3-process-header {
        margin-bottom: 40px;
    }

    .stx3-timeline {
        padding: 0;
    }

    /* Timeline line â€” slim, left-aligned */
    .stx3-timeline::before {
        left: 16px;
        width: 2px;
        background: #e2e8f0;
    }

    .stx3-timeline-line-glow {
        left: 16px;
        width: 2px;
    }

    /* Small, clean number badges on the left */
    .stx3-timeline-badge {
        left: 16px;
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        font-weight: 700;
        top: 22px;
        box-shadow: 0 0 0 4px #eff6ff;
    }

    .stx3-timeline-item.active .stx3-timeline-badge {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 4px #dbeafe;
    }

    /* Full width stacked cards with left offset for line */
    .stx3-timeline-item,
    .stx3-timeline-item:nth-child(odd),
    .stx3-timeline-item:nth-child(even) {
        flex-direction: row !important;
        padding-left: 48px !important;
        padding-right: 0 !important;
    }

    .stx3-timeline-item {
        margin-bottom: 16px;
    }

    .stx3-timeline-card {
        padding: 22px 20px;
        border-radius: 12px;
    }

    .stx3-timeline-card-header {
        gap: 14px;
    }

    .stx3-timeline-card h3 {
        font-size: 1rem;
    }

    .stx3-timeline-card p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .stx3-timeline-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
    }

    .stx3-timeline-icon svg {
        width: 18px;
        height: 18px;
    }

    .stx3-timeline-watermark {
        display: none;
    }

    .stx3-process-cta {
        margin-top: 50px;
    }

    .stx3-process-cta .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .stx3-process-section {
        padding: 20px 0;
    }

    .stx3-process-title {
        font-size: 1.5rem;
    }

    .stx3-timeline-card {
        padding: 18px 16px;
    }

    .stx3-timeline-item {
        margin-bottom: 12px;
    }
}

/* --- Premium Form Styles --- */
.stx3-form-container {
    max-width: 800px;
    margin: -80px auto 0;
    /* Overlap hero */
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.stx3-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.stx3-input-group {
    margin-bottom: 20px;
}

.stx3-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.stx3-input,
.stx3-select,
.stx3-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.2s;
    background: #fff;
    font-family: inherit;
}

.stx3-input:focus,
.stx3-select:focus,
.stx3-textarea:focus {
    outline: none;
    border-color: var(--stx3-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.stx3-btn-primary {
    background: var(--stx3-primary);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    font-size: 1rem;
}

.stx3-btn-primary:hover {
    background: var(--stx3-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .stx3-dev-title {
        font-size: 2.5rem;
    }

    .stx3-form-container {
        margin-top: -40px;
        padding: 24px;
        border-radius: 16px;
    }

    .stx3-tech-grid {
        gap: 24px;
    }

    .stx3-tech-item {
        font-size: 1.2rem;
    }
}

.stx3-dev-title {
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
    min-height: 2.5em;
    /* Reserves space for two lines on desktop */
}

.line0,
.line1,
.line2 {
    display: block;
    min-height: 1.2em;
    /* Ensures line height is reserved even when empty */
}

.custom-text {
    font-weight: 300;
    color: #d8d6e0ff;
    white-space: nowrap;
    /* prevent breaking inside words */
}

.typing-span::after {
    content: '|';
    animation: stx3-blink 1s infinite;
    margin-left: 2px;
    opacity: 0.8;
}

@keyframes stx3-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Mobile only: fix title line breaks & remove gap */
@media (max-width: 768px) {
    .stx3-dev-title {
        font-size: clamp(2.2rem, 6.5vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 20px;
        min-height: auto;
    }

    .title-word-1 {
        display: inline;
    }

    .line0,
    .line1,
    .line2 {
        display: block;
        min-height: 1.2em;
    }

    .custom-text {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .stx3-dev-title {
        font-size: clamp(1.95rem, 7vw, 2.4rem);
        margin-bottom: 18px;
    }

    .custom-text {
        white-space: nowrap;
    }
}

/* =========================================
   CONTACT PAGE STYLES
========================================= */
.stx3-contact-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.stx3-contact-hero .stx3-dev-title {
    min-height: auto !important;
    margin-bottom: 20px;
}

.stx3-contact-section {
    padding: 5px 0;
    margin-top: 20px;
    margin-top: 20px;
}

.stx3-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.stx3-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .stx3-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .stx3-contact-hero {
        padding: 120px 0 60px;
    }

    .stx3-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stx3-contact-form-container {
        padding: 30px !important;
    }

}

@media (max-width: 480px) {
    .stx3-contact-hero {
        padding: 100px 0 20px !important;
        min-height: auto !important;
        height: auto !important;
    }

    .stx3-contact-section {
        padding: 40px 0 100px;
        margin-top: 100px;
    }

    .stx3-contact-form-container {
        padding: 20px !important;
    }
}

/* --- Admin Table Responsiveness --- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

/* --- Premium Industrial Inputs --- */
.stx3-input {
    width: 100%;
    padding: 16px 20px;
    background-color: #f8fafc;
    /* light slate */
    border: 1px solid #cbd5e1;
    /* slate-300 */
    border-radius: 8px;
    /* Slightly rounded, crisp corners */
    color: #0f172a;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.stx3-input::placeholder {
    color: #94a3b8;
    /* slate-400 */
    font-weight: 400;
}

.stx3-input:hover {
    background-color: #ffffff;
    border-color: #94a3b8;
    /* slate-400 */
}

.stx3-input:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #2563eb;
    /* primary blue */
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

select.stx3-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}/* ============================= */

/* Global Reset & Base Styles */

/* ============================= */



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    margin: 0;

    font-family: 'Inter', sans-serif;

    background-color: #ffffff;

    -webkit-font-smoothing: antialiased;

}



/* ============================= */

/* Section */

/* ============================= */



.staur3x-section {

    padding: 25px 20px 50px 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: auto;

}



/* ============================= */

/* Container */

/* ============================= */



.staur3x-container {

    max-width: 1100px;

    width: 100%;

    margin: 0 auto;

}



/* ============================= */

/* Grid Layout (Desktop) */

/* ============================= */



.staur3x-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;

    align-items: stretch;

}



/* ============================= */

/* Card Base */

/* ============================= */



.staur3x-card {

    border-radius: 24px;

    overflow: hidden;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    gap: 16px;

    height: 100%;

    min-height: 560px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    position: relative;

    color: #1a1a1a;

    will-change: transform;

    backface-visibility: hidden;

}



/* Card Backgrounds */



.staur3x-card--product { background-color: #f2f2f2; }

.staur3x-card--web { background-color: #dbe4ea; }

.staur3x-card--seo { background-color: #8c9ba5; color: #fff; }



/* Emphasized Card */



.staur3x-card--emphasized {

    transform: scale(1.05);

    z-index: 2;

    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);

}



/* ============================= */

/* Hover Effects (Desktop Only) */

/* ============================= */



@media (hover: hover) and (min-width: 900px) {

    .staur3x-card:hover {

        transform: scale(1.05);

        z-index: 10;

        box-shadow: 0 0 40px rgba(0, 89, 255, 0.3);

    }

    .staur3x-card--emphasized:hover {

        transform: scale(1.1);

        box-shadow: 0 0 60px rgba(0, 89, 255, 0.4);

    }

}



/* ============================= */

/* Typography */

/* ============================= */



.staur3x-card-top { margin-bottom: 20px; }



.staur3x-card-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 24px;

}



.staur3x-title {

    font-size: 24px;

    font-weight: 700;

    line-height: 1.1;

    color: inherit;

}



.staur3x-price-label {

    font-size: 14px;

    font-weight: 400;

    text-align: right;

    line-height: 1.2;

    opacity: 0.8;

}



/* ============================= */

/* Image Wrapper */

/* ============================= */



.staur3x-image-wrapper {

    width: 100%;

    border-radius: 16px;

    overflow: hidden;

    margin-bottom: 20px;

    aspect-ratio: 16/9;

    background-color: rgba(0, 0, 0, 0.05);

    display: flex;

    justify-content: center;

    align-items: center;

}



.staur3x-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

/* ============================= */
/* Global Reset & Base Styles */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* ============================= */
/* Section */
/* ============================= */

.staur3x-section {
    padding: 25px 20px 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

/* ============================= */
/* Container */
/* ============================= */

.staur3x-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* ============================= */
/* Grid Layout (Desktop) */
/* ============================= */

.staur3x-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* ============================= */
/* Card Base */
/* ============================= */

.staur3x-card {
    border-radius: 24px;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    height: 100%;
    min-height: 560px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    color: #1a1a1a;
    will-change: transform;
    backface-visibility: hidden;
}

/* Card Backgrounds */

.staur3x-card--product { background-color: #f2f2f2; }
.staur3x-card--web { background-color: #dbe4ea; }
.staur3x-card--seo { background-color: #8c9ba5; color: #fff; }

/* Emphasized Card */

.staur3x-card--emphasized {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* Hover Effects (Desktop Only) */
/* ============================= */

@media (hover: hover) and (min-width: 900px) {
    .staur3x-card:hover {
        transform: scale(1.05);
        z-index: 10;
        box-shadow: 0 0 40px rgba(0, 89, 255, 0.3);
    }
    .staur3x-card--emphasized:hover {
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(0, 89, 255, 0.4);
    }
}

/* ============================= */
/* Typography */
/* ============================= */

.staur3x-card-top { margin-bottom: 20px; }

.staur3x-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.staur3x-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: inherit;
}

.staur3x-price-label {
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    line-height: 1.2;
    opacity: 0.8;
}

/* ============================= */
/* Image Wrapper */
/* ============================= */

.staur3x-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.staur3x-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ============================= */
/* Features */
/* ============================= */

.staur3x-card-body {
    display: flex;
    flex-direction: column;
}

.staur3x-features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 12px;
}

.staur3x-card--seo .staur3x-features-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.staur3x-features-text {
    font-size: 16px;
    font-weight: 700;
}

/* Arrow */

.staur3x-arrow-circle {
    text-decoration: none;
    width: 28px;
    height: 28px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
}

.staur3x-arrow-circle:hover { transform: rotate(45deg); }

.staur3x-card--seo .staur3x-arrow-circle {
    background-color: #fff;
    color: #000;
}

/* ============================= */
/* List */
/* ============================= */

.staur3x-list {
    list-style: none;
    font-size: 14px;
    line-height: 1.5;
}

.staur3x-list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.staur3x-list-item::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 2 Columns */

.staur3x-list--cols {
    display: flex;
    flex-wrap: wrap;
}

.staur3x-list--cols .staur3x-list-item {
    width: 50%;
    padding-right: 4px;
}

.staur3x-list-item--full { width: 100% !important; }

/* ============================= */
/* Responsive */
/* ============================= */

@media (max-width: 900px) {
    .staur3x-card--emphasized {
        transform: none;
        box-shadow: none;
    }
}

@media (max-width: 768px) {

    /* Remove Full Height On Mobile (IMPORTANT FIX) */
    .staur3x-section {
        padding: 20px;
        min-height: auto;
        height: auto;
        align-items: stretch;
    }

    /* Horizontal Scroll Cards */
    .staur3x-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 7.5vw;
        scrollbar-width: none;
    }

    .staur3x-grid::-webkit-scrollbar {
        display: none;
    }

    .staur3x-card {
        min-width: 85vw;
        flex: 0 0 85vw;
        scroll-snap-align: center;
        min-height: auto;   /* Prevent forced tall cards */
        transform: scale(0.95);
        opacity: 0.7;
    }

    .staur3x-card.staur3x-mobile-active {
        transform: scale(1);
        opacity: 1;
    }
}

/* SEO Card Text White */

.staur3x-card--seo .staur3x-title,
.staur3x-card--seo .staur3x-features-text,
.staur3x-card--seo .staur3x-list-item,
.staur3x-card--seo .staur3x-price-label {
    color: #fff;
}

